You are here

function fe_paths_usage_delete in File Entity Paths 7.2

Delete a record from the fe_paths_usage table.

Parameters

$fid:

Return value

DatabaseStatementInterface

1 call to fe_paths_usage_delete()
fe_paths_file_delete in ./fe_paths.module
Implements hook_file_delete().

File

./fe_paths.module, line 638
Contains functions for the File Entity Paths module.

Code

function fe_paths_usage_delete($fid) {
  db_delete('fe_paths_usage')
    ->condition('fid', $fid)
    ->execute();
}