MediaWiki  1.33.0
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 
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 }
LogFormatter\FOR_THIS_USER
const FOR_THIS_USER
Definition: LogFormatter.php:41
Revision\SUPPRESSED_ALL
const SUPPRESSED_ALL
Definition: Revision.php:51
RevisionItemBase
Abstract base class for revision items.
Definition: RevisionItemBase.php:28
ChangeTagsLogItem\canViewContent
canViewContent()
Returns true if the current user can view the item text/file.
Definition: ChangeTagsLogItem.php:55
ChangeTagsLogItem
Item class for a logging table row with its associated change tags.
Definition: ChangeTagsLogItem.php:30
SpecialPage\getTitleFor
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
Definition: SpecialPage.php:82
ChangeTagsLogItem\getTimestampField
getTimestampField()
Get the DB field name storing timestamps.
Definition: ChangeTagsLogItem.php:35
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
ChangeTagsLogItem\getAuthorActorField
getAuthorActorField()
Get the DB field name storing actor ids.
Definition: ChangeTagsLogItem.php:47
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:925
LogPage\DELETED_COMMENT
const DELETED_COMMENT
Definition: LogPage.php:35
LogFormatter\newFromRow
static newFromRow( $row)
Handy shortcut for constructing a formatter directly from database row.
Definition: LogFormatter.php:70
ChangeTagsLogItem\getIdField
getIdField()
Get the DB field name associated with the ID list.
Definition: ChangeTagsLogItem.php:31
$attribs
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:1985
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:576
list
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
Xml\tags
static tags( $element, $attribs, $contents)
Same as Xml::element(), but does not escape contents.
Definition: Xml.php:130
ChangeTagsLogItem\getAuthorIdField
getAuthorIdField()
Get the DB field name storing user ids.
Definition: ChangeTagsLogItem.php:39
ChangeTagsLogItem\getHTML
getHTML()
Definition: ChangeTagsLogItem.php:70
ChangeTagsLogItem\canView
canView()
Returns true if the current user can view the item.
Definition: ChangeTagsLogItem.php:51
ChangeTagsLogItem\getAuthorNameField
getAuthorNameField()
Get the DB field name storing user names.
Definition: ChangeTagsLogItem.php:43
LogEventsList\userCan
static userCan( $row, $field, User $user=null)
Determine if the current user is allowed to view a particular field of this log row,...
Definition: LogEventsList.php:541
LogEventsList\isDeleted
static isDeleted( $row, $field)
Definition: LogEventsList.php:598
$content
$content
Definition: pageupdater.txt:72
MediaWikiServices
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
Definition: injection.txt:23
ChangeTagsLogItem\getTags
getTags()
Definition: ChangeTagsLogItem.php:62
ChangeTags\formatSummaryRow
static formatSummaryRow( $tags, $page, IContextSource $context=null)
Creates HTML for the given tags.
Definition: ChangeTags.php:93