You are here

imagecache_textactions.install in ImageCache Actions 5.3

Same filename and directory in other branches
  1. 5.2 imagecache_textactions.install
  2. 6 imagecache_textactions.install

File

imagecache_textactions.install
View 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');
}