Manual:Hooks/OutputPageBeforeHTML
From MediaWiki.org
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. |
|
Define function: |
public static function onOutputPageBeforeHTML( &$out, &$text ) { ... } |
Attach hook: |
$wgHooks['OutputPageBeforeHTML'][] = 'MyExtensionHooks::onOutputPageBeforeHTML'; |
Called from: | OutputPage.php |
For more information about attaching hooks, see Manual:Hooks.
For examples of extensions using this hook, see Category:OutputPageBeforeHTML extensions.
[edit] Warning
Use this hook at your own risk.
- Be sure to return $out
- Not used for page previews (bug 7050) until 1.11 or so (r25341).
- Can cause infinite loops (see talk)
- May fail under certain caching systems
- Runs on every page load and page view, so increases overhead
[edit] Details
- $out: the OutputPage (object) to which wikitext is added
- $text: the HTML text (string) that is being added