MediaWiki  1.29.2
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 canView() {
48  return LogEventsList::userCan( $this->row, Revision::DELETED_RESTRICTED, $this->list->getUser() );
49  }
50 
51  public function canViewContent() {
52  return true; // none
53  }
54 
58  public function getTags() {
59  return $this->row->ts_tags;
60  }
61 
66  public function getHTML() {
67  $date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
68  $this->row->log_timestamp, $this->list->getUser() ) );
69  $title = Title::makeTitle( $this->row->log_namespace, $this->row->log_title );
70  $formatter = LogFormatter::newFromRow( $this->row );
71  $formatter->setContext( $this->list->getContext() );
72  $formatter->setAudience( LogFormatter::FOR_THIS_USER );
73 
74  // Log link for this page
75  $loglink = MediaWikiServices::getInstance()->getLinkRenderer()->makeLink(
76  SpecialPage::getTitleFor( 'Log' ),
77  $this->list->msg( 'log' )->text(),
78  [],
79  [ 'page' => $title->getPrefixedText() ]
80  );
81  $loglink = $this->list->msg( 'parentheses' )->rawParams( $loglink )->escaped();
82  // User links and action text
83  $action = $formatter->getActionText();
84  // Comment
85  $comment = $this->list->getLanguage()->getDirMark() .
86  $formatter->getComment();
87 
89  $comment = '<span class="history-deleted">' . $comment . '</span>';
90  }
91 
92  $content = "$loglink $date $action $comment";
93  $attribs = [];
94  $tags = $this->getTags();
95  if ( $tags ) {
96  list( $tagSummary, $classes ) = ChangeTags::formatSummaryRow(
97  $tags,
98  'edittags',
99  $this->list->getContext()
100  );
101  $content .= " $tagSummary";
102  $attribs['class'] = implode( ' ', $classes );
103  }
104  return Xml::tags( 'li', $attribs, $content );
105  }
106 }
Revision\DELETED_RESTRICTED
const DELETED_RESTRICTED
Definition: Revision.php:93
LogFormatter\FOR_THIS_USER
const FOR_THIS_USER
Definition: LogFormatter.php:39
Xml\tags
static tags( $element, $attribs=null, $contents)
Same as Xml::element(), but does not escape contents.
Definition: Xml.php:131
RevisionItemBase
Abstract base class for revision items.
Definition: RevisionList.php:154
ChangeTagsLogItem\canViewContent
canViewContent()
Returns true if the current user can view the item text/file.
Definition: ChangeTagsLogItem.php:51
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
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
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
LogPage\DELETED_COMMENT
const DELETED_COMMENT
Definition: LogPage.php:33
LogFormatter\newFromRow
static newFromRow( $row)
Handy shortcut for constructing a formatter directly from database row.
Definition: LogFormatter.php:74
ChangeTagsLogItem\getIdField
getIdField()
Get the DB field name associated with the ID list.
Definition: ChangeTagsLogItem.php:31
$content
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content $content
Definition: hooks.txt:1049
$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:1956
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:514
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
ChangeTagsLogItem\getAuthorIdField
getAuthorIdField()
Get the DB field name storing user ids.
Definition: ChangeTagsLogItem.php:39
ChangeTagsLogItem\getHTML
getHTML()
Definition: ChangeTagsLogItem.php:66
ChangeTagsLogItem\canView
canView()
Returns true if the current user can view the item.
Definition: ChangeTagsLogItem.php:47
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:499
LogEventsList\isDeleted
static isDeleted( $row, $field)
Definition: LogEventsList.php:535
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:58
ChangeTags\formatSummaryRow
static formatSummaryRow( $tags, $page, IContextSource $context=null)
Creates HTML for the given tags.
Definition: ChangeTags.php:52