You are here

function imagecrop_file_delete in Image javascript crop 7

Same name and namespace in other branches
  1. 6 imagecrop.module \imagecrop_file_delete()

Implements hook_file_delete().

File

./imagecrop.module, line 441
Provides a javascript toolbox through an imagecache action.

Code

function imagecrop_file_delete($file) {
  db_delete('image_crop_settings')
    ->condition('fid', $file->fid)
    ->execute();
}