You are here

function imagecache_autorotate_disable in ImageCache Actions 6.2

Same name and namespace in other branches
  1. 6 imagecache_autorotate.install \imagecache_autorotate_disable()

File

autorotate/imagecache_autorotate.install, line 12
Ensure Imagecache recognises our new actions, per http://drupal.org/node/290101.

Code

function imagecache_autorotate_disable() {
  if (function_exists('imagecache_action_definitions')) {
    imagecache_action_definitions(TRUE);
  }
  cache_clear_all('imagecache_actions', 'cache');
}