82c01594d21650ba439a866dbc3c3aa0e2076a2d
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / entity_delete.twig
1 /**
2  * Implements hook_entity_delete().
3  */
4 function {{ machine_name }}_entity_delete($entity, $type) {
5   // Delete the entity's entry from a fictional table of all entities.
6   $info = entity_get_info($type);
7   list($id) = entity_extract_ids($type, $entity);
8   db_delete('example_entity')
9     ->condition('type', $type)
10     ->condition('id', $id)
11     ->execute();
12 }