You are here

smartcrop.install in Smart Crop 6

Same filename and directory in other branches
  1. 7 smartcrop.install

Install file for smartcrop module

File

smartcrop.install
View source
<?php

/**
 * @file
 * Install file for smartcrop module
 */

/*
 * Implementation of hook_enable().
 */
function smartcrop_enable() {
  cache_clear_all('imagecache_actions', 'cache');
}

/**
 * Implementation of hook_disable().
 */
function smartcrop_disable() {
  cache_clear_all('imagecache_actions', 'cache');
}

Functions

Namesort descending Description
smartcrop_disable Implementation of hook_disable().
smartcrop_enable