Use only one place to document the deprecation of hook interfaces/functions Bug: T282903 Change-Id: Ie7d2d7a50afe2897e5c2369f473a33ecaa821637
30 lines
820 B
PHP
30 lines
820 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Hook;
|
|
|
|
use Parser;
|
|
use Title;
|
|
|
|
/**
|
|
* This is a hook handler interface, see docs/Hooks.md.
|
|
* Use the hook name "BeforeParserFetchTemplateAndtitle" to register handlers implementing this interface.
|
|
*
|
|
* @deprecated since 1.36; use BeforeParserFetchTemplateRevisionRecordHook
|
|
* @ingroup Hooks
|
|
*/
|
|
interface BeforeParserFetchTemplateAndtitleHook {
|
|
/**
|
|
* This hook is called before a template is fetched by Parser.
|
|
*
|
|
* @since 1.35
|
|
*
|
|
* @param Parser $parser
|
|
* @param Title $title Title of the template
|
|
* @param bool &$skip Skip this template and link it?
|
|
* @param int &$id ID of the revision being parsed
|
|
* @return bool|void True or no return value to continue or false to abort
|
|
*/
|
|
public function onBeforeParserFetchTemplateAndtitle( $parser, $title, &$skip,
|
|
&$id
|
|
);
|
|
}
|