Go to the documentation of this file.
37 if ( isset( $this->configVars[$hash] ) ) {
38 return $this->configVars[$hash];
60 $caseSensitiveNamespaces = [];
64 $caseSensitiveNamespaces[] = $index;
68 $illegalFileChars = $conf->get(
'IllegalFileChars' );
72 'wgLoadScript' =>
wfScript(
'load' ),
75 'stylepath' => $conf->get(
'StylePath' ),
77 'wgArticlePath' => $conf->get(
'ArticlePath' ),
78 'wgScriptPath' => $conf->get(
'ScriptPath' ),
79 'wgScriptExtension' =>
'.php',
81 'wgSearchType' => $conf->get(
'SearchType' ),
82 'wgVariantArticlePath' => $conf->get(
'VariantArticlePath' ),
85 'wgActionPaths' => (
object)$conf->get(
'ActionPaths' ),
86 'wgServer' => $conf->get(
'Server' ),
87 'wgServerName' => $conf->get(
'ServerName' ),
88 'wgUserLanguage' =>
$context->getLanguage(),
90 'wgTranslateNumerals' => $conf->get(
'TranslateNumerals' ),
91 'wgVersion' => $conf->get(
'Version' ),
92 'wgEnableAPI' => $conf->get(
'EnableAPI' ),
93 'wgEnableWriteAPI' => $conf->get(
'EnableWriteAPI' ),
94 'wgMainPageTitle' => $mainPage->getPrefixedText(),
95 'wgFormattedNamespaces' =>
$wgContLang->getFormattedNamespaces(),
96 'wgNamespaceIds' => $namespaceIds,
98 'wgSiteName' => $conf->get(
'Sitename' ),
99 'wgDBname' => $conf->get(
'DBname' ),
100 'wgExtraSignatureNamespaces' => $conf->get(
'ExtraSignatureNamespaces' ),
102 'wgExtensionAssetsPath' => $conf->get(
'ExtensionAssetsPath' ),
104 'wgCookiePrefix' => $conf->get(
'CookiePrefix' ),
105 'wgCookieDomain' => $conf->get(
'CookieDomain' ),
106 'wgCookiePath' => $conf->get(
'CookiePath' ),
107 'wgCookieExpiration' => $conf->get(
'CookieExpiration' ),
108 'wgResourceLoaderMaxQueryLength' => $conf->get(
'ResourceLoaderMaxQueryLength' ),
109 'wgCaseSensitiveNamespaces' => $caseSensitiveNamespaces,
112 'wgResourceLoaderStorageVersion' => $conf->get(
'ResourceLoaderStorageVersion' ),
113 'wgResourceLoaderStorageEnabled' => $conf->get(
'ResourceLoaderStorageEnabled' ),
114 'wgForeignUploadTargets' => $conf->get(
'ForeignUploadTargets' ),
115 'wgEnableUploads' => $conf->get(
'EnableUploads' ),
120 $this->configVars[$hash] =
$vars;
121 return $this->configVars[$hash];
132 static $dependencyCache = [];
136 if ( !isset( $dependencyCache[$moduleName] ) ) {
137 if ( !isset( $registryData[$moduleName] ) ) {
139 $dependencyCache[$moduleName] = [];
141 $data = $registryData[$moduleName];
142 $dependencyCache[$moduleName] = $data[
'dependencies'];
144 foreach ( $data[
'dependencies']
as $dependency ) {
146 $dependencyCache[$moduleName] = array_merge(
147 $dependencyCache[$moduleName],
148 self::getImplicitDependencies( $registryData, $dependency )
154 return $dependencyCache[$moduleName];
176 foreach ( $registryData
as $name => &$data ) {
177 $dependencies = $data[
'dependencies'];
178 foreach ( $data[
'dependencies']
as $dependency ) {
180 $dependencies = array_diff( $dependencies, $implicitDependencies );
183 $data[
'dependencies'] = array_values( $dependencies );
195 $target =
$context->getRequest()->getVal(
'target',
'desktop' );
198 $byPassTargetFilter = $this->
getConfig()->get(
'EnableJavaScriptTest' ) && $target ===
'test';
207 $moduleTargets = $module->getTargets();
208 if ( !$byPassTargetFilter && !in_array( $target, $moduleTargets ) ) {
212 if ( $module->isRaw() ) {
221 }
catch ( Exception
$e ) {
225 'Calculating version for "{module}" failed: {exception}',
232 $states[
$name] =
'error';
237 "Module '{module}' produced an invalid version hash: '{version}'.",
248 $skipFunction = $module->getSkipFunction();
249 if ( $skipFunction !==
null && !ResourceLoader::inDebugMode() ) {
250 $skipFunction = ResourceLoader::filter(
'minify-js', $skipFunction );
253 $registryData[
$name] = [
255 'dependencies' => $module->getDependencies(
$context ),
256 'group' => $module->getGroup(),
257 'source' => $module->getSource(),
258 'skip' => $skipFunction,
269 foreach ( $registryData
as $name => $data ) {
274 $data[
'dependencies'],
277 $data[
'source'] ===
'local' ? null : $data[
'source'],
283 $out .=
"\n" . ResourceLoader::makeLoaderRegisterScript( $registrations );
286 $out .=
"\n" . ResourceLoader::makeLoaderStateScript( $states );
306 $url => [
'as' =>
'script' ]
316 return [
'jquery',
'mediawiki' ];
324 $legacyModules[] =
'mediawiki.legacy.wikibits';
327 return $legacyModules;
340 $rl =
$context->getResourceLoader();
342 $derivative->setModules( array_merge(
343 self::getStartupModules(),
344 self::getLegacyModules()
346 $derivative->setOnly(
'scripts' );
348 $derivative->setVersion( $rl->makeVersionQuery( $derivative ) );
350 return $rl->createLoaderURL(
'local', $derivative );
359 if (
$context->getOnly() !==
'scripts' ) {
360 return '/* Requires only=script */';
363 $out = file_get_contents(
"$IP/resources/src/startup.js" );
365 $pairs = array_map(
function (
$value ) {
371 '$VARS.wgLegacyJavaScriptGlobals' => $this->
getConfig()->get(
'LegacyJavaScriptGlobals' ),
376 $pairs[
'$CODE.registrations()'] = str_replace(
382 return strtr(
$out, $pairs );
400 $summary = parent::getDefinitionSummary(
$context );
405 'wgLegacyJavaScriptGlobals' => $this->
getConfig()->get(
'LegacyJavaScriptGlobals' ),
410 filemtime(
"$IP/resources/src/startup.js" ),
423 $rl =
$context->getResourceLoader();
425 $rl->preloadModuleInfo( $rl->getModuleNames(),
$context );
432 $this->versionHash[
$context->getHash()] =
null;
434 return $rl->getCombinedVersion(
$context, $rl->getModuleNames() );
Object passed around to modules which contains information about the state of a specific loader reque...
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 however some of the most important ones are listed below They are typically initialised either in index php or in Setup php For a description of the see design txt $wgTitle Title object created from the request URL $wgOut OutputPage object for HTTP response $wgUser User object for the user associated with the current request $wgLang Language object selected by user preferences $wgContLang Language object associated with the wiki being viewed $wgParser Parser object Parser extensions register their hooks here $wgRequest WebRequest object
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
$wgIncludeLegacyJavaScript
Whether to ensure the mediawiki.legacy library is loaded before other modules.
getDefinitionSummary(ResourceLoaderContext $context)
Get the definition summary for this module.
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
getModuleRegistrations(ResourceLoaderContext $context)
Get registration code for all modules.
getAllModuleHashes(ResourceLoaderContext $context)
Helper method for getDefinitionSummary().
static getStartupModules()
Base modules required for the base environment of ResourceLoader.
static getStartupModulesUrl(ResourceLoaderContext $context)
Get the load URL of the startup modules.
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 such as when responding to a resource loader request or generating HTML output & $resourceLoader
static getContentNamespaces()
Get a list of all namespace indices which are considered to contain content.
static convertByteClassToUnicodeClass( $byteClass)
Utility method for converting a character sequence from bytes to Unicode.
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
static getImplicitDependencies(array $registryData, $moduleName)
Recursively get all explicit and implicit dependencies for to the given module.
static getSkinNames()
Fetch the set of available skins.
static getLegacyModules()
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
when a variable name is used in a it is silently declared as a new masking the global
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
getScript(ResourceLoaderContext $context)
wfUrlProtocols( $includeProtocolRelative=true)
Returns a regular expression of url protocols.
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Allows changing specific properties of a context object, without changing the main one.
Abstraction for ResourceLoader modules, with name registration and maxage functionality.
getPreloadLinks(ResourceLoaderContext $context)
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
static getCanonicalNamespaces( $rebuild=false)
Returns array of all defined namespaces with their canonical (English) names.
static isCapitalized( $index)
Is the namespace first-letter capitalized?
getConfigSettings( $context)
static legalChars()
Get a regex character class describing the legal characters in a link.
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
static compileUnresolvedDependencies(array &$registryData)
Optimize the dependency tree in $this->modules.
the array() calling protocol came about after MediaWiki 1.4rc1.
static logException( $e, $catcher=self::CAUGHT_BY_OTHER)
Log an exception to the exception log (if enabled).
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out