MediaWiki  REL1_22
ResourceLoaderModule Class Reference

Abstraction for resource loader modules, with name registration and maxage functionality. More...

Inheritance diagram for ResourceLoaderModule:

List of all members.

Public Member Functions

 getDependencies ()
 Get a list of modules this module depends on.
 getFileDependencies ($skin)
 Get the files this module depends on indirectly for a given skin.
 getFlip ($context)
 getGroup ()
 Get the group this module is in.
 getHashMtime (ResourceLoaderContext $context)
 Helper method for calculating when the module's hash (if it has one) changed.
 getLoaderScript ()
 Get the loader JS for this module, if set.
 getMessages ()
 Get the messages needed for this module.
 getModifiedHash (ResourceLoaderContext $context)
 Get the last modification timestamp of the message blob for this module in a given language.
 getModifiedTime (ResourceLoaderContext $context)
 Get this module's last modification timestamp for a given combination of language, skin and debug mode flag.
 getMsgBlobMtime ($lang)
 Get the last modification timestamp of the message blob for this module in a given language.
 getName ()
 Get this module's name.
 getOrigin ()
 Get this module's origin.
 getPosition ()
 Where on the HTML page should this module's JS be loaded?
 getScript (ResourceLoaderContext $context)
 Get all JS for this module for a given language and skin.
 getScriptURLsForDebug (ResourceLoaderContext $context)
 Get the URL or URLs to load for this module's JS in debug mode.
 getSource ()
 Get the origin of this module.
 getStyles (ResourceLoaderContext $context)
 Get all CSS for this module for a given skin.
 getStyleURLsForDebug (ResourceLoaderContext $context)
 Get the URL or URLs to load for this module's CSS in debug mode.
 getTargets ()
 Get target(s) for the module, eg ['desktop'] or ['desktop', 'mobile'].
 isKnownEmpty (ResourceLoaderContext $context)
 Check whether this module is known to be empty.
 isRaw ()
 Whether this module's JS expects to work without the client-side ResourceLoader module.
 setFileDependencies ($skin, $deps)
 Set preloaded file dependency information.
 setMsgBlobMtime ($lang, $mtime)
 Set a preloaded message blob last modification timestamp.
 setName ($name)
 Set this module's name.
 setOrigin ($origin)
 Set this module's origin.
 supportsURLLoading ()
 Whether this module supports URL loading.

Public Attributes

const ORIGIN_ALL = 10
const ORIGIN_CORE_INDIVIDUAL = 2
const ORIGIN_CORE_SITEWIDE = 1
const ORIGIN_USER_INDIVIDUAL = 4
const ORIGIN_USER_SITEWIDE = 3
const TYPE_COMBINED = 'combined'
const TYPE_MESSAGES = 'messages'
const TYPE_SCRIPTS = 'scripts'
const TYPE_STYLES = 'styles'

Protected Member Functions

 validateScriptFile ($fileName, $contents)
 Validate a given script file; if valid returns the original source.

Static Protected Member Functions

static javaScriptParser ()
static safeFilemtime ($filename)
 Safe version of filemtime(), which doesn't throw a PHP warning if the file doesn't exist but returns 1 instead.

Protected Attributes

 $fileDeps = array()
 $msgBlobMtime = array()
 $name = null
 $origin = self::ORIGIN_CORE_SITEWIDE
 $targets = array( 'desktop' )

Static Private Attributes

static $jsParser
static $parseCacheVersion = 1

Detailed Description

Abstraction for resource loader modules, with name registration and maxage functionality.

Definition at line 28 of file ResourceLoaderModule.php.


Member Function Documentation

Get a list of modules this module depends on.

Dependency information is taken into account when loading a module on the client side.

To add dependencies dynamically on the client side, use a custom loader script, see getLoaderScript()

Returns:
array: List of module names as strings

Reimplemented in ResourceLoaderFileModule, ResourceLoaderLanguageDataModule, and ResourceLoaderUserCSSPrefsModule.

