MediaWiki  1.28.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  ],
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-title-endash',
97  'special-characters-title-emdash',
98  'special-characters-title-minus'
99  ];
100  }
101 }
$context
Definition: load.php:50
Abstraction for ResourceLoader modules, with name registration and maxage functionality.
$IP
Definition: WebStart.php:58
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
ResourceLoader module for populating special characters data for some editing extensions to use...
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 inDebugMode()
Determine whether debug mode was requested Order of priority is 1) request param, 2) cookie...
static encodeJsCall($name, $args, $pretty=false)
Create a call to a JavaScript function.
Definition: Xml.php:682
Object passed around to modules which contains information about the state of a specific loader reque...