function feed_import_entity_delete in Feed Import 7.2
Same name and namespace in other branches
- 7 feed_import.module \feed_import_entity_delete()
Implements hook_entity_delete().
File
- ./
feed_import.module, line 306 - User interface, cron functions for feed_import module
Code
function feed_import_entity_delete($entity, $type) {
$info = FeedImport::getEntityInfo($type);
$id = $entity->{$info['column']};
if ($id && is_numeric($id)) {
feed_import_add_to_delete($id, $type);
}
}