MediaWiki  1.29.1
PageLangLogFormatter.php
Go to the documentation of this file.
1 <?php
32  protected function getMessageParameters() {
33  // Get the user language for displaying language names
34  $userLang = $this->context->getLanguage()->getCode();
35  $params = parent::getMessageParameters();
36 
37  // Get the language codes from log
38  $oldLang = $params[3];
39  $kOld = strrpos( $oldLang, '[' );
40  if ( $kOld ) {
41  $oldLang = substr( $oldLang, 0, $kOld );
42  }
43 
44  $newLang = $params[4];
45  $kNew = strrpos( $newLang, '[' );
46  if ( $kNew ) {
47  $newLang = substr( $newLang, 0, $kNew );
48  }
49 
50  // Convert language codes to names in user language
51  $logOld = Language::fetchLanguageName( $oldLang, $userLang )
52  . ' (' . $oldLang . ')';
53  $logNew = Language::fetchLanguageName( $newLang, $userLang )
54  . ' (' . $newLang . ')';
55 
56  // Add the default message to languages if required
57  $params[3] = !$kOld ? $logOld : $logOld . ' [' . $this->msg( 'default' ) . ']';
58  $params[4] = !$kNew ? $logNew : $logNew . ' [' . $this->msg( 'default' ) . ']';
59  return $params;
60  }
61 }
PageLangLogFormatter
This class formats language change log entries.
Definition: PageLangLogFormatter.php:31
$params
$params
Definition: styleTest.css.php:40
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
LogFormatter\msg
msg( $key)
Shortcut for wfMessage which honors local context.
Definition: LogFormatter.php:706
PageLangLogFormatter\getMessageParameters
getMessageParameters()
Formats parameters intented for action message from array of all parameters.
Definition: PageLangLogFormatter.php:32
Language\fetchLanguageName
static fetchLanguageName( $code, $inLanguage=null, $include='all')
Definition: Language.php:891
LogFormatter
Implements the default log formatting.
Definition: LogFormatter.php:36