26 lines
604 B
PHP
26 lines
604 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Hook;
|
|
|
|
use MediaWiki\Deferred\LinksUpdate\LinksUpdate;
|
|
|
|
/**
|
|
* This is a hook handler interface, see docs/Hooks.md.
|
|
* Use the hook name "LinksUpdate" to register handlers implementing this interface.
|
|
*
|
|
* @stable to implement
|
|
* @ingroup Hooks
|
|
*/
|
|
interface LinksUpdateHook {
|
|
/**
|
|
* This hook is called at the beginning of LinksUpdate::doUpdate() just before the
|
|
* actual update.
|
|
*
|
|
* @since 1.35
|
|
*
|
|
* @param LinksUpdate $linksUpdate
|
|
* @return bool|void True or no return value to continue or false to abort
|
|
*/
|
|
public function onLinksUpdate( $linksUpdate );
|
|
}
|