48 if ( isset( $this->configVars[$hash] ) ) {
49 return $this->configVars[$hash];
60 $mainPage = Title::newFromText(
$context->msg(
'mainpage' )->inContentLanguage()->text() );
62 $mainPage = Title::newFromText(
'Main Page' );
71 $caseSensitiveNamespaces = [];
72 foreach ( MWNamespace::getCanonicalNamespaces() as $index => $name ) {
74 if ( !MWNamespace::isCapitalized( $index ) ) {
75 $caseSensitiveNamespaces[] = $index;
79 $illegalFileChars = $conf->get(
'IllegalFileChars' );
80 $oldCommentSchema = $conf->get(
'CommentTableSchemaMigrationStage' ) ===
MIGRATION_OLD;
84 'wgLoadScript' =>
wfScript(
'load' ),
87 'stylepath' => $conf->get(
'StylePath' ),
89 'wgArticlePath' => $conf->get(
'ArticlePath' ),
90 'wgScriptPath' => $conf->get(
'ScriptPath' ),
92 'wgSearchType' => $conf->get(
'SearchType' ),
93 'wgVariantArticlePath' => $conf->get(
'VariantArticlePath' ),
96 'wgActionPaths' => (
object)$conf->get(
'ActionPaths' ),
97 'wgServer' => $conf->get(
'Server' ),
98 'wgServerName' => $conf->get(
'ServerName' ),
99 'wgUserLanguage' =>
$context->getLanguage(),
101 'wgTranslateNumerals' => $conf->get(
'TranslateNumerals' ),
102 'wgVersion' => $conf->get(
'Version' ),
103 'wgEnableAPI' => $conf->get(
'EnableAPI' ),
104 'wgEnableWriteAPI' => $conf->get(
'EnableWriteAPI' ),
105 'wgMainPageTitle' => $mainPage->getPrefixedText(),
106 'wgFormattedNamespaces' =>
$wgContLang->getFormattedNamespaces(),
107 'wgNamespaceIds' => $namespaceIds,
108 'wgContentNamespaces' => MWNamespace::getContentNamespaces(),
109 'wgSiteName' => $conf->get(
'Sitename' ),
110 'wgDBname' => $conf->get(
'DBname' ),
111 'wgExtraSignatureNamespaces' => $conf->get(
'ExtraSignatureNamespaces' ),
112 'wgAvailableSkins' => Skin::getSkinNames(),
113 'wgExtensionAssetsPath' => $conf->get(
'ExtensionAssetsPath' ),
115 'wgCookiePrefix' => $conf->get(
'CookiePrefix' ),
116 'wgCookieDomain' => $conf->get(
'CookieDomain' ),
117 'wgCookiePath' => $conf->get(
'CookiePath' ),
118 'wgCookieExpiration' => $conf->get(
'CookieExpiration' ),
119 'wgResourceLoaderMaxQueryLength' => $conf->get(
'ResourceLoaderMaxQueryLength' ),
120 'wgCaseSensitiveNamespaces' => $caseSensitiveNamespaces,
121 'wgLegalTitleChars' => Title::convertByteClassToUnicodeClass( Title::legalChars() ),
122 'wgIllegalFileChars' => Title::convertByteClassToUnicodeClass( $illegalFileChars ),
123 'wgResourceLoaderStorageVersion' => $conf->get(
'ResourceLoaderStorageVersion' ),
124 'wgResourceLoaderStorageEnabled' => $conf->get(
'ResourceLoaderStorageEnabled' ),
125 'wgForeignUploadTargets' => $conf->get(
'ForeignUploadTargets' ),
126 'wgEnableUploads' => $conf->get(
'EnableUploads' ),
127 'wgCommentByteLimit' => $oldCommentSchema ? 255 :
null,
128 'wgCommentCodePointLimit' => $oldCommentSchema ? null : CommentStore::COMMENT_CHARACTER_LIMIT,
131 Hooks::run(
'ResourceLoaderGetConfigVars', [ &
$vars ] );
133 $this->configVars[$hash] =
$vars;
134 return $this->configVars[$hash];
145 static $dependencyCache = [];
149 if ( !isset( $dependencyCache[$moduleName] ) ) {
150 if ( !isset( $registryData[$moduleName] ) ) {
152 $dependencyCache[$moduleName] = [];
154 $data = $registryData[$moduleName];
155 $dependencyCache[$moduleName] = $data[
'dependencies'];
157 foreach ( $data[
'dependencies'] as $dependency ) {
159 $dependencyCache[$moduleName] = array_merge(
160 $dependencyCache[$moduleName],
161 self::getImplicitDependencies( $registryData, $dependency )
167 return $dependencyCache[$moduleName];
189 foreach ( $registryData as $name => &$data ) {
190 $dependencies = $data[
'dependencies'];
191 foreach ( $data[
'dependencies'] as $dependency ) {
193 $dependencies = array_diff( $dependencies, $implicitDependencies );
196 $data[
'dependencies'] = array_values( $dependencies );
210 $target =
$context->getRequest()->getRawVal(
'target',
'desktop' );
213 $byPassTargetFilter = $this->
getConfig()->get(
'EnableJavaScriptTest' ) && $target ===
'test';
222 $moduleTargets = $module->getTargets();
223 if ( !$byPassTargetFilter && !in_array( $target, $moduleTargets ) ) {
227 if ( $module->isRaw() ) {
236 }
catch ( Exception
$e ) {
238 MWExceptionHandler::logException(
$e );
240 'Calculating version for "{module}" failed: {exception}',
247 $states[
$name] =
'error';
252 "Module '{module}' produced an invalid version hash: '{version}'.",
263 $skipFunction = $module->getSkipFunction();
268 $registryData[
$name] = [
270 'dependencies' => $module->getDependencies(
$context ),
271 'group' => $module->getGroup(),
272 'source' => $module->getSource(),
273 'skip' => $skipFunction,
284 foreach ( $registryData as $name => $data ) {
289 $data[
'dependencies'],
292 $data[
'source'] ===
'local' ? null : $data[
'source'],
321 $url => [
'as' =>
'script' ]
331 return [
'jquery',
'mediawiki' ];
339 $legacyModules[] =
'mediawiki.legacy.wikibits';
342 return $legacyModules;
355 $rl =
$context->getResourceLoader();
357 $derivative->setModules( array_merge(
358 self::getStartupModules(),
359 self::getLegacyModules()
361 $derivative->setOnly(
'scripts' );
363 $derivative->setVersion( $rl->makeVersionQuery( $derivative ) );
365 return $rl->createLoaderURL(
'local', $derivative );
374 if (
$context->getOnly() !==
'scripts' ) {
375 return '/* Requires only=script */';
378 $out = file_get_contents(
"$IP/resources/src/startup.js" );
380 $pairs = array_map(
function (
$value ) {
386 '$VARS.wgLegacyJavaScriptGlobals' => $this->
getConfig()->get(
'LegacyJavaScriptGlobals' ),
391 $pairs[
'$CODE.registrations()'] = str_replace(
397 return strtr(
$out, $pairs );
415 $summary = parent::getDefinitionSummary(
$context );
420 'wgLegacyJavaScriptGlobals' => $this->
getConfig()->get(
'LegacyJavaScriptGlobals' ),
425 filemtime(
"$IP/resources/src/startup.js" ),
438 $rl =
$context->getResourceLoader();
440 $rl->preloadModuleInfo( $rl->getModuleNames(),
$context );
447 $this->versionHash[
$context->getHash()] =
null;
449 return $rl->getCombinedVersion(
$context, $rl->getModuleNames() );
$wgIncludeLegacyJavaScript
Whether to ensure the mediawiki.legacy library is loaded before other modules.
wfUrlProtocols( $includeProtocolRelative=true)
Returns a regular expression of url protocols.
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
Allows changing specific properties of a context object, without changing the main one.
Object passed around to modules which contains information about the state of a specific loader reque...
Abstraction for ResourceLoader modules, with name registration and maxage functionality.
Module for ResourceLoader initialization.
getScript(ResourceLoaderContext $context)
static getImplicitDependencies(array $registryData, $moduleName)
Recursively get all explicit and implicit dependencies for to the given module.
static getStartupModules()
Base modules required for the base environment of ResourceLoader.
getPreloadLinks(ResourceLoaderContext $context)
getDefinitionSummary(ResourceLoaderContext $context)
Get the definition summary for this module.
getAllModuleHashes(ResourceLoaderContext $context)
Helper method for getDefinitionSummary().
getConfigSettings( $context)
static compileUnresolvedDependencies(array &$registryData)
Optimize the dependency tree in $this->modules.
static getStartupModulesUrl(ResourceLoaderContext $context)
Get the load URL of the startup modules.
getModuleRegistrations(ResourceLoaderContext $context)
Get registration code for all modules.
static getLegacyModules()
static makeLoaderStateScript( $name, $state=null)
Returns a JS call to mw.loader.state, which sets the state of a module or modules to a given value.
static inDebugMode()
Determine whether debug mode was requested Order of priority is 1) request param, 2) cookie,...
static makeLoaderSourcesScript( $id, $loadUrl=null)
Returns JS code which calls mw.loader.addSource() with the given parameters.
static makeLoaderRegisterScript( $name, $version=null, $dependencies=null, $group=null, $source=null, $skip=null)
Returns JS code which calls mw.loader.register with the given parameters.
static filter( $filter, $data, array $options=[])
Run JavaScript or CSS data through a filter, caching the filtered result for future calls.
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 local content language as $wgContLang
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
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
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
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
returning false will NOT prevent logging $e
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