You are here

imagecache_coloractions.install in ImageCache Actions 5.2

Same filename and directory in other branches
  1. 5.3 imagecache_coloractions.install
  2. 6 imagecache_coloractions.install

File

imagecache_coloractions.install
View source
<?php

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