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