1
0

Add as an optional 4th parameter, like in the original gallery_graphics.php. Needed for event hooks.

This commit is contained in:
Mike Miller 2013-01-07 11:00:48 +02:00
parent ce64861e22
commit 6d351d5c4a

View File

@ -25,10 +25,10 @@ class gallery_graphics extends gallery_graphics_Core {
* @param string $output_file
* @param array $options
*/
static function rotate($input_file, $output_file, $options) {
static function rotate($input_file, $output_file, $options, $item=null) {
graphics::init_toolkit();
module::event("graphics_rotate", $input_file, $output_file, $options);
module::event("graphics_rotate", $input_file, $output_file, $options, $item);
// Convert degrees for jpegtran specific format
$jt_degrees = $options["degrees"];
@ -46,6 +46,6 @@ class gallery_graphics extends gallery_graphics_Core {
->save($output_file);
}
module::event("graphics_rotate_completed", $input_file, $output_file, $options);
module::event("graphics_rotate_completed", $input_file, $output_file, $options, $item);
}
}