3 namespace MediaWiki\Page\Hook
;
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
14 interface ImagePageAfterImageLinksHook
{
16 * This hook is called after the image links section on an image
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 );