function feeds_entity_insert in Feeds 7.2
Same name and namespace in other branches
- 8.2 feeds.module \feeds_entity_insert()
Implements hook_entity_insert().
Related topics
File
- ./
feeds.module, line 670 - Feeds - basic API functions and hook implementations.
Code
function feeds_entity_insert($entity, $type) {
list($id) = entity_extract_ids($type, $entity);
feeds_item_info_insert($entity, $id);
}