Definition at line 283 of file ResourceLoaderModule.php.

References array().

Get the files this module depends on indirectly for a given skin.

Currently these are only image files referenced by the module's CSS.

Parameters:
string$skinSkin name
Returns:
array: List of files

Definition at line 304 of file ResourceLoaderModule.php.

References $dbr, $skin, array(), FormatJson\decode(), getName(), and wfGetDB().

Referenced by ResourceLoaderFileModule\getModifiedTime(), and ResourceLoaderFileModule\getStyles().

Parameters:
ResourceLoaderContext$context
Returns:
bool

Reimplemented in ResourceLoaderFileModule.

Definition at line 115 of file ResourceLoaderModule.php.

References $wgContLang, and global.

Referenced by ResourceLoaderUserCSSPrefsModule\getStyles(), and ResourceLoaderWikiModule\getStyles().

Helper method for calculating when the module's hash (if it has one) changed.

Parameters:
ResourceLoaderContext$context
Returns:
integer: UNIX timestamp or 0 if there is no hash provided

Definition at line 403 of file ResourceLoaderModule.php.

References $cache, $hash, $key, $timestamp, array(), getModifiedHash(), getName(), wfGetCache(), wfMemcKey(), and wfTimestamp().

Referenced by ResourceLoaderLanguageDataModule\getModifiedTime().

Get the loader JS for this module, if set.

Returns:
mixed: JavaScript loader code as a string or boolean false if no custom loader set

Reimplemented in ResourceLoaderFileModule.

Definition at line 268 of file ResourceLoaderModule.php.

Get the messages needed for this module.

To get a JSON blob with messages, use MessageBlobStore::get()

Returns:
array: List of message keys. Keys may occur more than once

Reimplemented in ResourceLoaderFileModule.

Definition at line 216 of file ResourceLoaderModule.php.

References array().

Referenced by MessageBlobStore\generateMessageBlob(), getMsgBlobMtime(), and MessageBlobStore\insertMessageBlob().

Get the last modification timestamp of the message blob for this module in a given language.

Parameters:
ResourceLoaderContext$context
Returns:
string|null: Hash

Reimplemented in ResourceLoaderLanguageDataModule.

Definition at line 434 of file ResourceLoaderModule.php.

Referenced by getHashMtime().

Get this module's last modification timestamp for a given combination of language, skin and debug mode flag.

This is typically the highest of each of the relevant components' modification timestamps. Whenever anything happens that changes the module's contents for these parameters, the mtime should increase.

NOTE: The mtime of the module's messages is NOT automatically included. If you want this to happen, you'll need to call getMsgBlobMtime() yourself and take its result into consideration.

NOTE: The mtime of the module's hash is NOT automatically included. If your module provides a getModifiedHash() method, you'll need to call getHashMtime() yourself and take its result into consideration.

Parameters:
ResourceLoaderContext$contextContext object
Returns:
integer UNIX timestamp

Reimplemented in ResourceLoaderFileModule, ResourceLoaderStartUpModule, ResourceLoaderWikiModule, ResourceLoaderLanguageDataModule, ResourceLoaderUserCSSPrefsModule, and ResourceLoaderUserOptionsModule.

Definition at line 392 of file ResourceLoaderModule.php.

Get the last modification timestamp of the message blob for this module in a given language.

Parameters:
string$langLanguage code
Returns:
int: UNIX timestamp, or 0 if the module doesn't have messages

Definition at line 340 of file ResourceLoaderModule.php.

References $dbr, $msgBlobMtime, array(), getMessages(), getName(), wfGetDB(), wfTimestamp(), and wfTimestampNow().

Referenced by ResourceLoaderWikiModule\getModifiedTime(), and ResourceLoaderFileModule\getModifiedTime().

Get this module's name.

This is set when the module is registered with ResourceLoader::register()

Returns:
mixed: Name (string) or null if no name was set

Definition at line 76 of file ResourceLoaderModule.php.

References name.

