Manual:Hooks/ImageOpenShowImageInlineBefore
From MediaWiki.org
ImageOpenShowImageInlineBefore | |
---|---|
Available from version 1.11.0 Fired just before showing the image on an image page. |
|
Define function: |
public static function onImageOpenShowImageInlineBefore( $imagepage, $out ) { ... } |
Attach hook: |
$wgHooks['ImageOpenShowImageInlineBefore'][] = 'MyExtensionHooks::onImageOpenShowImageInlineBefore'; |
Called from: | ImagePage.php |
For more information about attaching hooks, see Manual:Hooks.
For examples of extensions using this hook, see Category:ImageOpenShowImageInlineBefore extensions.
[edit] Details
$imagepage - The ImagePage object.
$out - The OutputPage object.