MediaWiki REL1_34
RevisionItem.php
Go to the documentation of this file.
1<?php
24
30 protected $revision;
31
33 protected $context;
34
35 public function __construct( $list, $row ) {
36 parent::__construct( $list, $row );
37 $this->revision = new Revision( $row );
38 $this->context = $list->getContext();
39 }
40
41 public function getIdField() {
42 return 'rev_id';
43 }
44
45 public function getTimestampField() {
46 return 'rev_timestamp';
47 }
48
49 public function getAuthorIdField() {
50 return 'rev_user';
51 }
52
53 public function getAuthorNameField() {
54 return 'rev_user_text';
55 }
56
57 public function canView() {
58 return $this->revision->userCan(
59 RevisionRecord::DELETED_RESTRICTED, $this->context->getUser()
60 );
61 }
62
63 public function canViewContent() {
64 return $this->revision->userCan(
65 RevisionRecord::DELETED_TEXT, $this->context->getUser()
66 );
67 }
68
69 public function isDeleted() {
70 return $this->revision->isDeleted( RevisionRecord::DELETED_TEXT );
71 }
72
80 protected function getRevisionLink() {
81 $date = $this->list->getLanguage()->userTimeAndDate(
82 $this->revision->getTimestamp(), $this->list->getUser() );
83
84 if ( $this->isDeleted() && !$this->canViewContent() ) {
85 return htmlspecialchars( $date );
86 }
87 $linkRenderer = $this->getLinkRenderer();
88 return $linkRenderer->makeKnownLink(
89 $this->list->title,
90 $date,
91 [],
92 [
93 'oldid' => $this->revision->getId(),
94 'unhide' => 1
95 ]
96 );
97 }
98
106 protected function getDiffLink() {
107 if ( $this->isDeleted() && !$this->canViewContent() ) {
108 return $this->context->msg( 'diff' )->escaped();
109 } else {
110 $linkRenderer = $this->getLinkRenderer();
111 return $linkRenderer->makeKnownLink(
112 $this->list->title,
113 $this->list->msg( 'diff' )->text(),
114 [],
115 [
116 'diff' => $this->revision->getId(),
117 'oldid' => 'prev',
118 'unhide' => 1
119 ]
120 );
121 }
122 }
123
130 public function getHTML() {
131 $difflink = $this->context->msg( 'parentheses' )
132 ->rawParams( $this->getDiffLink() )->escaped();
133 $revlink = $this->getRevisionLink();
134 $userlink = Linker::revUserLink( $this->revision );
135 $comment = Linker::revComment( $this->revision );
136 if ( $this->isDeleted() ) {
137 $revlink = "<span class=\"history-deleted\">$revlink</span>";
138 }
139 return "<li>$difflink $revlink $userlink $comment</li>";
140 }
141}
getContext()
Get the base IContextSource object.
static revComment(Revision $rev, $local=false, $isPublic=false, $useParentheses=true)
Wrap and format the given revision's comment block, if the current user is allowed to view it.
Definition Linker.php:1577
static revUserLink( $rev, $isPublic=false)
Generate a user link if the current user is allowed to view it.
Definition Linker.php:1101
Page revision base class.
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.
RevisionListBase $list
The parent.
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.
Revision $revision
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.
RequestContext $context
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.