FieldUninstallValidator.php in Drupal 10
File
core/modules/field/src/FieldUninstallValidator.php
View source
<?php
namespace Drupal\field;
use Drupal\Core\Config\StorageInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Extension\ConfigImportModuleUninstallValidatorInterface;
use Drupal\Core\Field\FieldTypePluginManagerInterface;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\Core\StringTranslation\TranslationInterface;
class FieldUninstallValidator implements ConfigImportModuleUninstallValidatorInterface {
use StringTranslationTrait;
protected $fieldStorageConfigStorage;
protected $fieldTypeManager;
public function __construct(EntityTypeManagerInterface $entity_type_manager, TranslationInterface $string_translation, FieldTypePluginManagerInterface $field_type_manager) {
$this->fieldStorageConfigStorage = $entity_type_manager
->getStorage('field_storage_config');
$this->stringTranslation = $string_translation;
$this->fieldTypeManager = $field_type_manager;
}
public function validate($module) {
$reasons = [];
if ($field_storages = $this
->getFieldStoragesByModule($module)) {
$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;
}
public function validateConfigImport(string $module, StorageInterface $source_storage) : array {
return [];
}
protected function getFieldStoragesByModule($module) {
return $this->fieldStorageConfigStorage
->loadByProperties([
'module' => $module,
'include_deleted' => TRUE,
]);
}
protected function getFieldTypeLabel($field_type) {
return $this->fieldTypeManager
->getDefinitions()[$field_type]['label'];
}
}