72e06d8e1cc380810a92762c9917c8e0b8d45a7e
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / ENTITY_TYPE_delete.twig
1 /**
2  * Implements hook_ENTITY_TYPE_delete().
3  */
4 function {{ machine_name }}_ENTITY_TYPE_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 }