function editor_entity_delete
Same name in other branches
- 9 core/modules/editor/editor.module \editor_entity_delete()
- 10 core/modules/editor/editor.module \editor_entity_delete()
Implements hook_entity_delete().
File
-
core/
modules/ editor/ editor.module, line 419
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);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.