1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
<?php
namespace MediaWiki\Page\Hook;
use Article;
use MediaWiki\Parser\ParserOutput;
/**
* This is a hook handler interface, see docs/Hooks.md.
* Use the hook name "ArticleViewHeader" to register handlers implementing this interface.
*
* @stable to implement
* @ingroup Hooks
*/
interface ArticleViewHeaderHook {
/**
* Use this hook to control article output. This hook is called before the parser
* cache is about to be tried for article viewing.
*
* @since 1.35
*
* @param Article $article
* @param bool|ParserOutput|null &$outputDone Whether the output for this page finished or not. Set to
* a ParserOutput object to both indicate that the output is done and what
* parser output was used.
* @param bool &$pcache Whether to try the parser cache or not
* @return bool|void True or no return value to continue or false to abort
*/
public function onArticleViewHeader( $article, &$outputDone, &$pcache );
}
|