imagecache_coloractions.install in ImageCache Actions 5.3
Same filename and directory in other branches
File
imagecache_coloractions.installView 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');
}
function imagecache_coloractions_update_3() {
if (function_exists('imagecache_action_definitions')) {
imagecache_action_definitions(TRUE);
}
cache_clear_all('imagecache_actions', 'cache');
return array();
}