|
MediaWiki master
|
Inherits MediaWiki\ResourceLoader\Hook\ResourceLoaderBeforeResponseHook, MediaWiki\ResourceLoader\Hook\ResourceLoaderExcludeUserOptionsHook, MediaWiki\ResourceLoader\Hook\ResourceLoaderForeignApiModulesHook, MediaWiki\ResourceLoader\Hook\ResourceLoaderModifyEmbeddedSourceUrlsHook, MediaWiki\ResourceLoader\Hook\ResourceLoaderRegisterModulesHook, MediaWiki\ResourceLoader\Hook\ResourceLoaderSiteModulePagesHook, MediaWiki\ResourceLoader\Hook\ResourceLoaderSiteStylesModulePagesHook, MediaWiki\ResourceLoader\Hook\ResourceLoaderGetConfigVarsHook, and MediaWiki\ResourceLoader\Hook\ResourceLoaderJqueryMsgModuleMagicWordsHook.

Public Member Functions | ||||||||||
| __construct (HookContainer $container) | ||||||||||
| onResourceLoaderBeforeResponse (Context $context, array &$extraHeaders) | ||||||||||
| Add extra HTTP response headers for the given request context. | ||||||||||
| onResourceLoaderExcludeUserOptions (array &$keysToExclude, Context $context) | ||||||||||
| Exclude a user option from the preloaded data for client-side mw.user.options. | ||||||||||
| onResourceLoaderForeignApiModules (&$dependencies, $context) | ||||||||||
Add dependencies to the mediawiki.ForeignApi module when you wish to override its behavior.See the JS docs for more information.This hook is called from ResourceLoaderForeignApiModule.
| ||||||||||
| onResourceLoaderGetConfigVars (array &$vars, $skin, Config $config) | ||||||||||
Export static site-wide mw.config variables to JavaScript.Variables that depend on the current page or request state must be added through MediaWiki\Hook\MakeGlobalVariablesScriptHook instead. The skin name is made available to send skin-specific config only when needed.This hook is called from MediaWiki\ResourceLoader\StartUpModule.
| ||||||||||
| onResourceLoaderJqueryMsgModuleMagicWords (Context $context, array &$magicWords) | ||||||||||
Add magic words to the mediawiki.jqueryMsg module. | ||||||||||
| onResourceLoaderModifyEmbeddedSourceUrls (array &$urls) | ||||||||||
| Allow modifying source URLs (i.e. | ||||||||||
| onResourceLoaderRegisterModules (ResourceLoader $rl) | ||||||||||
| This hook is called right before modules information is required, such as when responding to a resource loader request or generating HTML output. | ||||||||||
| onResourceLoaderSiteModulePages ( $skin, array &$pages) | ||||||||||
Change which wiki pages comprise the site module in given skin.This hook is called from MediaWiki\ResourceLoader\SiteModule.
| ||||||||||
| onResourceLoaderSiteStylesModulePages ( $skin, array &$pages) | ||||||||||
Change which wiki pages comprise the site.styles module in given skin.This hook is called from ResourceLoaderSiteStylesModule.
| ||||||||||
Definition at line 13 of file HookRunner.php.
| MediaWiki\ResourceLoader\HookRunner::__construct | ( | HookContainer | $container | ) |
Definition at line 27 of file HookRunner.php.
| MediaWiki\ResourceLoader\HookRunner::onResourceLoaderBeforeResponse | ( | Context | $context, |
| array & | $extraHeaders ) |
Add extra HTTP response headers for the given request context.
These headers are sent regardless of status (200 OK, or 304 Not Modified) and content type (CSS, JS, Image, SourceMap).
This hook is called from ResourceLoaderEntryPoint.
| Context | $context | |
| string[] | &$extraHeaders |
Implements MediaWiki\ResourceLoader\Hook\ResourceLoaderBeforeResponseHook.
Definition at line 101 of file HookRunner.php.
| MediaWiki\ResourceLoader\HookRunner::onResourceLoaderExcludeUserOptions | ( | array & | $keysToExclude, |
| Context | $context ) |
Exclude a user option from the preloaded data for client-side mw.user.options.
This hook is called on every index.php pageview (via ResourceLoaderUserOptionsModule), and when building responses for the "mediawiki.base" module. Avoid database queries or other expensive operations as that would increase page load time.
Use this hook to optimize pageview HTML size by omitting user preference values from the export JavaScript data for mw.user.options. For example, when an extension stores large values in a user preference, and rarely or never needs these client-side, you can exclude it via this hook. (T251994)
This will exclude both the default value (via mediawiki.base module) and the current user's value (via pageview HTML).
| array | &$keysToExclude | |
| Context | $context |
Implements MediaWiki\ResourceLoader\Hook\ResourceLoaderExcludeUserOptionsHook.
Definition at line 31 of file HookRunner.php.
| MediaWiki\ResourceLoader\HookRunner::onResourceLoaderForeignApiModules | ( | & | $dependencies, |
| $context ) |
Add dependencies to the mediawiki.ForeignApi module when you wish to override its behavior.See the JS docs for more information.This hook is called from ResourceLoaderForeignApiModule.
| string[] | &$dependencies | List of modules that mediawiki.ForeignApi should depend on |
| Context | null | $context |
Implements MediaWiki\ResourceLoader\Hook\ResourceLoaderForeignApiModulesHook.
Definition at line 40 of file HookRunner.php.
| MediaWiki\ResourceLoader\HookRunner::onResourceLoaderGetConfigVars | ( | array & | $vars, |
| $skin, | |||
| Config | $config ) |
Export static site-wide mw.config variables to JavaScript.Variables that depend on the current page or request state must be added through MediaWiki\Hook\MakeGlobalVariablesScriptHook instead. The skin name is made available to send skin-specific config only when needed.This hook is called from MediaWiki\ResourceLoader\StartUpModule.
| array | &$vars | [ variable name => value ] |
| string | $skin | |
| Config | $config | since 1.34 |
Implements MediaWiki\ResourceLoader\Hook\ResourceLoaderGetConfigVarsHook.
Definition at line 83 of file HookRunner.php.
| MediaWiki\ResourceLoader\HookRunner::onResourceLoaderJqueryMsgModuleMagicWords | ( | Context | $context, |
| array & | $magicWords ) |
Add magic words to the mediawiki.jqueryMsg module.
The values should be a string, and they may only vary by what's in the Context.
This hook is called from ResourceLoaderJqueryMsgModule.
| Context | $context | |
| string[] | &$magicWords | Associative array mapping all-caps magic word to a string value |
Implements MediaWiki\ResourceLoader\Hook\ResourceLoaderJqueryMsgModuleMagicWordsHook.
Definition at line 91 of file HookRunner.php.
| MediaWiki\ResourceLoader\HookRunner::onResourceLoaderModifyEmbeddedSourceUrls | ( | array & | $urls | ) |
Allow modifying source URLs (i.e.
URLs to load.php, see ResourceLoader::getSources()) when they are used for output that may be embedded in the page HTML, rather than referenced using <link> etc., and thus the URL will be expanded relative to index.php URLs, rather than other load.php URLs.
The hook must not add or remove sources, and calling the new URL should have a roughly similar outcome to calling the old URL. It is mainly intended to support serving index.php and load.php from different domains.
This hook is currently called from StartUpModule and ImageModule.
| string[] | &$urls | An array of source name => URL; the URL might be relative. |
Implements MediaWiki\ResourceLoader\Hook\ResourceLoaderModifyEmbeddedSourceUrlsHook.
Definition at line 48 of file HookRunner.php.
| MediaWiki\ResourceLoader\HookRunner::onResourceLoaderRegisterModules | ( | ResourceLoader | $rl | ) |
This hook is called right before modules information is required, such as when responding to a resource loader request or generating HTML output.
| ResourceLoader | $rl |
Implements MediaWiki\ResourceLoader\Hook\ResourceLoaderRegisterModulesHook.
Definition at line 56 of file HookRunner.php.
| MediaWiki\ResourceLoader\HookRunner::onResourceLoaderSiteModulePages | ( | $skin, | |
| array & | $pages ) |
Change which wiki pages comprise the site module in given skin.This hook is called from MediaWiki\ResourceLoader\SiteModule.
| string | $skin | Current skin key |
| array | &$pages | Array of pages and their types |
Implements MediaWiki\ResourceLoader\Hook\ResourceLoaderSiteModulePagesHook.
Definition at line 65 of file HookRunner.php.
| MediaWiki\ResourceLoader\HookRunner::onResourceLoaderSiteStylesModulePages | ( | $skin, | |
| array & | $pages ) |
Change which wiki pages comprise the site.styles module in given skin.This hook is called from ResourceLoaderSiteStylesModule.
| string | $skin | Current skin key |
| array | &$pages | Array of pages and their types |
Implements MediaWiki\ResourceLoader\Hook\ResourceLoaderSiteStylesModulePagesHook.
Definition at line 74 of file HookRunner.php.