You are here

function image_resize_filter_file_delete in Image Resize Filter 6

Same name and namespace in other branches
  1. 7 image_resize_filter.module \image_resize_filter_file_delete()

Implementation of hook_file_delete().

File

./image_resize_filter.module, line 86
image_resize_filter.module

Code

function image_resize_filter_file_delete($file) {
  if (isset($file->filepath)) {
    image_resize_filter_delete_derivatives($file->filepath);
  }
}