Referenced by getFileDependencies(), getHashMtime(), getMsgBlobMtime(), getScriptURLsForDebug(), ResourceLoaderFileModule\getStyles(), and getStyleURLsForDebug().

Get this module's origin.

This is set when the module is registered with ResourceLoader::register()

Returns:
int: ResourceLoaderModule class constant, the subclass default if not set manually

Definition at line 97 of file ResourceLoaderModule.php.

Where on the HTML page should this module's JS be loaded?

  • 'top': in the "<head>"
  • 'bottom': at the bottom of the "<body>"
Returns:
string

Reimplemented in ResourceLoaderFileModule.

Definition at line 248 of file ResourceLoaderModule.php.

Get all JS for this module for a given language and skin.

Includes all relevant JS except loader scripts.

Parameters:
ResourceLoaderContext$context
Returns:
string: JavaScript code

Reimplemented in ResourceLoaderFileModule, ResourceLoaderStartUpModule, ResourceLoaderWikiModule, ResourceLoaderLanguageDataModule, ResourceLoaderUserOptionsModule, and ResourceLoaderUserTokensModule.

Definition at line 128 of file ResourceLoaderModule.php.

Get the URL or URLs to load for this module's JS in debug mode.

The default behavior is to return a load.php?only=scripts URL for the module, but file-based modules will want to override this to load the files directly.

This function is called only when 1) we're in debug mode, 2) there is no only= parameter and 3) supportsURLLoading() returns true. #2 is important to prevent an infinite loop, therefore this function MUST return either an only= URL or a non-load.php URL.

Parameters:
ResourceLoaderContext$context
Returns:
array: Array of URLs

Reimplemented in ResourceLoaderFileModule.

Definition at line 147 of file ResourceLoaderModule.php.

References array(), ResourceLoaderContext\getLanguage(), getName(), ResourceLoaderContext\getRequest(), ResourceLoaderContext\getSkin(), ResourceLoaderContext\getUser(), ResourceLoaderContext\getVersion(), and ResourceLoader\makeLoaderURL().

Get the origin of this module.

Should only be overridden for foreign modules.

Returns:
string: Origin name, 'local' for local modules

Definition at line 236 of file ResourceLoaderModule.php.

Get all CSS for this module for a given skin.

Parameters:
ResourceLoaderContext$context
Returns:
array: List of CSS strings or array of CSS strings keyed by media type. like array( 'screen' => '.foo { width: 0 }' ); or array( 'screen' => array( '.foo { width: 0 }' ) );

Reimplemented in ResourceLoaderFileModule, ResourceLoaderWikiModule, and ResourceLoaderUserCSSPrefsModule.

Definition at line 180 of file ResourceLoaderModule.php.

References array().

Get the URL or URLs to load for this module's CSS in debug mode.

The default behavior is to return a load.php?only=styles URL for the module, but file-based modules will want to override this to load the files directly. See also getScriptURLsForDebug()

Parameters:
ResourceLoaderContext$context
Returns:
array: array( mediaType => array( URL1, URL2, ... ), ... )

Reimplemented in ResourceLoaderFileModule.

Definition at line 194 of file ResourceLoaderModule.php.

References array(), ResourceLoaderContext\getLanguage(), getName(), ResourceLoaderContext\getRequest(), ResourceLoaderContext\getSkin(), ResourceLoaderContext\getUser(), ResourceLoaderContext\getVersion(), and ResourceLoader\makeLoaderURL().

Get target(s) for the module, eg ['desktop'] or ['desktop', 'mobile'].

Returns:
array: Array of strings

Reimplemented in ResourceLoaderFileModule.

Definition at line 293 of file ResourceLoaderModule.php.

Check whether this module is known to be empty.

If a child class has an easy and cheap way to determine that this module is definitely going to be empty, it should override this method to return true in that case. Callers may optimize the request for this module away if this function returns true.

Parameters:
ResourceLoaderContext$context
Returns:
bool

Reimplemented in ResourceLoaderWikiModule.

