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