protected function LayoutBuilderEntityViewDisplayStorage::mapToStorageRecord in Drupal 8
Same name and namespace in other branches
- 9 core/modules/layout_builder/src/Entity/LayoutBuilderEntityViewDisplayStorage.php \Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplayStorage::mapToStorageRecord()
Maps from an entity object to the storage record.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity object.
Return value
array The record to store.
Overrides ConfigEntityStorage::mapToStorageRecord
File
- core/
modules/ layout_builder/ src/ Entity/ LayoutBuilderEntityViewDisplayStorage.php, line 20
Class
- LayoutBuilderEntityViewDisplayStorage
- Provides storage for entity view display entities that have layouts.
Namespace
Drupal\layout_builder\EntityCode
protected function mapToStorageRecord(EntityInterface $entity) {
$record = parent::mapToStorageRecord($entity);
if (!empty($record['third_party_settings']['layout_builder']['sections'])) {
$record['third_party_settings']['layout_builder']['sections'] = array_map(function (Section $section) {
return $section
->toArray();
}, $record['third_party_settings']['layout_builder']['sections']);
}
return $record;
}