Same name and namespace in other branches
  1. 8.9.x core/modules/editor/editor.module \editor_entity_revision_delete()
  2. 9 core/modules/editor/editor.module \editor_entity_revision_delete()

Implements hook_entity_revision_delete().

File

core/modules/editor/editor.module, line 432
Adds bindings for client-side "text editors" to text formats.

Code

function editor_entity_revision_delete(EntityInterface $entity) {

  // Only act on content entities.
  if (!$entity instanceof FieldableEntityInterface) {
    return;
  }
  $referenced_files_by_field = _editor_get_file_uuids_by_field($entity);
  foreach ($referenced_files_by_field as $uuids) {
    _editor_delete_file_usage($uuids, $entity, 1);
  }
}