wiki.techinc.nl/includes/Hook/EditPageBeforeEditToolbarHook.php
Umherirrender 8831b494c1 Use @deprecated annotation on hook interfaces, not functions
Use only one place to document the deprecation of hook
interfaces/functions

Bug: T282903
Change-Id: Ie7d2d7a50afe2897e5c2369f473a33ecaa821637
2021-05-17 23:00:40 +02:00

23 lines
698 B
PHP

<?php
namespace MediaWiki\Hook;
/**
* This is a hook handler interface, see docs/Hooks.md.
* Use the hook name "EditPageBeforeEditToolbar" to register handlers implementing this interface.
*
* @deprecated 1.36 Use one of the many other EditPage hooks instead
* @ingroup Hooks
*/
interface EditPageBeforeEditToolbarHook {
/**
* Use this hook to add an edit toolbar above the textarea in the edit form.
*
* @since 1.35
*
* @param string &$toolbar Toolbar HTML, initially an empty `<div id="toolbar"></div>`
* @return bool|void True or no return value to continue, or false to have
* no toolbar HTML be loaded
*/
public function onEditPageBeforeEditToolbar( &$toolbar );
}