MediaWiki  1.33.0
PatrolLogFormatter.php
Go to the documentation of this file.
1 <?php
32  protected function getMessageKey() {
33  $params = $this->getMessageParameters();
34  if ( isset( $params[5] ) && $params[5] ) {
35  $key = 'logentry-patrol-patrol-auto';
36  } else {
37  $key = 'logentry-patrol-patrol';
38  }
39 
40  return $key;
41  }
42 
43  protected function getMessageParameters() {
44  $params = parent::getMessageParameters();
45 
46  $target = $this->entry->getTarget();
47  $oldid = $params[3];
48  $revision = $this->context->getLanguage()->formatNum( $oldid, true );
49 
50  if ( $this->plaintext ) {
51  $revlink = $revision;
52  } elseif ( $target->exists() ) {
53  $query = [
54  'oldid' => $oldid,
55  'diff' => 'prev'
56  ];
57  $revlink = $this->getLinkRenderer()->makeLink( $target, $revision, [], $query );
58  } else {
59  $revlink = htmlspecialchars( $revision );
60  }
61 
62  $params[3] = Message::rawParam( $revlink );
63 
64  return $params;
65  }
66 
67  protected function getParametersForApi() {
70 
71  static $map = [
72  '4:number:curid',
73  '5:number:previd',
74  '6:bool:auto',
75  '4::curid' => '4:number:curid',
76  '5::previd' => '5:number:previd',
77  '6::auto' => '6:bool:auto',
78  ];
79  foreach ( $map as $index => $key ) {
80  if ( isset( $params[$index] ) ) {
81  $params[$key] = $params[$index];
82  unset( $params[$index] );
83  }
84  }
85 
86  return $params;
87  }
88 }
PatrolLogFormatter\getMessageKey
getMessageKey()
Returns a key to be used for formatting the action sentence.
Definition: PatrolLogFormatter.php:32
LogEntry\getParameters
getParameters()
Get the extra parameters stored for this message.
LogFormatter\$entry
LogEntryBase $entry
Definition: LogFormatter.php:77
$params
$params
Definition: styleTest.css.php:44
PatrolLogFormatter
This class formats patrol log entries.
Definition: PatrolLogFormatter.php:31
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
$query
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition: hooks.txt:1588
PatrolLogFormatter\getParametersForApi
getParametersForApi()
Get the array of parameters, converted from legacy format if necessary.
Definition: PatrolLogFormatter.php:67
PatrolLogFormatter\getMessageParameters
getMessageParameters()
Formats parameters intented for action message from array of all parameters.
Definition: PatrolLogFormatter.php:43
LogFormatter
Implements the default log formatting.
Definition: LogFormatter.php:38
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
LogFormatter\getLinkRenderer
getLinkRenderer()
Definition: LogFormatter.php:136