Manual:Hooks/ParserBeforeTidy
Jump to navigation
Jump to search
ParserBeforeTidy | |
---|---|
Available from version 1.5.0 Used to process the nearly-rendered html code for the page (but before any html tidying occurs) |
|
Define function: |
public static function onParserBeforeTidy( &$parser, &$text ) { ... }
|
Attach hook: |
In extension.json: {
"Hooks": {
"ParserBeforeTidy": "MyExtensionHooks::onParserBeforeTidy"
}
}
For MediaWiki ≤1.25: $wgHooks['ParserBeforeTidy'][] = 'MyExtensionHooks::onParserBeforeTidy';
|
Called from: | File(s): Parser.php |
For more information about attaching hooks, see Manual:Hooks.
For examples of extensions using this hook, see Category:ParserBeforeTidy extensions.
Details[edit]
$text will hold the text for the page. To change the page text, modify this value. E.g. to add the phrase "The mighty oracle gives forth this proclamation: " to the front of the page text, you would use the following code:
$text = "The mighty oracle gives forth this proclamation: " . $text;