function media_embed_entity_delete in Media WYSIWYG Embed 7
Implements hook_entity_delete().
File
- includes/
media_embed.file_usage.inc, line 41 - Functions related to the tracking the file usage of embedded media.
Code
function media_embed_entity_delete($entity, $type) {
list($entity_id) = entity_extract_ids($type, $entity);
db_delete('file_usage')
->condition('module', 'media_embed')
->condition('type', $type)
->condition('id', $entity_id)
->execute();
}