Manual:Hooks/SkinAfterContent/pl
Appearance
SkinAfterContent | |
---|---|
Dostępne od wersji version 1.14.0 Allows extensions to add text after the page content and article metadata. | |
Zdefiniuj funkcję: | public static function onSkinAfterContent( &$data, Skin $skin ) { ... }
|
Dołącz hak: | W extension.json:
{
"Hooks": {
"SkinAfterContent": "MediaWiki\\Extension\\MyExtension\\Hooks::onSkinAfterContent"
}
}
|
Called from: | Plik(i): skins/Skin.php |
Interface: | SkinAfterContentHook.php |
For more information about attaching hooks, see Podręcznik:Haki .
For examples of extensions using this hook, see Category:SkinAfterContent extensions/pl.
Szczegóły
- &$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.