hook_entity_predelete(Drupal\Core\Entity\EntityInterface $entity)
Act before entity deletion.
\Drupal\Core\Entity\EntityInterface $entity: The entity object for the entity that is about to be deleted.
function hook_entity_predelete(Drupal\Core\Entity\EntityInterface $entity) {
// Count references to this entity in a custom table before they are removed
// upon entity deletion.
$id = $entity->id();
$type = $entity->getEntityTypeId();
$count = db_select('example_entity_data')
->condition('type', $type)
->condition('id', $id)
->countQuery()
->execute()
->fetchField();
// Log the count in a table that records this statistic for deleted entities.
db_merge('example_deleted_entity_statistics')
->key(array('type' => $type, 'id' => $id))
->fields(array('count' => $count))
->execute();
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!entity.api.php/function/hook_entity_predelete/8.1.x