Manual:フック/BaseTemplateToolbox

This page is a translated version of the page Manual:Hooks/BaseTemplateToolbox and the translation is 33% complete.
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:

詳細

You can add items to the toolbox while still letting the skin make final decisions on skin-specific markup conventions using this hook.