Your IP : 216.73.216.54


Current Path : /var/www/html/mediawiki-1.43.1/includes/deferred/Hook/
Upload File :
Current File : /var/www/html/mediawiki-1.43.1/includes/deferred/Hook/LinksUpdateHook.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 );
}