MediaWiki  1.29.2
ResourceLoaderJqueryMsgModule.php
Go to the documentation of this file.
1 <?php
28 
34  $fileScript = parent::getScript( $context );
35 
36  $tagData = Sanitizer::getRecognizedTagData();
37  $parserDefaults = [];
38  $parserDefaults['allowedHtmlElements'] = array_merge(
39  array_keys( $tagData['htmlpairs'] ),
40  array_diff(
41  array_keys( $tagData['htmlsingle'] ),
42  array_keys( $tagData['htmlsingleonly'] )
43  )
44  );
45 
46  $mainDataScript = Xml::encodeJsCall( 'mw.jqueryMsg.setParserDefaults', [ $parserDefaults ] );
47 
48  // Associative array mapping magic words (e.g. SITENAME)
49  // to their values.
50  $magicWords = [
51  'SITENAME' => $this->getConfig()->get( 'Sitename' ),
52  ];
53 
54  Hooks::run( 'ResourceLoaderJqueryMsgModuleMagicWords', [ $context, &$magicWords ] );
55 
56  $magicWordExtendData = [
57  'magic' => $magicWords,
58  ];
59 
60  $magicWordDataScript = Xml::encodeJsCall( 'mw.jqueryMsg.setParserDefaults', [
61  $magicWordExtendData,
62  /* deep= */ true
63  ] );
64 
65  return $fileScript . $mainDataScript . $magicWordDataScript;
66  }
67 
73  // Bypass file module urls
75  }
76 
80  public function enableModuleContentVersion() {
81  return true;
82  }
83 }
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
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
ResourceLoaderFileModule
ResourceLoader module based on local JavaScript/CSS files.
Definition: ResourceLoaderFileModule.php:28
Xml\encodeJsCall
static encodeJsCall( $name, $args, $pretty=false)
Create a call to a JavaScript function.
Definition: Xml.php:645
$magicWords
magicword txt Magic Words are some phrases used in the wikitext They are used for two that looks like templates but that don t accept any parameter *Parser functions(like {{fullurl:...}}, {{#special:...}}) $magicWords['en']
Definition: magicword.txt:33
ResourceLoaderJqueryMsgModule
ResourceLoader module for mediawiki.jqueryMsg and its generated data.
Definition: ResourceLoaderJqueryMsgModule.php:27
ResourceLoaderJqueryMsgModule\enableModuleContentVersion
enableModuleContentVersion()
Definition: ResourceLoaderJqueryMsgModule.php:80
ResourceLoaderModule\getScriptURLsForDebug
getScriptURLsForDebug(ResourceLoaderContext $context)
Get the URL or URLs to load for this module's JS in debug mode.
Definition: ResourceLoaderModule.php:239
ResourceLoaderJqueryMsgModule\getScriptURLsForDebug
getScriptURLsForDebug(ResourceLoaderContext $context)
Definition: ResourceLoaderJqueryMsgModule.php:72
ResourceLoaderJqueryMsgModule\getScript
getScript(ResourceLoaderContext $context)
Definition: ResourceLoaderJqueryMsgModule.php:33
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:131
ResourceLoaderModule\getConfig
getConfig()
Definition: ResourceLoaderModule.php:188