wiki.techinc.nl/includes/parser/Hook/ParserCacheSaveCompleteHook.php
James D. Forrester 9bfb75ff90 Namespace ParserOutput
Most used non-namespaced class!

Bug: T353458
Change-Id: I4c2cbb0a808b3881a4d6ca489eee5d8c8ebf26cf
2023-12-14 14:57:34 -05:00

34 lines
1.1 KiB
PHP

<?php
namespace MediaWiki\Hook;
use MediaWiki\Parser\ParserOutput;
use MediaWiki\Title\Title;
use ParserCache;
use ParserOptions;
/**
* This is a hook handler interface, see docs/Hooks.md.
* Use the hook name "ParserCacheSaveComplete" to register handlers implementing this interface.
*
* @stable to implement
* @ingroup Hooks
*/
interface ParserCacheSaveCompleteHook {
/**
* This hook is called after a ParserOutput has been committed to
* the parser cache.
*
* @since 1.35
*
* @param ParserCache $parserCache ParserCache object $parserOutput was stored in
* @param ParserOutput $parserOutput ParserOutput object that was stored
* @param Title $title Title of the page that was parsed to generate $parserOutput
* @param ParserOptions $popts ParserOptions used for generating $parserOutput
* @param int $revId ID of the revision that was parsed to create $parserOutput
* @return bool|void True or no return value to continue or false to abort
*/
public function onParserCacheSaveComplete( $parserCache, $parserOutput, $title,
$popts, $revId
);
}