Merge "mediawiki.api: Remove console warning for legacy token type"
[mediawiki.git] / includes / page / Hook / ArticleShowPatrolFooterHook.php
blobdffe362152f337ba0b6891feb1e1dd23c7c404b0
1 <?php
3 namespace MediaWiki\Page\Hook;
5 use Article;
7 /**
8 * This is a hook handler interface, see docs/Hooks.md.
9 * Use the hook name "ArticleShowPatrolFooter" to register handlers implementing this interface.
11 * @stable to implement
12 * @ingroup Hooks
14 interface ArticleShowPatrolFooterHook {
15 /**
16 * This hook is called at the beginning of Article#showPatrolFooter.
17 * Use this hook to not show the [mark as patrolled] link in certain
18 * circumstances.
20 * @since 1.35
22 * @param Article $article
23 * @return bool|void True or no return value to continue or false to abort
25 public function onArticleShowPatrolFooter( $article );