3 namespace MediaWiki\Hook
;
5 use MediaWiki\Title\Title
;
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
15 interface SkinPreloadExistenceHook
{
17 * Use this hook to supply titles that should be added to link existence
18 * cache before the page is rendered.
22 * @param Title[] &$titles
24 * @return bool|void True or no return value to continue or false to abort
26 public function onSkinPreloadExistence( &$titles, $skin );