X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=web%2Fcore%2Fmodules%2Ffield%2Fsrc%2FFieldUninstallValidator.php;fp=web%2Fcore%2Fmodules%2Ffield%2Fsrc%2FFieldUninstallValidator.php;h=6ee521e002673608e750c370688992c16d73f020;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hp=0000000000000000000000000000000000000000;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad;p=yaffs-website diff --git a/web/core/modules/field/src/FieldUninstallValidator.php b/web/core/modules/field/src/FieldUninstallValidator.php new file mode 100644 index 000000000..6ee521e00 --- /dev/null +++ b/web/core/modules/field/src/FieldUninstallValidator.php @@ -0,0 +1,102 @@ +fieldStorageConfigStorage = $entity_type_manager->getStorage('field_storage_config'); + $this->stringTranslation = $string_translation; + $this->fieldTypeManager = $field_type_manager; + } + + /** + * {@inheritdoc} + */ + public function validate($module) { + $reasons = []; + if ($field_storages = $this->getFieldStoragesByModule($module)) { + // Provide an explanation message (only mention pending deletions if there + // remain no actual, non-deleted fields.) + $fields_in_use = []; + foreach ($field_storages as $field_storage) { + if (!$field_storage->isDeleted()) { + $fields_in_use[$field_storage->getType()][] = $field_storage->getLabel(); + } + } + if (!empty($fields_in_use)) { + foreach ($fields_in_use as $field_type => $field_storages) { + $field_type_label = $this->getFieldTypeLabel($field_type); + $reasons[] = $this->formatPlural(count($fields_in_use[$field_type]), 'The %field_type_label field type is used in the following field: @fields', 'The %field_type_label field type is used in the following fields: @fields', ['%field_type_label' => $field_type_label, '@fields' => implode(', ', $field_storages)]); + } + } + else { + $reasons[] = $this->t('Fields pending deletion'); + } + } + return $reasons; + } + + /** + * Returns all field storages for a specified module. + * + * @param string $module + * The module to filter field storages by. + * + * @return \Drupal\field\FieldStorageConfigInterface[] + * An array of field storages for a specified module. + */ + protected function getFieldStoragesByModule($module) { + return $this->fieldStorageConfigStorage->loadByProperties(['module' => $module, 'include_deleted' => TRUE]); + } + + + /** + * Returns the label for a specified field type. + * + * @param string $field_type + * The field type. + * + * @return string + * The field type label. + */ + protected function getFieldTypeLabel($field_type) { + return $this->fieldTypeManager->getDefinitions()[$field_type]['label']; + } + +}