function ImageHooks::fieldConfigDelete
Implements hook_ENTITY_TYPE_delete() for 'field_config'.
File
-
core/
modules/ image/ src/ Hook/ ImageHooks.php, line 364
Class
- ImageHooks
- Hook implementations for image.
Namespace
Drupal\image\HookCode
public function fieldConfigDelete(FieldConfigInterface $field) {
$field_storage = $field->getFieldStorageDefinition();
if ($field_storage->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'];
// Remove the default image when the instance is deleted.
if ($uuid && ($file = \Drupal::service('entity.repository')->loadEntityByUuid('file', $uuid))) {
\Drupal::service('file.usage')->delete($file, 'image', 'default_image', $field->uuid());
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.