You are here

function imagecache_coloractions_uninstall in ImageCache Actions 6

Same name and namespace in other branches
  1. 5.3 imagecache_coloractions.install \imagecache_coloractions_uninstall()
  2. 5.2 imagecache_coloractions.install \imagecache_coloractions_uninstall()
  3. 6.2 coloractions/imagecache_coloractions.install \imagecache_coloractions_uninstall()

File

./imagecache_coloractions.install, line 15
Set up new color actions. Tell imagecache.module about them

Code

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