function imagecache_autorotate_theme in ImageCache Actions 7
Same name and namespace in other branches
- 8 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,
      ),
    ),
  );
}