You are here

function imagecache_customactions_uninstall in ImageCache Actions 6

Same name and namespace in other branches
  1. 6.2 customactions/imagecache_customactions.install \imagecache_customactions_uninstall()

File

./imagecache_customactions.install, line 15
Set up new custom actions. Tell imagecache.module about them

Code

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