Definition at line 447 of file ResourceLoaderModule.php.

Whether this module's JS expects to work without the client-side ResourceLoader module.

Returning true from this function will prevent mw.loader.state() call from being appended to the bottom of the script.

Returns:
bool

Reimplemented in ResourceLoaderFileModule, and ResourceLoaderStartUpModule.

Definition at line 259 of file ResourceLoaderModule.php.

static ResourceLoaderModule::javaScriptParser ( ) [static, protected]
Returns:
JSParser

Definition at line 495 of file ResourceLoaderModule.php.

References $jsParser.

Referenced by validateScriptFile().

static ResourceLoaderModule::safeFilemtime ( filename) [static, protected]

Safe version of filemtime(), which doesn't throw a PHP warning if the file doesn't exist but returns 1 instead.

Parameters:
string$filenameFile name
Returns:
int UNIX timestamp, or 1 if the file doesn't exist

Definition at line 508 of file ResourceLoaderModule.php.

Set preloaded file dependency information.

Used so we can load this information for all modules at once.

Parameters:
string$skinSkin name
array$depsArray of file names

Definition at line 330 of file ResourceLoaderModule.php.

References $skin.

ResourceLoaderModule::setMsgBlobMtime ( lang,
mtime 
)

Set a preloaded message blob last modification timestamp.

Used so we can load this information for all modules at once.

Parameters:
string$langLanguage code
$mtimeInteger: UNIX timestamp or 0 if there is no such blob

Definition at line 368 of file ResourceLoaderModule.php.

Set this module's name.

This is called by ResourceLoader::register() when registering the module. Other code should not call this.

Parameters:
string$nameName

Definition at line 86 of file ResourceLoaderModule.php.

References $name, and name.

Set this module's origin.

This is called by ResourceLoader::register() when registering the module. Other code should not call this.

Parameters:
int$originorigin

Definition at line 107 of file ResourceLoaderModule.php.

References $origin.

Whether this module supports URL loading.

If this function returns false, getScript() will be used even in cases (debug mode, no only param) where getScriptURLsForDebug() would normally be used instead.

Returns:
bool

Reimplemented in ResourceLoaderFileModule, ResourceLoaderStartUpModule, ResourceLoaderUserOptionsModule, and ResourceLoaderUserTokensModule.

Definition at line 168 of file ResourceLoaderModule.php.

ResourceLoaderModule::validateScriptFile ( fileName,
contents 
) [protected]

Validate a given script file; if valid returns the original source.

If invalid, returns replacement JS source that throws an exception.

Parameters:
string$fileName
string$contents
Returns:
string: JS with the original, or a replacement error

Definition at line 463 of file ResourceLoaderModule.php.

References $cache, $key, $parser, $result, Xml\encodeJsVar(), global, javaScriptParser(), wfGetCache(), and wfMemcKey().

Referenced by ResourceLoaderWikiModule\getScript(), and ResourceLoaderFileModule\readScriptFiles().


Member Data Documentation

ResourceLoaderModule::$fileDeps = array() [protected]

Definition at line 64 of file ResourceLoaderModule.php.

ResourceLoaderModule::$jsParser [static, private]

Definition at line 452 of file ResourceLoaderModule.php.

Referenced by javaScriptParser().

ResourceLoaderModule::$msgBlobMtime = array() [protected]

Definition at line 66 of file ResourceLoaderModule.php.

Referenced by getMsgBlobMtime().

ResourceLoaderModule::$origin = self::ORIGIN_CORE_SITEWIDE [protected]
ResourceLoaderModule::$parseCacheVersion = 1 [static, private]

Definition at line 453 of file ResourceLoaderModule.php.

ResourceLoaderModule::$targets = array( 'desktop' ) [protected]

Definition at line 50 of file ResourceLoaderModule.php.

Definition at line 34 of file ResourceLoaderModule.php.

Definition at line 32 of file ResourceLoaderModule.php.


The documentation for this class was generated from the following file: