Manual:$wgParserOutputHooks
Appearance
This feature was removed completely in version 1.41.0. |
| Extensions: $wgParserOutputHooks | |
|---|---|
| Parser output hooks. |
|
| Introduced in version: | 1.11.0 |
| Deprecated in version: | 1.38.0 (Gerrit change 760994; git #773801e4) |
| Removed in version: | 1.41.0 (Gerrit change 942499; git #d421ab57) |
| Allowed values: | (array) |
| Default value: | [] |
| Other settings: Alphabetical | By function | |
Details
[edit]This is an associative array where the key is an extension-defined tag (typically the extension name), and the value is a PHP callback. These will be called as an OutputPageParserOutput hook, if the relevant tag has been registered with the parser output object.
Registration is done with
$pout->addOutputHook( $tag, $data );
The callback has the form:
function outputHook( $outputPage, $parserOutput, $data ) {
/*...*/
}