74 $row = $this->res->current();
119 return $this->res ? $this->res->key() : 0;
123 return $this->res ? $this->res->valid() :
false;
134 return $this->res->numRows();
212 return $this->row->$field;
220 return $this->list->getLanguage()->userDate( $this->
getTimestamp(),
221 $this->list->getUser() );
229 return $this->list->getLanguage()->userTime( $this->
getTimestamp(),
230 $this->list->getUser() );
248 return intval( $this->row->$field );
257 return strval( $this->row->$field );
281 return MediaWikiServices::getInstance()->getLinkRenderer();
295 $conds = [
'rev_page' => $this->title->getArticleID() ];
296 if ( $this->ids !==
null ) {
297 $conds[
'rev_id'] = array_map(
'intval', $this->ids );
300 [
'revision',
'page',
'user' ],
304 [
'ORDER BY' =>
'rev_id DESC' ],
337 return 'rev_timestamp';
345 return 'rev_user_text';
368 $date = $this->list->getLanguage()->userTimeAndDate(
369 $this->revision->getTimestamp(), $this->list->getUser() );
372 return htmlspecialchars( $date );
380 'oldid' => $this->revision->getId(),
395 return $this->context->msg(
'diff' )->escaped();
400 $this->list->msg(
'diff' )->text(),
403 'diff' => $this->revision->getId(),
418 $difflink = $this->context->msg(
'parentheses' )
424 $revlink =
"<span class=\"history-deleted\">$revlink</span>";
426 return "<li>$difflink $revlink $userlink $comment</li>";
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
The simplest way of implementing IContextSource is to hold a RequestContext as a member variable and ...
getContext()
Get the base IContextSource object.
setContext(IContextSource $context)
Set the IContextSource object.
static revComment(Revision $rev, $local=false, $isPublic=false)
Wrap and format the given revision's comment block, if the current user is allowed to view it.
static revUserLink( $rev, $isPublic=false)
Generate a user link if the current user is allowed to view it.
Group all the pieces relevant to the context of a request into one instance.
Abstract base class for revision items.
$row
The database result row.
formatTime()
Get the time, formatted in user's language.
getAuthorIdField()
Get the DB field name storing user ids.
getTimestampField()
Get the DB field name storing timestamps.
canViewContent()
Returns true if the current user can view the item text/file.
getAuthorNameField()
Get the DB field name storing user names.
getHTML()
Get the HTML of the list item.
canView()
Returns true if the current user can view the item.
getAuthorId()
Get the author user ID.
getIdField()
Get the DB field name associated with the ID list.
getAuthorName()
Get the author user name.
getTimestamp()
Get the timestamp in MW 14-char form.
RevisionListBase $list
The parent.
formatDate()
Get the date, formatted in user's language.
getId()
Get the ID, as it would appear in the ids URL parameter.
__construct( $list, $row)
getLinkRenderer()
Returns an instance of LinkRenderer.
Item class for a live revision table row.
canViewContent()
Returns true if the current user can view the item text/file.
getAuthorIdField()
Get the DB field name storing user ids.
getRevisionLink()
Get the HTML link to the revision text.
__construct( $list, $row)
getDiffLink()
Get the HTML link to the diff.
getTimestampField()
Get the DB field name storing timestamps.
getIdField()
Get the DB field name associated with the ID list.
canView()
Returns true if the current user can view the item.
getAuthorNameField()
Get the DB field name storing user names.
List for revision table items for a single page.
__construct(IContextSource $context, Title $title)
Construct a revision list for a given title.
getType()
Get the internal type name of this list.
newItem( $row)
Create an item object from a DB result row.
current()
Get the current list item, or false if we are at the end.
filterByIds(array $ids)
Select items only where the ID is any of the specified values.
length()
Get the number of items in the list.
doQuery( $db)
Do the DB query to iterate through the objects.
initCurrent()
Initialise the current iteration pointer.
next()
Move the iteration pointer to the next list item, and return it.
newItem( $row)
Create an item object from a DB result row.
getType()
Get the internal type name of this list.
static userJoinCond()
Return the value of a select() JOIN conds array for the user table.
static selectFields()
Return the list of revision fields that should be selected to create a new revision.
static selectUserFields()
Return the list of user fields that should be selected from user table.
static pageJoinCond()
Return the value of a select() page conds array for the page table.
Represents a title within MediaWiki.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing after in associative array form before processing starts Return false to skip default processing and return $ret $linkRenderer
Interface for objects which can provide a MediaWiki context on request.