MediaWiki
master
|
Module for site customizations. More...
Public Member Functions | |
getDependencies (Context $context=null) | |
![]() | |
__construct (array $options=null) | |
enableModuleContentVersion () | |
Disable module content versioning. More... | |
getDefinitionSummary (Context $context) | |
getGroup () | |
Get group name. More... | |
getScript (Context $context) | |
getStyles (Context $context) | |
getType () | |
isKnownEmpty (Context $context) | |
shouldEmbedModule (Context $context) | |
supportsURLLoading () | |
![]() | |
getConfig () | |
getDeprecationInformation (Context $context) | |
Get JS representing deprecation information for the current module if available. More... | |
getFlip (Context $context) | |
getHeaders (Context $context) | |
Get headers to send as part of a module web response. More... | |
getMessages () | |
Get the messages needed for this module. More... | |
getModuleContent (Context $context) | |
Get an array of this module's resources. More... | |
getName () | |
Get this module's name. More... | |
getOrigin () | |
Get this module's origin. More... | |
getScriptURLsForDebug (Context $context) | |
Get alternative script URLs for legacy debug mode. More... | |
getSkins () | |
Get list of skins for which this module must be available to load. More... | |
getSkipFunction () | |
Get the skip function. More... | |
getSource () | |
Get the source of this module. More... | |
getStyleURLsForDebug (Context $context) | |
Get the URL or URLs to load for this module's CSS in debug mode. More... | |
getTargets () | |
Get target(s) for the module, eg ['desktop'] or ['desktop', 'mobile']. More... | |
getTemplates () | |
Takes named templates by the module and returns an array mapping. More... | |
getVersionHash (Context $context) | |
Get a string identifying the current version of this module in a given context. More... | |
requiresES6 () | |
Whether the module requires ES6 support in the client. More... | |
setConfig (Config $config) | |
setDependencyAccessCallbacks (callable $loadCallback, callable $saveCallback) | |
Inject the functions that load/save the indirect file path dependency list from storage. More... | |
setFileDependencies (Context $context, array $paths) | |
Set the indirect dependencies for this module pursuant to the skin/language context. More... | |
setHookContainer (HookContainer $hookContainer) | |
setLogger (LoggerInterface $logger) | |
setMessageBlob ( $blob, $lang) | |
Set in-object cache for message blobs. More... | |
setName ( $name) | |
Set this module's name. More... | |
setSkinStylesOverride (array $moduleSkinStyles) | |
Provide overrides for skinStyles to modules that support that. More... | |
Protected Member Functions | |
getPages (Context $context) | |
Get list of pages used by this module. More... | |
![]() | |
getContent ( $titleText, Context $context) | |
getContentObj (PageIdentity $page, Context $context, $maxRedirects=1) | |
getDB () | |
Get the Database handle used for computing the module version. More... | |
getRequireKey (string $titleText) | |
Convert a namespace-formatted page title to a virtual package file name. More... | |
getTitleInfo (Context $context) | |
Get the information about the wiki pages for a given context. More... | |
isPackaged () | |
Get whether this module is a packaged module. More... | |
![]() | |
buildContent (Context $context) | |
Bundle all resources attached to this module into an array. More... | |
getFileDependencies (Context $context) | |
Get the indirect dependencies for this module pursuant to the skin/language context. More... | |
getHookRunner () | |
Get a HookRunner for running core hooks. More... | |
getLessVars (Context $context) | |
Get module-specific LESS variables, if any. More... | |
getLogger () | |
getMessageBlob (Context $context) | |
Get the hash of the message blob. More... | |
getPreloadLinks (Context $context) | |
Get a list of resources that web browsers may preload. More... | |
saveFileDependencies (Context $context, array $curFileRefs) | |
Save the indirect dependencies for this module pursuant to the skin/language context. More... | |
validateScriptFile ( $fileName, $contents) | |
Validate a user-provided JavaScript blob. More... | |
Additional Inherited Members | |
![]() | |
static | invalidateModuleCache (PageIdentity $page, ?RevisionRecord $old, ?RevisionRecord $new, string $domain) |
Clear the preloadTitleInfo() cache for all wiki modules on this wiki on page change if it was a JS or CSS page. More... | |
static | preloadTitleInfo (Context $context, IDatabase $db, array $moduleNames) |
![]() | |
static | expandRelativePaths (array $filePaths) |
Expand directories relative to $IP. More... | |
static | getRelativePaths (array $filePaths) |
Make file paths relative to MediaWiki directory. More... | |
static | getVary (Context $context) |
Get vary string. More... | |
![]() | |
static | fetchTitleInfo (IReadableDatabase $db, array $pages, $fname=__METHOD__) |
![]() | |
static | safeFileHash ( $filePath) |
Compute a non-cryptographic string hash of a file's contents. More... | |
![]() | |
array | $datas = [] |
List of page names that contain JSON. More... | |
string null | $group |
Group of module. More... | |
string | $origin = self::ORIGIN_USER_SITEWIDE |
Origin defaults to users with sitewide authority. More... | |
array | $scripts = [] |
List of page names that contain JavaScript. More... | |
array | $styles = [] |
List of page names that contain CSS. More... | |
array | $titleInfo = [] |
In-process cache for title info, structured as an array [ <batchKey> // Pipe-separated list of sorted keys from getPages => [ <titleKey> => [ // Normalised title key 'page_len' => .., 'page_latest' => .., 'page_touched' => .., ] ] ]. More... | |
![]() | |
Config | $config |
array | $contents = [] |
Map of (context hash => cached module content) More... | |
string bool | $deprecated = false |
Deprecation string or true if deprecated; false otherwise. More... | |
array | $fileDeps = [] |
Map of (variant => indirect file dependencies) More... | |
LoggerInterface | $logger |
array | $msgBlobs = [] |
Map of (language => in-object cache for message blob) More... | |
string null | $name = null |
Module name. More... | |
int | $origin = self::ORIGIN_CORE_SITEWIDE |
Script and style modules form a hierarchy of trustworthiness, with core modules like skins and jQuery as most trustworthy, and user scripts as least trustworthy. More... | |
string[] null | $skins = null |
Skin names. More... | |
string[] | $targets = [ 'desktop', 'mobile' ] |
What client platforms the module targets (e.g. More... | |
array | $versionHash = [] |
Map of (context hash => cached module version hash) More... | |
MediaWiki\ResourceLoader\SiteModule::getDependencies | ( | Context | $context = null | ) |
Context | null | $context |
Reimplemented from MediaWiki\ResourceLoader\Module.
Definition at line 55 of file SiteModule.php.
|
protected |
Get list of pages used by this module.
Context | $context |
Reimplemented from MediaWiki\ResourceLoader\WikiModule.
Definition at line 40 of file SiteModule.php.
References MediaWiki\ResourceLoader\Module\getConfig(), MediaWiki\ResourceLoader\Module\getHookRunner(), MediaWiki\ResourceLoader\Context\getSkin(), and MediaWiki\MainConfigNames\UseSiteJs.