function exif_custom_entity_presave in EXIF Custom 7
Implements hook_entity_presave().
File
- ./
exif_custom.module, line 136 - Primary hook implementations for EXIF Custom.
Code
function exif_custom_entity_presave($entity, $entity_type) {
if ($entity_type == 'file') {
exif_custom_process_entity($entity);
}
}