26 lines
612 B
PHP
26 lines
612 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Hook;
|
|
|
|
use Skin;
|
|
|
|
/**
|
|
* This is a hook handler interface, see docs/Hooks.md.
|
|
* Use the hook name "SkinBuildSidebar" to register handlers implementing this interface.
|
|
*
|
|
* @stable to implement
|
|
* @ingroup Hooks
|
|
*/
|
|
interface SkinBuildSidebarHook {
|
|
/**
|
|
* This hook is called at the end of Skin::buildSidebar().
|
|
*
|
|
* @since 1.35
|
|
*
|
|
* @param Skin $skin
|
|
* @param array &$bar Sidebar contents. Modify $bar to add or modify sidebar portlets.
|
|
* @return bool|void True or no return value to continue or false to abort
|
|
*/
|
|
public function onSkinBuildSidebar( $skin, &$bar );
|
|
}
|