Manual:Hooks/BaseTemplateToolbox/de
Appearance
Diese Funktion wurde in der Version 1.37.0 aus dem MediaWiki-Kern entfernt (nachdem sie seit 1.35.0 veraltet war). Auf SidebarBeforeOutput findet sich eine alternative Möglichkeit, diese Funktion zu nutzen. |
BaseTemplateToolbox | |
---|---|
Erhältlich ab Version 1.18.0 (r77893, codereview) Entfernt in Version 1.37.0 (Gerrit change 708593) Called by BaseTemplate when building the toolbox array and returning it for the skin to output. | |
Funktion definieren: | public static function onBaseTemplateToolbox( BaseTemplate $baseTemplate, array &$toolbox ) { ... }
|
Haken anbringen: | In extension.json:
{
"Hooks": {
"BaseTemplateToolbox": "MediaWiki\\Extension\\MyExtension\\Hooks::onBaseTemplateToolbox"
}
}
|
Angerufen von: | Datei(en): SkinTemplate.php |
Interface: | BaseTemplateToolboxHook.php |
For more information about attaching hooks, see Handbuch:Hooks .
For examples of extensions using this hook, see Category:BaseTemplateToolbox extensions/de.
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
Details
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.