< Manual:Hooks
| This feature was removed from MediaWiki core in version 1.37.0 (after being deprecated in 1.35.0). Please see BeforeParserFetchTemplateRevisionRecord for an alternative way to use this feature. |
| ParserFetchTemplate | |
|---|---|
| Available from version 1.28.0 (Gerrit change 307073) Removed in version 1.37.0 Called when the parser fetches a template | |
| Define function: | public static function onParserFetchTemplate( $parser, Title $title, Revision $revision, &$text, array &$deps ) { ... }
|
| Attach hook: | In extension.json:
{
"Hooks": {
"ParserFetchTemplate": "MyExtensionHooks::onParserFetchTemplate"
}
}
|
| Called from: | File(s): parser/Parser.php Function(s): statelessFetchTemplate |
| Interface: | ParserFetchTemplateHook.php |
For more information about attaching hooks, see Manual:Hooks.
For examples of extensions using this hook, see Category:ParserFetchTemplate extensions.
Details
$parser: Parser object or false$title: Title object of the template to be fetched$rev: Revision object of the template&$text: Transclusion text of the template or false or null&$deps: Array of template dependencies with 'title', 'page_id', 'rev_id' keys
See also
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.