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:still in use
Allowed values:(array)
Default value:[]

Details

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 ) { 
  /*...*/
}
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.