MediaWiki REL1_33
RevDelArchiveItem.php
Go to the documentation of this file.
1<?php
26 protected static function initRevision( $list, $row ) {
28 [ 'page' => $list->title->getArticleID() ] );
29 }
30
31 public function getIdField() {
32 return 'ar_timestamp';
33 }
34
35 public function getTimestampField() {
36 return 'ar_timestamp';
37 }
38
39 public function getAuthorIdField() {
40 return 'ar_user';
41 }
42
43 public function getAuthorNameField() {
44 return 'ar_user_text';
45 }
46
47 public function getAuthorActorField() {
48 return 'ar_actor';
49 }
50
51 public function getId() {
52 # Convert DB timestamp to MW timestamp
53 return $this->revision->getTimestamp();
54 }
55
56 public function setBits( $bits ) {
57 $dbw = wfGetDB( DB_MASTER );
58 $dbw->update( 'archive',
59 [ 'ar_deleted' => $bits ],
60 [
61 'ar_namespace' => $this->list->title->getNamespace(),
62 'ar_title' => $this->list->title->getDBkey(),
63 // use timestamp for index
64 'ar_timestamp' => $this->row->ar_timestamp,
65 'ar_rev_id' => $this->row->ar_rev_id,
66 'ar_deleted' => $this->getBits()
67 ],
68 __METHOD__ );
69
70 return (bool)$dbw->affectedRows();
71 }
72
73 protected function getRevisionLink() {
74 $date = $this->list->getLanguage()->userTimeAndDate(
75 $this->revision->getTimestamp(), $this->list->getUser() );
76
77 if ( $this->isDeleted() && !$this->canViewContent() ) {
78 return htmlspecialchars( $date );
79 }
80
81 return $this->getLinkRenderer()->makeLink(
82 SpecialPage::getTitleFor( 'Undelete' ),
83 $date,
84 [],
85 [
86 'target' => $this->list->title->getPrefixedText(),
87 'timestamp' => $this->revision->getTimestamp()
88 ]
89 );
90 }
91
92 protected function getDiffLink() {
93 if ( $this->isDeleted() && !$this->canViewContent() ) {
94 return $this->list->msg( 'diff' )->escaped();
95 }
96
97 return $this->getLinkRenderer()->makeLink(
98 SpecialPage::getTitleFor( 'Undelete' ),
99 $this->list->msg( 'diff' )->text(),
100 [],
101 [
102 'target' => $this->list->title->getPrefixedText(),
103 'diff' => 'prev',
104 'timestamp' => $this->revision->getTimestamp()
105 ]
106 );
107 }
108}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
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.
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.
static initRevision( $list, $row)
Create revision object from $row sourced from $list.
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.
getLinkRenderer()
Returns an instance of LinkRenderer.
static newFromArchiveRow( $row, $overrides=[])
Make a fake revision object from an archive table row.
Definition Revision.php:171
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:26