You are here

function imagecache_customactions_uninstall in ImageCache Actions 6.2

Same name and namespace in other branches
  1. 6 imagecache_customactions.install \imagecache_customactions_uninstall()

hook_uninstall

File

customactions/imagecache_customactions.install, line 20
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');
}