Update git submodules
[mediawiki.git] / includes / Hook / EditFormPreloadTextHook.php
blobebdea88d4ac61d02ea36499a47fa6bb12472b30a
1 <?php
3 namespace MediaWiki\Hook;
5 use MediaWiki\Title\Title;
7 /**
8 * This is a hook handler interface, see docs/Hooks.md.
9 * Use the hook name "EditFormPreloadText" to register handlers implementing this interface.
11 * @stable to implement
12 * @ingroup Hooks
14 interface EditFormPreloadTextHook {
15 /**
16 * Use this hook to populate the edit form when creating pages.
18 * @since 1.35
20 * @param string &$text Text to preload with
21 * @param Title $title Page being created
22 * @return bool|void True or no return value to continue or false to abort
24 public function onEditFormPreloadText( &$text, $title );