You are here

function imce_file_delete in IMCE 6.2

Implementation of hook_file_delete().

File

./imce.module, line 109
Implements the necessary hooks for the file browser to work properly.

Code

function imce_file_delete($file) {
  db_query('DELETE FROM {imce_files} WHERE fid = %d', $file->fid);
}