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();
222 return $this->row->$field;
231 $this->
list->getUser() );
240 $this->
list->getUser() );
258 return intval( $this->row->$field );
267 return strval( $this->row->$field );
277 return strval( $this->row->$field );
301 return MediaWikiServices::getInstance()->getLinkRenderer();
315 $conds = [
'rev_page' => $this->title->getArticleID() ];
316 if ( $this->ids !==
null ) {
317 $conds[
'rev_id'] = array_map(
'intval', $this->ids );
319 $revQuery = Revision::getQueryInfo( [
'page',
'user' ] );
325 [
'ORDER BY' =>
'rev_id DESC' ],
356 return 'rev_timestamp';
364 return 'rev_user_text';
368 return $this->revision->userCan( Revision::DELETED_RESTRICTED, $this->context->getUser() );
372 return $this->revision->userCan( Revision::DELETED_TEXT, $this->context->getUser() );
376 return $this->revision->isDeleted( Revision::DELETED_TEXT );
387 $date = $this->
list->getLanguage()->userTimeAndDate(
388 $this->revision->getTimestamp(), $this->list->getUser() );
391 return htmlspecialchars( $date );
399 'oldid' => $this->revision->getId(),
414 return $this->context->msg(
'diff' )->escaped();
419 $this->list->msg(
'diff' )->text(),
422 'diff' => $this->revision->getId(),
437 $difflink = $this->context->msg(
'parentheses' )
443 $revlink =
"<span class=\"history-deleted\">$revlink</span>";
445 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)
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.
getAuthorActorField()
Get the DB field name storing actor ids.
getAuthorActor()
Get the author actor ID.
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.
Represents a title within MediaWiki.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
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.