24 lines
672 B
PHP
24 lines
672 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace MediaWiki\Hook;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @stable for implementation
|
||
|
|
* @ingroup Hooks
|
||
|
|
*/
|
||
|
|
interface ParserLimitReportPrepareHook {
|
||
|
|
/**
|
||
|
|
* Called at the end of Parser:parse() when the parser
|
||
|
|
* will include comments about size of the text parsed. Hooks should use
|
||
|
|
* $output->setLimitReportData() to populate data. Functions for this hook should
|
||
|
|
* not use $wgLang; do that in ParserLimitReportFormat instead.
|
||
|
|
*
|
||
|
|
* @since 1.35
|
||
|
|
*
|
||
|
|
* @param ?mixed $parser Parser object
|
||
|
|
* @param ?mixed $output ParserOutput object
|
||
|
|
* @return bool|void True or no return value to continue or false to abort
|
||
|
|
*/
|
||
|
|
public function onParserLimitReportPrepare( $parser, $output );
|
||
|
|
}
|