forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
11 lines
360 B
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();
|
|
}
|