Manual:Hooks/ArticleViewCustom

From mediawiki.org
ArticleViewCustom
Available from version 1.19.0 (r94259, codereview)
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