function FieldConfigStorageBase::mapFromStorageRecords

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Field/FieldConfigStorageBase.php \Drupal\Core\Field\FieldConfigStorageBase::mapFromStorageRecords()
  2. 8.9.x core/lib/Drupal/Core/Field/FieldConfigStorageBase.php \Drupal\Core\Field\FieldConfigStorageBase::mapFromStorageRecords()
  3. 10 core/lib/Drupal/Core/Field/FieldConfigStorageBase.php \Drupal\Core\Field\FieldConfigStorageBase::mapFromStorageRecords()

Overrides EntityStorageBase::mapFromStorageRecords

File

core/lib/Drupal/Core/Field/FieldConfigStorageBase.php, line 24

Class

FieldConfigStorageBase
Base storage class for field config entities.

Namespace

Drupal\Core\Field

Code

protected function mapFromStorageRecords(array $records) {
    foreach ($records as $id => &$record) {
        try {
            $class = $this->fieldTypeManager
                ->getPluginClass($record['field_type']);
        } catch (PluginNotFoundException $e) {
            $config_id = $this->getPrefix() . $id;
            throw new PluginNotFoundException($record['field_type'], "Unable to determine class for field type '{$record['field_type']}' found in the '{$config_id}' configuration", $e->getCode(), $e);
        }
        $record['settings'] = $class::fieldSettingsFromConfigData($record['settings']);
    }
    return parent::mapFromStorageRecords($records);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.