You are here

function simplecrop_file_delete in SimpleCrop 7

Implements hook_file_delete().

File

./simplecrop.module, line 93
Contains main hook definitions for SimpleCrop module.

Code

function simplecrop_file_delete($file) {

  // Delete crop info on file deletion.
  if (!empty($file->uri)) {
    simplecrop_crop_delete($file->uri);
  }
}