< Manual:Hooks
SkinAfterPortlet
Available from version 1.35.0
Occurs whenever a page is rendered and allows to add HTML after portlets have been put out.
Define function:
public static function onSkinAfterPortlet( $skin, $portletName, &$html ) { ... }
Attach hook: In extension.json:
{
	"Hooks": {
		"SkinAfterPortlet": "MyExtensionHooks::onSkinAfterPortlet"
	}
}
Called from: File(s): skins/Skin.php
Interface: SkinAfterPortletHook.php

For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:SkinAfterPortlet extensions.

After output of portlets, allow injecting custom HTML after the section. Any uses of the hook need to handle escaping. Note that if portlet is empty and $html is non empty, the portlet will be rendered.

Details

  • $skin Skin
  • $portletName: string portlet name
  • &$html: string 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.