MediaWiki  1.29.1
LocalisationUpdate.class.php
Go to the documentation of this file.
1 <?php
2 
10  public static function onRecacheFallback( LocalisationCache $lc, $code, array &$cache ) {
12  if ( !$dir ) {
13  return true;
14  }
15 
16  $fileName = "$dir/" . self::getFilename( $code );
17  if ( is_readable( $fileName ) ) {
18  $data = FormatJson::decode( file_get_contents( $fileName ), true );
19  $cache['messages'] = array_merge( $cache['messages'], $data );
20  }
21 
22  return true;
23  }
24 
28  public static function onRecache( LocalisationCache $lc, $code, array &$cache ) {
30  if ( !$dir ) {
31  return true;
32  }
33 
34  $codeSequence = array_merge( [ $code ], $cache['fallbackSequence'] );
35  foreach ( $codeSequence as $csCode ) {
36  $fileName = "$dir/" . self::getFilename( $csCode );
37  $cache['deps'][] = new FileDependency( $fileName );
38  }
39 
40  return true;
41  }
42 
49  public static function getDirectory() {
50  global $wgLocalisationUpdateDirectory, $wgCacheDirectory;
51 
52  return $wgLocalisationUpdateDirectory ?: $wgCacheDirectory;
53  }
54 
62  public static function getFilename( $language ) {
63  return "l10nupdate-$language.json";
64  }
65 }
FileDependency
Definition: CacheDependency.php:153
LocalisationUpdate::onRecache
static onRecache(LocalisationCache $lc, $code, array &$cache)
Hook: LocalisationCacheRecache.
Definition: LocalisationUpdate.class.php:28
LocalisationUpdate::onRecacheFallback
static onRecacheFallback(LocalisationCache $lc, $code, array &$cache)
Hook: LocalisationCacheRecacheFallback.
Definition: LocalisationUpdate.class.php:10
$wgCacheDirectory
$wgCacheDirectory
Directory for caching data in the local filesystem.
Definition: DefaultSettings.php:2205
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
FormatJson\decode
static decode( $value, $assoc=false)
Decodes a JSON string.
Definition: FormatJson.php:187
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
LocalisationUpdate::getFilename
static getFilename( $language)
Returns a filename where updated translations are stored.
Definition: LocalisationUpdate.class.php:62
$dir
$dir
Definition: Autoload.php:8
LocalisationUpdate
Definition: Fetcher.php:8
LocalisationCache
Class for caching the contents of localisation files, Messages*.php and *.i18n.php.
Definition: LocalisationCache.php:41
LocalisationUpdate::getDirectory
static getDirectory()
Returns a directory where updated translations are stored.
Definition: LocalisationUpdate.class.php:49
$cache
$cache
Definition: mcc.php:33
$code
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition: hooks.txt:783
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
array
the array() calling protocol came about after MediaWiki 1.4rc1.