MediaWiki  1.27.2
ChangeTagsLogItem.php
Go to the documentation of this file.
1 <?php
29  public function getIdField() {
30  return 'log_id';
31  }
32 
33  public function getTimestampField() {
34  return 'log_timestamp';
35  }
36 
37  public function getAuthorIdField() {
38  return 'log_user';
39  }
40 
41  public function getAuthorNameField() {
42  return 'log_user_text';
43  }
44 
45  public function canView() {
46  return LogEventsList::userCan( $this->row, Revision::DELETED_RESTRICTED, $this->list->getUser() );
47  }
48 
49  public function canViewContent() {
50  return true; // none
51  }
52 
56  public function getTags() {
57  return $this->row->ts_tags;
58  }
59 
64  public function getHTML() {
65  $date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
66  $this->row->log_timestamp, $this->list->getUser() ) );
67  $title = Title::makeTitle( $this->row->log_namespace, $this->row->log_title );
68  $formatter = LogFormatter::newFromRow( $this->row );
69  $formatter->setContext( $this->list->getContext() );
70  $formatter->setAudience( LogFormatter::FOR_THIS_USER );
71 
72  // Log link for this page
73  $loglink = Linker::link(
74  SpecialPage::getTitleFor( 'Log' ),
75  $this->list->msg( 'log' )->escaped(),
76  [],
77  [ 'page' => $title->getPrefixedText() ]
78  );
79  $loglink = $this->list->msg( 'parentheses' )->rawParams( $loglink )->escaped();
80  // User links and action text
81  $action = $formatter->getActionText();
82  // Comment
83  $comment = $this->list->getLanguage()->getDirMark() .
84  $formatter->getComment();
85 
87  $comment = '<span class="history-deleted">' . $comment . '</span>';
88  }
89 
90  $content = "$loglink $date $action $comment";
91  $attribs = [];
92  $tags = $this->getTags();
93  if ( $tags ) {
94  list( $tagSummary, $classes ) = ChangeTags::formatSummaryRow(
95  $tags,
96  'edittags',
97  $this->list->getContext()
98  );
99  $content .= " $tagSummary";
100  $attribs['class'] = implode( ' ', $classes );
101  }
102  return Xml::tags( 'li', $attribs, $content );
103  }
104 }
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
static newFromRow($row)
Handy shortcut for constructing a formatter directly from database row.
static userCan($row, $field, User $user=null)
Determine if the current user is allowed to view a particular field of this log row, if it's marked as deleted.
static isDeleted($row, $field)
static getTitleFor($name, $subpage=false, $fragment= '')
Get a localised Title object for a specified special page name.
Definition: SpecialPage.php:75
$comment
const DELETED_COMMENT
Definition: LogPage.php:34
static formatSummaryRow($tags, $page, IContextSource $context=null)
Creates HTML for the given tags.
Definition: ChangeTags.php:45
const DELETED_RESTRICTED
Definition: Revision.php:79
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:912
const FOR_THIS_USER
static link($target, $html=null, $customAttribs=[], $query=[], $options=[])
This function returns an HTML link to the given target.
Definition: Linker.php:195
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
static tags($element, $attribs=null, $contents)
Same as Xml::element(), but does not escape contents.
Definition: Xml.php:131
Item class for a logging table row with its associated change tags.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist 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:1004
Abstract base class for revision items.
!html< table >< tr >< tdstyle="color:red;"></td >< tdstyle="color:blue;"></td ></tr >< tr >< td ></td >< td ></td >< td ></td >< td ></td >< td ></td >< td ></td ></tr >< tr >< td ></td >< td ></td ></tr ></table >!end!test Table rowspan row</td >< tdrowspan="2"> row(and 2)</td >< td > Cell 3
static & makeTitle($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:524
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:1798