Merge "mediawiki.api: Remove console warning for legacy token type"
[mediawiki.git] / includes / skins / Hook / SkinPreloadExistenceHook.php
blobed0390d384da7e1adc5ffb02901cf93b42cc6410
1 <?php
3 namespace MediaWiki\Hook;
5 use MediaWiki\Title\Title;
6 use Skin;
8 /**
9 * This is a hook handler interface, see docs/Hooks.md.
10 * Use the hook name "SkinPreloadExistence" to register handlers implementing this interface.
12 * @stable to implement
13 * @ingroup Hooks
15 interface SkinPreloadExistenceHook {
16 /**
17 * Use this hook to supply titles that should be added to link existence
18 * cache before the page is rendered.
20 * @since 1.35
22 * @param Title[] &$titles
23 * @param Skin $skin
24 * @return bool|void True or no return value to continue or false to abort
26 public function onSkinPreloadExistence( &$titles, $skin );