function entity_test_entity_delete in Entity API 7
Implements hook_entity_delete().
File
- tests/
entity_test.module, line 199 - Test module for the entity API.
Code
function entity_test_entity_delete($entity, $entity_type) {
if ($entity_type == 'entity_test_type') {
$_SESSION['entity_hook_test']['entity_delete'][] = entity_id($entity_type, $entity);
}
}