W3cubDocs

/Drupal 8

function image_field_storage_config_delete

image_field_storage_config_delete(FieldStorageConfigInterface $field)

Implements hook_ENTITY_TYPE_delete() for 'field_storage_config'.

File

core/modules/image/image.module, line 455
Exposes global functionality for creating image styles.

Code

function image_field_storage_config_delete(FieldStorageConfigInterface $field) {
  if ($field->getType() != 'image') {
    // Only act on image fields.
    return;
  }

  // The value of a managed_file element can be an array if #extended == TRUE.
  $uuid = $field->getSetting('default_image')['uuid'];
  if ($uuid && ($file = \Drupal::entityManager()->loadEntityByUuid('file', $uuid))) {
    \Drupal::service('file.usage')->delete($file, 'image', 'default_image', $field->uuid());
  }
}

© 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!image!image.module/function/image_field_storage_config_delete/8.1.x