< Manual:Hooks 
  
        
      | ImagePageFileHistoryLine | |
|---|---|
| Available from version 1.13.0 Called when a file history line is constructed.  | |
| Define function: | public static function onImagePageFileHistoryLine( $imagepage, $file, $line, $css ) { ... }
 | 
| Attach hook: | In extension.json:
{
	"Hooks": {
		"ImagePageFileHistoryLine": "MyExtensionHooks::onImagePageFileHistoryLine"
	}
}
 | 
| Called from: | File(s): page/ImagePage.php | 
| Interface: | ImagePageFileHistoryLineHook.php | 
For more information about attaching hooks, see Manual:Hooks.
For examples of extensions using this hook, see Category:ImagePageFileHistoryLine extensions.
Details
- $imagepage: an instance of ImagePage object
 - $file: the file
 - $line: the HTML of the history line
 - $css: the line CSS class
 
    This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.