Manual:フック/BaseTemplateToolbox
この機能は、(バージョン 1.35.0 で廃止予定になったあと、) バージョン 1.37.0 で MediaWiki コアから除去されました。 この機能を使用するための代替方法については SidebarBeforeOutput を参照してください。 |
BaseTemplateToolbox | |
---|---|
バージョン 1.18.0 (r77893, codereview) から利用可能 バージョン 1.37.0 (Gerrit change 708593) で除去 Called by BaseTemplate when building the toolbox array and returning it for the skin to output. | |
関数の定義: | public static function onBaseTemplateToolbox( BaseTemplate $baseTemplate, array &$toolbox ) { ... }
|
フックのアタッチ: | extension.json 内:
{
"Hooks": {
"BaseTemplateToolbox": "MediaWiki\\Extension\\MyExtension\\Hooks::onBaseTemplateToolbox"
}
}
|
呼び出し元: | ファイル: SkinTemplate.php |
インターフェイス: | BaseTemplateToolboxHook.php |
フックの設定についての詳細情報は Manual:フック を参照してください。
このフックを使用する拡張機能の例については、Category:BaseTemplateToolbox extensions/ja を参照してください。
This hook was deprecated in MW 1.35, and removed in MW 1.37. In its place, you can use either of the following hooks:
- SkinBuildSidebar - respects caching; only called when a page is recreated
- SidebarBeforeOutput - ignores caching; called on every page load
詳細
You can add items to the toolbox while still letting the skin make final decisions on skin-specific markup conventions using this hook.
- BaseTemplate $baseTemplate - The BaseTemplate base skin template.
- array &$toolbox - An array of toolbox items, see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array.