11 'ResourceLoaderSources',
12 'ResourceLoaderLESSVars',
18 'GrantPermissionGroups',
21 'GroupsRemoveFromSelf',
28 'AuthManagerAutoConfig',
29 'CentralIdLookupProviders',
30 'ChangeCredentialsBlacklist',
31 'RemoveCredentialsBlacklist',
36 'ExtensionEntryPointListFiles',
65 'wgGroupPermissions' =>
'array_plus_2d',
66 'wgRevokePermissions' =>
'array_plus_2d',
67 'wgGrantPermissions' =>
'array_plus_2d',
68 'wgHooks' =>
'array_merge_recursive',
69 'wgExtensionCredits' =>
'array_merge_recursive',
70 'wgExtraGenderNamespaces' =>
'array_plus',
71 'wgNamespacesWithSubpages' =>
'array_plus',
72 'wgNamespaceContentModels' =>
'array_plus',
73 'wgNamespaceProtection' =>
'array_plus',
74 'wgCapitalLinkOverrides' =>
'array_plus',
75 'wgRateLimits' =>
'array_plus_2d',
76 'wgAuthManagerAutoConfig' =>
'array_plus_2d',
105 'ResourceFileModulePaths',
107 'ResourceModuleSkinStyles',
108 'ExtensionMessagesFiles',
116 'load_composer_autoloader',
127 'wgExtensionMessagesFiles' => [],
128 'wgMessagesDirs' => [],
178 if ( isset( $info[
'callback'] ) ) {
179 $this->callbacks[] = $info[
'callback'];
183 foreach ( $info
as $key => $val ) {
184 if ( in_array( $key, self::$globalSettings ) ) {
187 } elseif ( $key[0] !==
'@' && !in_array( $key, self::$notAttributes )
188 && !in_array( $key, self::$creditsAttributes )
197 foreach ( $this->
globals as $key => $val ) {
198 if ( isset( self::$mergeStrategies[$key] ) ) {
215 if ( isset( $info[
'requires'][$key] ) ) {
216 $requirements[$key] = $info[
'requires'][$key];
219 return $requirements;
223 if ( isset( $info[
'Hooks'] ) ) {
225 if ( is_array(
$value ) ) {
242 if ( isset( $info[
'namespaces'] ) ) {
243 foreach ( $info[
'namespaces']
as $ns ) {
245 $this->defines[$ns[
'constant']] = $id;
246 if ( !( isset( $ns[
'conditional'] ) && $ns[
'conditional'] ) ) {
248 $this->attributes[
'ExtensionNamespaces'][$id] = $ns[
'name'];
250 if ( isset( $ns[
'gender'] ) ) {
251 $this->
globals[
'wgExtraGenderNamespaces'][$id] = $ns[
'gender'];
253 if ( isset( $ns[
'subpages'] ) && $ns[
'subpages'] ) {
254 $this->
globals[
'wgNamespacesWithSubpages'][$id] =
true;
256 if ( isset( $ns[
'content'] ) && $ns[
'content'] ) {
257 $this->
globals[
'wgContentNamespaces'][] = $id;
259 if ( isset( $ns[
'defaultcontentmodel'] ) ) {
260 $this->
globals[
'wgNamespaceContentModels'][$id] = $ns[
'defaultcontentmodel'];
262 if ( isset( $ns[
'protection'] ) ) {
263 $this->
globals[
'wgNamespaceProtection'][$id] = $ns[
'protection'];
265 if ( isset( $ns[
'capitallinkoverride'] ) ) {
266 $this->
globals[
'wgCapitalLinkOverrides'][$id] = $ns[
'capitallinkoverride'];
273 $defaultPaths = isset( $info[
'ResourceFileModulePaths'] )
274 ? $info[
'ResourceFileModulePaths']
276 if ( isset( $defaultPaths[
'localBasePath'] ) ) {
277 if ( $defaultPaths[
'localBasePath'] ===
'' ) {
279 $defaultPaths[
'localBasePath'] =
$dir;
281 $defaultPaths[
'localBasePath'] =
"$dir/{$defaultPaths['localBasePath']}";
285 foreach ( [
'ResourceModules',
'ResourceModuleSkinStyles' ]
as $setting ) {
286 if ( isset( $info[$setting] ) ) {
287 foreach ( $info[$setting]
as $name => $data ) {
288 if ( isset( $data[
'localBasePath'] ) ) {
289 if ( $data[
'localBasePath'] ===
'' ) {
291 $data[
'localBasePath'] =
$dir;
293 $data[
'localBasePath'] =
"$dir/{$data['localBasePath']}";
296 if ( $defaultPaths ) {
297 $data += $defaultPaths;
306 if ( isset( $info[
'ExtensionMessagesFiles'] ) ) {
307 $this->
globals[
"wgExtensionMessagesFiles"] += array_map(
function( $file )
use (
$dir ) {
309 }, $info[
'ExtensionMessagesFiles'] );
321 if ( isset( $info[
'MessagesDirs'] ) ) {
324 $this->
globals[
"wgMessagesDirs"][
$name][] =
"$dir/$file";
338 'type' => isset( $info[
'type'] ) ? $info[
'type'] :
'other',
340 foreach ( self::$creditsAttributes
as $attr ) {
341 if ( isset( $info[$attr] ) ) {
353 throw new Exception(
"It was attempted to load $name twice, from $firstPath and $secondPath." );
367 if ( isset( $info[
'config'] ) ) {
368 if ( isset( $info[
'config'][
'_prefix'] ) ) {
369 $prefix = $info[
'config'][
'_prefix'];
370 unset( $info[
'config'][
'_prefix'] );
374 foreach ( $info[
'config']
as $key => $val ) {
375 if ( $key[0] !==
'@' ) {
376 $this->
globals[
"$prefix$key"] = $val;
390 if ( isset( $info[
'config_prefix'] ) ) {
391 $prefix = $info[
'config_prefix'];
395 if ( isset( $info[
'config'] ) ) {
396 foreach ( $info[
'config']
as $key => $data ) {
398 if ( isset(
$value[
'merge_strategy'] ) ) {
401 if ( isset( $data[
'path'] ) && $data[
'path'] ) {
410 if ( isset( $info[
'ParserTestFiles'] ) ) {
411 foreach ( $info[
'ParserTestFiles']
as $path ) {
412 $this->
globals[
'wgParserTestFiles'][] =
"$dir/$path";
425 if ( !is_array(
$value ) ) {
426 throw new InvalidArgumentException(
"The value for '$name' should be an array (from $path)" );
428 if ( isset( $array[
$name] ) ) {
429 $array[
$name] = array_merge_recursive( $array[$name],
$value );
437 if ( isset( $info[
'load_composer_autoloader'] ) && $info[
'load_composer_autoloader'] ===
true ) {
438 $path =
"$dir/vendor/autoload.php";
439 if ( file_exists(
$path ) ) {
array $globals
Stuff that is going to be set to $GLOBALS.
static array $mergeStrategies
Mapping of global settings to their specific merge strategies.
extractResourceLoaderModules($dir, array $info)
the array() calling protocol came about after MediaWiki 1.4rc1.
extractParserTestFiles($dir, array $info)
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
extractCredits($path, array $info)
const MERGE_STRATEGY
Special key that defines the merge strategy.
static array $notAttributes
Things that are not 'attributes', but are not in $globalSettings or $creditsAttributes.
storeToArray($path, $name, $value, &$array)
callable[] $callbacks
Things to be called once registration of these extensions are done.
extractInfo($path, array $info, $version)
extractHooks(array $info)
const MEDIAWIKI_CORE
"requires" key that applies to MediaWiki core/$wgVersion
static array $globalSettings
Keys that should be set to $GLOBALS.
getExtraAutoloaderPaths($dir, array $info)
Get the path for additional autoloaders, e.g.
array $attributes
Any thing else in the $info that hasn't already been processed.
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
getRequirements(array $info)
Get the requirements for the provided info.
extractExtensionMessagesFiles($dir, array $info)
static array static array $creditsAttributes
Keys that are part of the extension credits.
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
array array $defines
Things that should be define()'d.
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration which are documented in DefaultSettings php There is no comprehensive documentation for the remaining globals
extractConfig1(array $info)
Set configuration settings for manifest_version == 1.
Processors read associated arrays and register whatever is required.
extractConfig2(array $info, $dir)
Set configuration settings for manifest_version == 2.
extractMessagesDirs($dir, array $info)
Set message-related settings, which need to be expanded to use absolute paths.
extractNamespaces(array $info)
Register namespaces with the appropriate global settings.
Allows to change the fields on the form that will be generated $name