28 $this->revision = Revision::newFromArchiveRow(
$row,
29 [
'page' => $this->
list->title->getArticleID() ] );
33 return 'ar_timestamp';
37 return 'ar_timestamp';
45 return 'ar_user_text';
53 # Convert DB timestamp to MW timestamp
54 return $this->revision->getTimestamp();
59 $dbw->update(
'archive',
60 [
'ar_deleted' => $bits ],
62 'ar_namespace' => $this->
list->title->getNamespace(),
63 'ar_title' => $this->list->title->getDBkey(),
65 'ar_timestamp' => $this->row->ar_timestamp,
66 'ar_rev_id' => $this->row->ar_rev_id,
67 'ar_deleted' => $this->getBits()
71 return (
bool)$dbw->affectedRows();
75 $date = $this->
list->getLanguage()->userTimeAndDate(
76 $this->revision->getTimestamp(), $this->list->getUser() );
79 return htmlspecialchars( $date );
83 SpecialPage::getTitleFor(
'Undelete' ),
87 'target' => $this->
list->title->getPrefixedText(),
88 'timestamp' => $this->revision->getTimestamp()
95 return $this->
list->msg(
'diff' )->escaped();
99 SpecialPage::getTitleFor(
'Undelete' ),
100 $this->
list->msg(
'diff' )->text(),
103 'target' => $this->list->title->getPrefixedText(),
105 'timestamp' => $this->revision->getTimestamp()
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Item class for a archive table row.
getAuthorNameField()
Get the DB field name storing user names.
__construct( $list, $row)
getRevisionLink()
Get the HTML link to the revision text.
getId()
Get the ID, as it would appear in the ids URL parameter.
getIdField()
Get the DB field name associated with the ID list.
getDiffLink()
Get the HTML link to the diff.
setBits( $bits)
Set the visibility of the item.
getAuthorIdField()
Get the DB field name storing user ids.
getTimestampField()
Get the DB field name storing timestamps.
getAuthorActorField()
Get the DB field name storing actor ids.
Item class for a live revision table row.
canViewContent()
Returns true if the current user can view the item text/file.
$row
The database result row.
RevisionListBase $list
The parent.
__construct( $list, $row)
getLinkRenderer()
Returns an instance of LinkRenderer.
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