Manual:Hooks/OutputPageBeforeHTML
OutputPageBeforeHTML | |
---|---|
Available from version 1.6.0 Called every time wikitext is added to the OutputPage, after it is parsed but before it is added. Note, the hook can be called more than once, where OutputPage::addParserOutputText is used so exercise caution. | |
Define function: | public static function onOutputPageBeforeHTML( OutputPage $out, &$text ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"OutputPageBeforeHTML": "MyExtensionHooks::onOutputPageBeforeHTML"
}
}
|
Called from: | File(s): OutputPage.php |
Interface: | OutputPageBeforeHTMLHook.php |
For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:OutputPageBeforeHTML extensions.
WarningEdit
Use this hook at your own risk.
DetailsEdit
- $out: the OutputPage (object) to which wikitext is added
- $text: the HTML text (string) that is being added