MediaWiki REL1_31
RevDelArchiveItem.php
Go to the documentation of this file.
1<?php
26 public function __construct( $list, $row ) {
28 $this->revision = Revision::newFromArchiveRow( $row,
29 [ 'page' => $this->list->title->getArticleID() ] );
30 }
31
32 public function getIdField() {
33 return 'ar_timestamp';
34 }
35
36 public function getTimestampField() {
37 return 'ar_timestamp';
38 }
39
40 public function getAuthorIdField() {
41 return 'ar_user';
42 }
43
44 public function getAuthorNameField() {
45 return 'ar_user_text';
46 }
47
48 public function getAuthorActorField() {
49 return 'ar_actor';
50 }
51
52 public function getId() {
53 # Convert DB timestamp to MW timestamp
54 return $this->revision->getTimestamp();
55 }
56
57 public function setBits( $bits ) {
58 $dbw = wfGetDB( DB_MASTER );
59 $dbw->update( 'archive',
60 [ 'ar_deleted' => $bits ],
61 [
62 'ar_namespace' => $this->list->title->getNamespace(),
63 'ar_title' => $this->list->title->getDBkey(),
64 // use timestamp for index
65 'ar_timestamp' => $this->row->ar_timestamp,
66 'ar_rev_id' => $this->row->ar_rev_id,
67 'ar_deleted' => $this->getBits()
68 ],
69 __METHOD__ );
70
71 return (bool)$dbw->affectedRows();
72 }
73
74 protected function getRevisionLink() {
75 $date = $this->list->getLanguage()->userTimeAndDate(
76 $this->revision->getTimestamp(), $this->list->getUser() );
77
78 if ( $this->isDeleted() && !$this->canViewContent() ) {
79 return htmlspecialchars( $date );
80 }
81
82 return $this->getLinkRenderer()->makeLink(
83 SpecialPage::getTitleFor( 'Undelete' ),
84 $date,
85 [],
86 [
87 'target' => $this->list->title->getPrefixedText(),
88 'timestamp' => $this->revision->getTimestamp()
89 ]
90 );
91 }
92
93 protected function getDiffLink() {
94 if ( $this->isDeleted() && !$this->canViewContent() ) {
95 return $this->list->msg( 'diff' )->escaped();
96 }
97
98 return $this->getLinkRenderer()->makeLink(
99 SpecialPage::getTitleFor( 'Undelete' ),
100 $this->list->msg( 'diff' )->text(),
101 [],
102 [
103 'target' => $this->list->title->getPrefixedText(),
104 'diff' => 'prev',
105 'timestamp' => $this->revision->getTimestamp()
106 ]
107 );
108 }
109}
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
Definition deferred.txt:11
const DB_MASTER
Definition defines.php:29