Merge "Bump wikimedia/parsoid to 0.21.0-a11"
[mediawiki.git] / includes / title / Hook / NamespaceIsMovableHook.php
blobbc9178b2d823e35f0fee7059ca8659b26e77a4d4
1 <?php
3 namespace MediaWiki\Hook;
5 /**
6 * This is a hook handler interface, see docs/Hooks.md.
7 * Use the hook name "NamespaceIsMovable" to register handlers implementing this interface.
9 * @stable to implement
10 * @ingroup Hooks
12 interface NamespaceIsMovableHook {
13 /**
14 * This hook is called when determining if it is possible to move pages in a
15 * namespace.
17 * @since 1.35
19 * @param int $index Index of the namespace being checked
20 * @param bool &$result Whether MediaWiki currently thinks that pages in this
21 * namespace are movable. Hooks may change this value to override the return
22 * value of NamespaceInfo::isMovable().
23 * @return bool|void True or no return value to continue or false to abort
25 public function onNamespaceIsMovable( $index, &$result );