Manual:Hooks/ResourceLoaderGetConfigVars
ResourceLoaderGetConfigVars | |
---|---|
Available from version 1.17.0 Called right before ResourceLoaderStartUpModule::getConfig returns, to set static (not request-specific) configuration variables. Can not depend on current page, current user or current request; see below. |
|
Define function: |
public static function onResourceLoaderGetConfigVars( &$vars, string $skin ) { ... }
|
Attach hook: |
In extension.json: {
"Hooks": {
"ResourceLoaderGetConfigVars": "MyExtensionHooks::onResourceLoaderGetConfigVars"
}
}
|
Called from: | File(s): resourceloader/ResourceLoaderStartUpModule.php |
Interface: | ResourceLoaderGetConfigVarsHook.php |
For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:ResourceLoaderGetConfigVars extensions.
DetailsEdit
ResourceLoaderStartUpModule::getConfig() runs this hook. Use it to export static configuration variables to JavaScript. Values that depend on the current page, user or request state must be added through MakeGlobalVariablesScript instead.
- &$vars: Array of variables to be added into the output of the startup module.
- $skin: Current skin name to restrict config variables to a certain skin (if needed) $skin parameter is available only starting from 1.32.
ExampleEdit
Register the configuration variables from the hook:
class VisualEditorHooks {
public static function onResourceLoaderGetConfigVars( array &$vars ) {
global $wgVisualEditorDisableForAnons, $wgVisualEditorEnableExperimentalCode;
$vars['wgVisualEditor'] = [
'disableForAnons' => $wgVisualEditorDisableForAnons,
'enableExperimentalCode' => $wgVisualEditorEnableExperimentalCode,
];
return true;
}
}
Retrieve them using mw.config , like:
conf = mw.config.get( 'wgVisualEditor' );
if ( conf.disableForAnons ) {
// Do stuff
}