W3cubDocs

/Drupal 8

function editor_entity_delete

editor_entity_delete(EntityInterface $entity)

Implements hook_entity_delete().

File

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

Code

function editor_entity_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 $field => $uuids) {
    _editor_delete_file_usage($uuids, $entity, 0);
  }
}

© 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!modules!editor!editor.module/function/editor_entity_delete/8.1.x