Merge ".mailmap: Correct two contributor names"
[mediawiki.git] / includes / page / Hook / ImageOpenShowImageInlineBeforeHook.php
blob9dbab124cd9c4bc27cf1db9563e79de4ec3d2a19
1 <?php
3 namespace MediaWiki\Page\Hook;
5 use ImagePage;
6 use MediaWiki\Output\OutputPage;
8 /**
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
13 * @ingroup Hooks
15 interface ImageOpenShowImageInlineBeforeHook {
16 /**
17 * This hook is called just before showing the image on an image page.
19 * @since 1.35
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 );