< Manual:Hooks
![]() | This deprecated feature should no longer be used, but is still available for reasons of backwards compatibility. This feature was deprecated in version 1.35.0. Please see SkinAfterPortlet for an alternative way to use this feature. |
BaseTemplateAfterPortlet | |
---|---|
Available from version 1.23.0 Occurs whenever a page is rendered and allows to add HTML after portlets have been put out. | |
Define function: | public static function onBaseTemplateAfterPortlet( $template, $portlet, &$html ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"BaseTemplateAfterPortlet": "MyExtensionHooks::onBaseTemplateAfterPortlet"
}
}
|
Called from: | File(s): SkinTemplate.php |
Interface: | BaseTemplateAfterPortletHook.php |
For more information about attaching hooks, see Manual:Hooks
For examples of extensions using this hook, see Category:BaseTemplateAfterPortlet extensions.
After output of portlets, allow injecting custom HTML after the section. Any uses of the hook need to handle escaping.
Details
$template
: An instance ofBaseTemplate
$portlet
: Astring
representing portlet name&$html
: Astring
The HTML code to display. Will be wrapped into a<div>
tag, but apart from that will be output into the page directly. Escape dangerous signs!
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.