MediaWiki  1.29.1
ResourceLoaderSpecialCharacterDataModule.php
Go to the documentation of this file.
1 <?php
29  private $path = "resources/src/mediawiki.language/specialcharacters.json";
30  protected $targets = [ 'desktop', 'mobile' ];
31 
37  protected function getData() {
38  global $IP;
39  return json_decode( file_get_contents( "$IP/{$this->path}" ) );
40  }
41 
47  return Xml::encodeJsCall(
48  'mw.language.setSpecialCharacters',
49  [
50  $this->getData()
51  ],
52  ResourceLoader::inDebugMode()
53  );
54  }
55 
59  public function enableModuleContentVersion() {
60  return true;
61  }
62 
67  public function getDependencies( ResourceLoaderContext $context = null ) {
68  return [ 'mediawiki.language' ];
69  }
70 
74  public function getMessages() {
75  return [
76  'special-characters-group-latin',
77  'special-characters-group-latinextended',
78  'special-characters-group-ipa',
79  'special-characters-group-symbols',
80  'special-characters-group-greek',
81  'special-characters-group-greekextended',
82  'special-characters-group-cyrillic',
83  'special-characters-group-arabic',
84  'special-characters-group-arabicextended',
85  'special-characters-group-persian',
86  'special-characters-group-hebrew',
87  'special-characters-group-bangla',
88  'special-characters-group-tamil',
89  'special-characters-group-telugu',
90  'special-characters-group-sinhala',
91  'special-characters-group-devanagari',
92  'special-characters-group-gujarati',
93  'special-characters-group-thai',
94  'special-characters-group-lao',
95  'special-characters-group-khmer',
96  'special-characters-group-canadianaboriginal',
97  'special-characters-title-endash',
98  'special-characters-title-emdash',
99  'special-characters-title-minus'
100  ];
101  }
102 }
ResourceLoaderContext
Object passed around to modules which contains information about the state of a specific loader reque...
Definition: ResourceLoaderContext.php:32
$context
error also a ContextSource you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
Definition: hooks.txt:2612
ResourceLoaderSpecialCharacterDataModule\getData
getData()
Get all the dynamic data.
Definition: ResourceLoaderSpecialCharacterDataModule.php:37
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
ResourceLoaderSpecialCharacterDataModule\$targets
$targets
Definition: ResourceLoaderSpecialCharacterDataModule.php:30
Xml\encodeJsCall
static encodeJsCall( $name, $args, $pretty=false)
Create a call to a JavaScript function.
Definition: Xml.php:645
ResourceLoaderSpecialCharacterDataModule\getScript
getScript(ResourceLoaderContext $context)
Definition: ResourceLoaderSpecialCharacterDataModule.php:46
ResourceLoaderSpecialCharacterDataModule\$path
$path
Definition: ResourceLoaderSpecialCharacterDataModule.php:29
$IP
$IP
Definition: update.php:3
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
ResourceLoaderSpecialCharacterDataModule\getMessages
getMessages()
Definition: ResourceLoaderSpecialCharacterDataModule.php:74
ResourceLoaderSpecialCharacterDataModule\enableModuleContentVersion
enableModuleContentVersion()
Definition: ResourceLoaderSpecialCharacterDataModule.php:59
ResourceLoaderModule
Abstraction for ResourceLoader modules, with name registration and maxage functionality.
Definition: ResourceLoaderModule.php:34
ResourceLoaderSpecialCharacterDataModule
ResourceLoader module for populating special characters data for some editing extensions to use.
Definition: ResourceLoaderSpecialCharacterDataModule.php:28
ResourceLoaderSpecialCharacterDataModule\getDependencies
getDependencies(ResourceLoaderContext $context=null)
Definition: ResourceLoaderSpecialCharacterDataModule.php:67