blob: a1ce821a240479f5116ee3a5df635d461e40edf6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?php
namespace MediaWiki\Hook;
// phpcs:disable Squiz.Classes.ValidClassName.NotCamelCaps
use MediaWiki\Skin\SkinTemplate;
/**
* This is a hook handler interface, see docs/Hooks.md.
* Use the hook name "SkinTemplateNavigation::Universal" to register handlers implementing this interface.
*
* @stable to implement
* @ingroup Hooks
*/
interface SkinTemplateNavigation__UniversalHook {
/**
* This hook is called on both content and special pages
* after variants have been added.
*
* @since 1.35
*
* @param SkinTemplate $sktemplate
* @param array &$links Structured navigation links. This is used to alter the navigation for
* skins which use buildNavigationUrls such as Vector.
* @return void This hook must not abort, it must return no value
*/
public function onSkinTemplateNavigation__Universal( $sktemplate, &$links ): void;
}
|