Manual:Hooks/ArticleViewCustom
Appearance
This feature was removed completely in version 1.29.0 (after being deprecated in 1.21.0).
Use ArticleRevisionViewCustom instead. Note that it is preferable to implement proper handing for a custom data type using the ContentHandler facility. |
| ArticleViewCustom | |
|---|---|
| Available from version 1.19.0 (r94259, CodeReview archive) Removed in version 1.29.0 allows to output the text of the article in a different format than wikitext | |
| Define function: | public static function onArticleViewCustom( $text, $title, $output ) { ... }
|
| Attach hook: | In extension.json:
{
"Hooks": {
"ArticleViewCustom": "MediaWiki\\Extension\\MyExtension\\Hooks::onArticleViewCustom"
}
}
|
| Called from: | File(s): Article.php |
| Interface: | ArticleViewCustomHook.php |
For more information about attaching hooks, see Manual:Hooks.
For examples of extensions using this hook, see Category:ArticleViewCustom extensions.
Details
[edit]Allows to output the text of the article in a different format than wikitext.
- $text: text of the page
- $title: title of the page
- $output: reference to $wgOut