3 namespace MediaWiki\Page\Hook
;
8 * This is a hook handler interface, see docs/Hooks.md.
9 * Use the hook name "DisplayOldSubtitle" to register handlers implementing this interface.
11 * @stable to implement
14 interface DisplayOldSubtitleHook
{
16 * This hook is called before creating subtitle when browsing old versions of
21 * @param Article $article Article being viewed
22 * @param int &$oldid Old ID being viewed
23 * @return bool|void True or no return value to continue or false to abort
25 public function onDisplayOldSubtitle( $article, &$oldid );