< Manual:Hooks
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": "MyExtensionHooks::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

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