hook_entity_delete(Drupal\Core\Entity\EntityInterface $entity)
Respond to entity deletion.
This hook runs once the entity has been deleted from the storage.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity object for the entity that has been deleted.
See also
Related topics
- Entity CRUD, editing, and view hooks
 - Hooks used in various entity operations.
 - Hooks
 - Define functions that alter the behavior of Drupal core.
 
File
- core/lib/Drupal/Core/Entity/entity.api.php, line 1201
 - Hooks and documentation related to entities.
 
Code
function hook_entity_delete(Drupal\Core\Entity\EntityInterface $entity) {
  // Delete the entity's entry from a fictional table of all entities.
  db_delete('example_entity')
    ->condition('type', $entity->getEntityTypeId())
    ->condition('id', $entity->id())
    ->execute();
}
Please login to continue.