wiki.techinc.nl/includes/ResourceLoader/Hook/ResourceLoaderSiteModulePagesHook.php
Timo Tijhof 85892edce5 resourceloader: Minor doc changes following PSR-4 namepace change
Follows Id08a220e1d60 (after I92998ae6a82e).

Change-Id: I33d20201bfee4595baa39c01eaf8b7de6034a8ed
2022-05-29 16:41:19 +00:00

24 lines
737 B
PHP

<?php
namespace MediaWiki\ResourceLoader\Hook;
/**
* This is a hook handler interface, see docs/Hooks.md.
* Use the hook name "ResourceLoaderSiteModulePages" to register handlers implementing this interface.
*
* @stable to implement
* @ingroup ResourceLoaderHooks
*/
interface ResourceLoaderSiteModulePagesHook {
/**
* Change which wiki pages comprise the `site` module in given skin.
*
* This hook is called from MediaWiki\ResourceLoader\SiteModule.
*
* @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 onResourceLoaderSiteModulePages( $skin, array &$pages ): void;
}