imagecache_canvasactions.install in ImageCache Actions 5.3
Same filename and directory in other branches
File
imagecache_canvasactions.installView source
<?php
function imagecache_canvasactions_install() {
if (function_exists('imagecache_action_definitions')) {
imagecache_action_definitions(TRUE);
}
cache_clear_all('imagecache_actions', 'cache');
}
function imagecache_canvasactions_uninstall() {
if (function_exists('imagecache_action_definitions')) {
imagecache_action_definitions(TRUE);
}
cache_clear_all('imagecache_actions', 'cache');
}