e8f3ddfe7ecd9c0dd5040d038a38c85dfa5a5749
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / entity_delete.twig
1 /**
2  * Implements hook_entity_delete().
3  */
4 function {{ machine_name }}_entity_delete(Drupal\Core\Entity\EntityInterface $entity) {
5   // Delete the entity's entry from a fictional table of all entities.
6   db_delete('example_entity')
7     ->condition('type', $entity->getEntityTypeId())
8     ->condition('id', $entity->id())
9     ->execute();
10 }