Merge ".mailmap: Correct two contributor names"
[mediawiki.git] / includes / page / Hook / ImagePageAfterImageLinksHook.php
blobe6a691388e865ad46698b2d15ae73b38355f58c9
1 <?php
3 namespace MediaWiki\Page\Hook;
5 use ImagePage;
7 /**
8 * This is a hook handler interface, see docs/Hooks.md.
9 * Use the hook name "ImagePageAfterImageLinks" to register handlers implementing this interface.
11 * @stable to implement
12 * @ingroup Hooks
14 interface ImagePageAfterImageLinksHook {
15 /**
16 * This hook is called after the image links section on an image
17 * page is built.
19 * @since 1.35
21 * @param ImagePage $imagePage ImagePage object ($this)
22 * @param string &$html HTML for the hook to add
23 * @return bool|void True or no return value to continue or false to abort
25 public function onImagePageAfterImageLinks( $imagePage, &$html );