Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 11 |
FieldConfigStorageBase | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
12 | |
0.00% |
0 / 11 |
mapFromStorageRecords | |
0.00% |
0 / 1 |
6 | |
0.00% |
0 / 6 |
|||
mapToStorageRecord | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 5 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\Field\FieldConfigStorageBase. | |
*/ | |
namespace Drupal\Core\Field; | |
use Drupal\Core\Config\Entity\ConfigEntityStorage; | |
use Drupal\Core\Entity\EntityInterface; | |
/** | |
* Base storage class for field config entities. | |
*/ | |
abstract class FieldConfigStorageBase extends ConfigEntityStorage { | |
/** | |
* The field type plugin manager. | |
* | |
* @var \Drupal\Core\Field\FieldTypePluginManagerInterface | |
*/ | |
protected $fieldTypeManager; | |
/** | |
* {@inheritdoc} | |
*/ | |
protected function mapFromStorageRecords(array $records) { | |
foreach ($records as &$record) { | |
$class = $this->fieldTypeManager->getPluginClass($record['field_type']); | |
$record['settings'] = $class::fieldSettingsFromConfigData($record['settings']); | |
} | |
return parent::mapFromStorageRecords($records); | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
protected function mapToStorageRecord(EntityInterface $entity) { | |
$record = parent::mapToStorageRecord($entity); | |
$class = $this->fieldTypeManager->getPluginClass($record['field_type']); | |
$record['settings'] = $class::fieldSettingsToConfigData($record['settings']); | |
return $record; | |
} | |
} |