You are here

function imagecache_uninstall in ImageCache 6.2

Same name and namespace in other branches
  1. 5.2 imagecache.install \imagecache_uninstall()
  2. 5 imagecache.install \imagecache_uninstall()

Implementation of hook_uninstall().

File

./imagecache.install, line 126

Code

function imagecache_uninstall() {

  // Remove any cached images.
  $path = file_directory_path() . '/imagecache/';
  if (is_dir($path)) {
    _imagecache_recursive_delete($path);
  }
  drupal_uninstall_schema('imagecache');
}