< Manual:Hooks
OutputPageBodyAttributes | |
---|---|
Available from version 1.17.0 Called when OutputPage::headElement() is creating the body tag. | |
Define function: | public static function onOutputPageBodyAttributes( OutputPage $out, Skin $skin, &$bodyAttrs ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"OutputPageBodyAttributes": "MyExtensionHooks::onOutputPageBodyAttributes"
}
}
|
Called from: | File(s): OutputPage.php |
Interface: | OutputPageBodyAttributesHook.php |
For more information about attaching hooks, see Manual:Hooks
For examples of extensions using this hook, see Category:OutputPageBodyAttributes extensions.
Details
Allows extensions to add attributes to the body of the page they might need. Or to allow building extensions to add body classes that aren't of high enough demand to be included in core.
- $out: The OutputPage which called the hook, can be used to get the real title
- $skin: The Skin that called OutputPage::headElement
- &$bodyAttrs: An array of attributes for the body tag passed to Html::openElement
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.