28 lines
678 B
PHP
28 lines
678 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Hook;
|
|
|
|
use MediaWiki\Specials\SpecialMovePage;
|
|
use MediaWiki\Title\Title;
|
|
|
|
/**
|
|
* This is a hook handler interface, see docs/Hooks.md.
|
|
* Use the hook name "SpecialMovepageAfterMove" to register handlers implementing this interface.
|
|
*
|
|
* @stable to implement
|
|
* @ingroup Hooks
|
|
*/
|
|
interface SpecialMovepageAfterMoveHook {
|
|
/**
|
|
* This hook is called after moving a page.
|
|
*
|
|
* @since 1.35
|
|
*
|
|
* @param SpecialMovePage $movePage
|
|
* @param Title $oldTitle
|
|
* @param Title $newTitle
|
|
* @return bool|void True or no return value to continue or false to abort
|
|
*/
|
|
public function onSpecialMovepageAfterMove( $movePage, $oldTitle, $newTitle );
|
|
}
|