MediaWiki REL1_31
ChangeTagsLogItem.php
Go to the documentation of this file.
1<?php
23
31 public function getIdField() {
32 return 'log_id';
33 }
34
35 public function getTimestampField() {
36 return 'log_timestamp';
37 }
38
39 public function getAuthorIdField() {
40 return 'log_user';
41 }
42
43 public function getAuthorNameField() {
44 return 'log_user_text';
45 }
46
47 public function getAuthorActorField() {
48 return 'log_actor';
49 }
50
51 public function canView() {
52 return LogEventsList::userCan( $this->row, Revision::SUPPRESSED_ALL, $this->list->getUser() );
53 }
54
55 public function canViewContent() {
56 return true; // none
57 }
58
62 public function getTags() {
63 return $this->row->ts_tags;
64 }
65
70 public function getHTML() {
71 $date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
72 $this->row->log_timestamp, $this->list->getUser() ) );
73 $title = Title::makeTitle( $this->row->log_namespace, $this->row->log_title );
74 $formatter = LogFormatter::newFromRow( $this->row );
75 $formatter->setContext( $this->list->getContext() );
76 $formatter->setAudience( LogFormatter::FOR_THIS_USER );
77
78 // Log link for this page
79 $loglink = MediaWikiServices::getInstance()->getLinkRenderer()->makeLink(
80 SpecialPage::getTitleFor( 'Log' ),
81 $this->list->msg( 'log' )->text(),
82 [],
83 [ 'page' => $title->getPrefixedText() ]
84 );
85 $loglink = $this->list->msg( 'parentheses' )->rawParams( $loglink )->escaped();
86 // User links and action text
87 $action = $formatter->getActionText();
88 // Comment
89 $comment = $this->list->getLanguage()->getDirMark() .
90 $formatter->getComment();
91
93 $comment = '<span class="history-deleted">' . $comment . '</span>';
94 }
95
96 $content = "$loglink $date $action $comment";
97 $attribs = [];
98 $tags = $this->getTags();
99 if ( $tags ) {
100 list( $tagSummary, $classes ) = ChangeTags::formatSummaryRow(
101 $tags,
102 'edittags',
103 $this->list->getContext()
104 );
105 $content .= " $tagSummary";
106 $attribs['class'] = implode( ' ', $classes );
107 }
108 return Xml::tags( 'li', $attribs, $content );
109 }
110}
Item class for a logging table row with its associated change tags.
getAuthorNameField()
Get the DB field name storing user names.
getIdField()
Get the DB field name associated with the ID list.
canViewContent()
Returns true if the current user can view the item text/file.
getAuthorIdField()
Get the DB field name storing user ids.
getAuthorActorField()
Get the DB field name storing actor ids.
getTimestampField()
Get the DB field name storing timestamps.
canView()
Returns true if the current user can view the item.
static formatSummaryRow( $tags, $page, IContextSource $context=null)
Creates HTML for the given tags.
static userCan( $row, $field, User $user=null)
Determine if the current user is allowed to view a particular field of this log row,...
static isDeleted( $row, $field)
static newFromRow( $row)
Handy shortcut for constructing a formatter directly from database row.
const FOR_THIS_USER
const DELETED_COMMENT
Definition LogPage.php:33
MediaWikiServices is the service locator for the application scope of MediaWiki.
Abstract base class for revision items.
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
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 & $attribs
Definition hooks.txt:2014