function imagecache_autorotate_theme in ImageCache Actions 8
Same name and namespace in other branches
- 7 autorotate/imagecache_autorotate.module \imagecache_autorotate_theme()
Implements hook_theme().
Registers theme functions for the effect summaries.
File
- autorotate/
imagecache_autorotate.module, line 37 - Autorotate image based on EXIF Orientation tag.
Code
function imagecache_autorotate_theme() {
return array(
'imagecache_autorotate_summary' => array(
'variables' => array(
'data' => NULL,
),
),
);
}