blob: 392044da2e83e96452a4190ab361cf9f13559f16 (
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
|
<?php
namespace MediaWiki\ResourceLoader\Hook;
/**
* This is a hook handler interface, see docs/Hooks.md.
* Use the hook name "ResourceLoaderSiteStylesModulePages" to register handlers implementing this interface.
*
* @stable to implement
* @ingroup ResourceLoaderHooks
*/
interface ResourceLoaderSiteStylesModulePagesHook {
/**
* Change which wiki pages comprise the `site.styles` module in given skin.
*
* This hook is called from ResourceLoaderSiteStylesModule.
*
* @since 1.35
* @param string $skin Current skin key
* @param array &$pages Array of pages and their types
* @return void This hook must not abort, it must return no value
*/
public function onResourceLoaderSiteStylesModulePages( $skin, array &$pages ): void;
}
|