function getid3_file_update in getID3() 7
Implements hook_file_update().
File
- ./
getid3.module, line 210
Code
function getid3_file_update($file) {
// Since we can't be sure a record will exist to update, rather than check,
// just delete the existing row and recreate it.
getid3_file_delete($file);
getid3_file_insert($file);
}