Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / entity_revision_delete.twig
1 /**
2  * Implements hook_entity_revision_delete().
3  */
4 function {{ machine_name }}_entity_revision_delete(Drupal\Core\Entity\EntityInterface $entity) {
5   $referenced_files_by_field = _editor_get_file_uuids_by_field($entity);
6   foreach ($referenced_files_by_field as $field => $uuids) {
7     _editor_delete_file_usage($uuids, $entity, 1);
8   }
9 }