function FieldConfigStorageBase::mapFromStorageRecords
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Field/FieldConfigStorageBase.php \Drupal\Core\Field\FieldConfigStorageBase::mapFromStorageRecords()
- 10 core/lib/Drupal/Core/Field/FieldConfigStorageBase.php \Drupal\Core\Field\FieldConfigStorageBase::mapFromStorageRecords()
- 11.x 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\FieldCode
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.