MediaWiki  1.33.0
CiteDataModule.php
Go to the documentation of this file.
1 <?php
2 
12 
13  protected $targets = [ 'desktop', 'mobile' ];
14 
17  $citationDefinition = json_decode(
18  $context->msg( 'cite-tool-definition.json' )
19  ->inContentLanguage()
20  ->plain()
21  );
22 
23  if ( $citationDefinition === null ) {
24  $citationDefinition = json_decode(
25  $context->msg( 'visualeditor-cite-tool-definition.json' )
26  ->inContentLanguage()
27  ->plain()
28  );
29  }
30 
31  $citationTools = [];
32  if ( is_array( $citationDefinition ) ) {
33  foreach ( $citationDefinition as $tool ) {
34  if ( !isset( $tool->title ) ) {
35  $tool->title = $context->msg( 'visualeditor-cite-tool-name-' . $tool->name )
36  ->text();
37  }
38  $citationTools[] = $tool;
39  }
40  }
41 
42  return 've.init.platform.addMessages(' . FormatJson::encode(
43  [
44  'cite-tool-definition.json' => json_encode( $citationTools )
45  ],
46  ResourceLoader::inDebugMode()
47  ) . ');';
48  }
49 
51  public function getDependencies( ResourceLoaderContext $context = null ) {
52  return [
53  'ext.visualEditor.base',
54  'ext.visualEditor.mediawiki',
55  ];
56  }
57 
60  $summary = parent::getDefinitionSummary( $context );
61  $summary[] = [
62  'script' => $this->getScript( $context ),
63  ];
64  return $summary;
65  }
66 
67 }
ResourceLoaderContext
Object passed around to modules which contains information about the state of a specific loader reque...
Definition: ResourceLoaderContext.php:32
$context
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
Definition: hooks.txt:2636
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
CiteDataModule
Resource loader module providing extra data from the server to Cite.
Definition: CiteDataModule.php:11
FormatJson\encode
static encode( $value, $pretty=false, $escaping=0)
Returns the JSON representation of a value.
Definition: FormatJson.php:115
CiteDataModule\$targets
$targets
Definition: CiteDataModule.php:13
CiteDataModule\getDependencies
getDependencies(ResourceLoaderContext $context=null)
@inheritDoc
Definition: CiteDataModule.php:51
ResourceLoaderModule
Abstraction for ResourceLoader modules, with name registration and maxage functionality.
Definition: ResourceLoaderModule.php:35
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
CiteDataModule\getScript
getScript(ResourceLoaderContext $context)
@inheritDoc
Definition: CiteDataModule.php:16
CiteDataModule\getDefinitionSummary
getDefinitionSummary(ResourceLoaderContext $context)
@inheritDoc
Definition: CiteDataModule.php:59