hook_ENTITY_TYPE_revision_delete(Drupal\Core\Entity\EntityInterface $entity)
Respond to entity revision deletion of a particular type.
This hook runs once the entity revision has been deleted from the storage.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity object for the entity revision 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 1257
- Hooks and documentation related to entities.
Code
function hook_ENTITY_TYPE_revision_delete(Drupal\Core\Entity\EntityInterface $entity) { $referenced_files_by_field = _editor_get_file_uuids_by_field($entity); foreach ($referenced_files_by_field as $field => $uuids) { _editor_delete_file_usage($uuids, $entity, 1); } }
Please login to continue.