< Manual:Hooks
SkinAfterContent | |
---|---|
Available from version 1.14.0 Allows extensions to add text after the page content and article metadata. | |
Define function: | public static function onSkinAfterContent( &$data, Skin $skin ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"SkinAfterContent": "MyExtensionHooks::onSkinAfterContent"
}
}
|
Called from: | File(s): skins/Skin.php |
Interface: | SkinAfterContentHook.php |
For more information about attaching hooks, see Manual:Hooks
For examples of extensions using this hook, see Category:SkinAfterContent extensions.
Details
- &$data: ( string) Text to be printed out directly (without parsing)
- $skin: (skin) Skin object
This hook should work in all skins. Just set the &$data variable to the text you're going to add.
See also
- BeforePageDisplay
- ArticleViewHeader
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.