Manual:Hooks/MagicWordwgVariableIDs
Deprecated: This feature is deprecated and should no longer be used, however it is still available for reasons of backwards compatibility .
|
MagicWordwgVariableIDs | |
---|---|
Available from version 1.6.1 Tells MediaWiki that one or more magic word IDs should be treated as variables. | |
Define function: | public static function onMagicWordwgVariableIDs( &$aCustomVariableIds ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"MagicWordwgVariableIDs": "MediaWiki\\Extension\\MyExtension\\Hooks::onMagicWordwgVariableIDs"
}
}
|
Called from: | File(s): MagicWord.php |
Interface: | MagicWordwgVariableIDsHook.php |
For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:MagicWordwgVariableIDs extensions.
Usage
editThis function is part of a collection of function hooks used to define custom variables. For an overview of this hook and how it fits into the overall process of defining and registering user defined variables, please see Manual:Variables.