v1/vendor/chi-teck/drupal-code-generator/templates/hook/entity_delete.twig

11 lines
360 B
Twig

/**
* Implements hook_entity_delete().
*/
function {{ machine_name }}_entity_delete(\Drupal\Core\Entity\EntityInterface $entity) {
// Delete the entity's entry from a fictional table of all entities.
\Drupal::database()->delete('example_entity')
->condition('type', $entity->getEntityTypeId())
->condition('id', $entity->id())
->execute();
}