3 namespace MediaWiki\Page\Hook
;
6 use MediaWiki\Output\OutputPage
;
9 * This is a hook handler interface, see docs/Hooks.md.
10 * Use the hook name "ImageOpenShowImageInlineBefore" to register handlers implementing this interface.
12 * @stable to implement
15 interface ImageOpenShowImageInlineBeforeHook
{
17 * This hook is called just before showing the image on an image page.
21 * @param ImagePage $imagePage ImagePage object ($this)
22 * @param OutputPage $output $wgOut
23 * @return bool|void True or no return value to continue or false to abort
25 public function onImageOpenShowImageInlineBefore( $imagePage, $output );