Go to the documentation of this file.
41 $hash = $context->getHash();
42 if ( isset( $this->configVars[
$hash] ) ) {
43 return $this->configVars[
$hash];
46 global $wgLoadScript, $wgScript, $wgStylePath, $wgScriptExtension,
49 $wgEnableAPI, $wgEnableWriteAPI,
$wgDBname,
52 $wgResourceLoaderStorageEnabled, $wgResourceLoaderStorageVersion,
63 $caseSensitiveNamespaces =
array();
67 $caseSensitiveNamespaces[] = $index;
73 'wgLoadScript' => $wgLoadScript,
74 'debug' => $context->getDebug(),
75 'skin' => $context->getSkin(),
76 'stylepath' => $wgStylePath,
79 'wgScriptPath' => $wgScriptPath,
80 'wgScriptExtension' => $wgScriptExtension,
81 'wgScript' => $wgScript,
82 'wgSearchType' => $wgSearchType,
83 'wgVariantArticlePath' => $wgVariantArticlePath,
87 'wgServer' => $wgServer,
88 'wgUserLanguage' => $context->getLanguage(),
90 'wgVersion' => $wgVersion,
91 'wgEnableAPI' => $wgEnableAPI,
92 'wgEnableWriteAPI' => $wgEnableWriteAPI,
93 'wgMainPageTitle' => $mainPage->getPrefixedText(),
94 'wgFormattedNamespaces' =>
$wgContLang->getFormattedNamespaces(),
95 'wgNamespaceIds' => $namespaceIds,
97 'wgSiteName' => $wgSitename,
104 'wgExtensionAssetsPath' => $wgExtensionAssetsPath,
107 'wgResourceLoaderMaxQueryLength' => $wgResourceLoaderMaxQueryLength,
108 'wgCaseSensitiveNamespaces' => $caseSensitiveNamespaces,
110 'wgResourceLoaderStorageVersion' => $wgResourceLoaderStorageVersion,
111 'wgResourceLoaderStorageEnabled' => $wgResourceLoaderStorageEnabled,
117 return $this->configVars[
$hash];
131 $target = $context->
getRequest()->getVal(
'target',
'desktop' );
134 $registryData =
array();
139 $moduleTargets = $module->getTargets();
140 if ( !in_array( $target, $moduleTargets ) ) {
153 'dependencies' => $module->getDependencies(),
154 'group' => $module->getGroup(),
155 'source' => $module->getSource(),
156 'loader' => $module->getLoaderScript(),
165 $registrations =
array();
166 foreach ( $registryData
as $name => $data ) {
167 if ( $data[
'loader'] !==
false ) {
171 $data[
'dependencies'],
180 !count( $data[
'dependencies'] ) &&
181 $data[
'group'] ===
null &&
182 $data[
'source'] ===
'local'
186 $registrations[] =
array(
$name, $data[
'version'] );
187 } elseif ( $data[
'group'] ===
null && $data[
'source'] ===
'local' ) {
190 $registrations[] =
array(
$name, $data[
'version'], $data[
'dependencies'] );
191 } elseif ( $data[
'source'] ===
'local' ) {
194 $registrations[] =
array(
197 $data[
'dependencies'],
203 $registrations[] =
array(
206 $data[
'dependencies'],
240 $moduleNames =
array(
'jquery',
'mediawiki' );
241 wfRunHooks(
'ResourceLoaderGetStartupModules',
array( &$moduleNames ),
'1.23' );
246 foreach ( $moduleNames
as $moduleName ) {
248 $loader->getModule( $moduleName )->getModifiedTime( $context )
257 'debug' => $context->
getDebug() ?
'true' :
'false',
272 $out = file_get_contents(
"$IP/resources/src/startup.js" );
273 if ( $context->
getOnly() ===
'scripts' ) {
276 $configuration = $this->
getConfig( $context );
279 $registrations = str_replace(
"\n",
"\n\t", trim( $registrations ) );
280 $out .=
"var startUp = function () {\n" .
281 "\tmw.config = new " .
283 "\t$registrations\n" .
289 $out .=
"if ( isCompatible() ) {\n" .
312 if ( isset( $this->modifiedTime[
$hash] ) ) {
313 return $this->modifiedTime[
$hash];
319 $loader->preloadModuleInfo( $loader->getModuleNames(), $context );
323 filemtime(
"$IP/resources/src/startup.js" ),
332 $this->modifiedTime[
$hash] = 1;
334 foreach ( $loader->getModuleNames()
as $name ) {
335 $module = $loader->getModule(
$name );
336 $time = max(
$time, $module->getModifiedTime( $context ) );
340 return $this->modifiedTime[
$hash];
352 global $wgLegacyJavaScriptGlobals;
356 'wgLegacyJavaScriptGlobals' => $wgLegacyJavaScriptGlobals,
359 return md5( serialize( $data ) );
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
see documentation in includes Linker php for Linker::makeImageLink & $time
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
static makeLoaderSourcesScript( $id, $properties=null)
Returns JS code which calls mw.loader.addSource() with the given parameters.
static canRotate()
Returns whether the current scaler supports rotation (im and gd do)
getHashMtime(ResourceLoaderContext $context)
Helper method for calculating when the module's hash (if it has one) changed.
static newMainPage()
Create a new Title for the Main Page.
static makePackedModulesString( $modules)
Convert an array of module names to a packed query string.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
static getModuleRegistrations(ResourceLoaderContext $context)
Get registration code for all modules.
wfProfileIn( $functionname)
Begin profiling of a function.
static getStartupModulesUrl(ResourceLoaderContext $context)
Get the load URL of the startup modules.
if( $wgRCFilterByAge) if( $wgSkipSkin) if( $wgLocalInterwiki) if( $wgSharedPrefix===false) if(! $wgCookiePrefix) $wgCookiePrefix
getModifiedTime(ResourceLoaderContext $context)
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled also a ContextSource error or success such as when responding to a resource loader request or generating HTML output & $resourceLoader
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
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.
static getSkinNames()
Fetch the set of available skins.
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
static makeLoaderRegisterScript( $name, $version=null, $dependencies=null, $group=null, $source=null)
Returns JS code which calls mw.loader.register with the given parameters.
static encodeJsCall( $name, $args, $pretty=false)
Create a call to a JavaScript function.
controlled by $wgMainCacheType controlled by $wgParserCacheType controlled by $wgMessageCacheType If you set CACHE_NONE to one of the three control default value for MediaWiki still create a but requests to it are no ops and we always fall through to the database If the cache daemon can t be it should also disable itself fairly smoothly By $wgMemc is used but when it is $parserMemc or $messageMemc this is mentioned $wgDBname
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
static linkedScript( $url)
Output a "<script>" tag linking to the given URL, e.g., "<script src=foo.js></script>".
wfProfileOut( $functionname='missing')
Stop profiling of a function.
wfRunHooks( $event, array $args=array(), $deprecatedVersion=null)
Call hook functions defined in $wgHooks.
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
when a variable name is used in a it is silently declared as a new masking the global
if(! $wgHtml5Version && $wgAllowRdfaAttributes) $wgFileExtensions
getScript(ResourceLoaderContext $context)
wfUrlProtocols( $includeProtocolRelative=true)
Returns a regular expression of url protocols.
const TS_ISO_8601_BASIC
ISO 8601 basic format with no timezone: 19860209T200000Z.
getModifiedHash(ResourceLoaderContext $context)
Hash of all dynamic data embedded in getScript().
return false to override stock group addition can be modified try getUserPermissionsErrors userCan checks are continued by internal code can override on output return false to not delete it return false to override the default password checks & $hash
Abstraction for resource loader modules, with name registration and maxage functionality.
const TS_UNIX
Unix time - the number of seconds since 1970-01-01 00:00:00 UTC.
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?
static makeCustomLoaderScript( $name, $version, $dependencies, $group, $source, $script)
Returns JS code which calls the script given by $script.
static legalChars()
Get a regex character class describing the legal characters in a link.
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
return true to allow those checks to and false if checking is done use this to change the tables headers temp or archived zone change it to an object instance and return false override the list derivative used the name of the old file when set the default code will be skipped add a value to it if you want to add a cookie that have to vary cache options can modify $query