LayoutBuilderEntityViewDisplayStorage.php in Drupal 10
File
core/modules/layout_builder/src/Entity/LayoutBuilderEntityViewDisplayStorage.php
View source
<?php
namespace Drupal\layout_builder\Entity;
use Drupal\Core\Config\Entity\ConfigEntityStorage;
use Drupal\Core\Entity\EntityInterface;
use Drupal\layout_builder\Section;
class LayoutBuilderEntityViewDisplayStorage extends ConfigEntityStorage {
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;
}
protected function mapFromStorageRecords(array $records) {
foreach ($records as &$record) {
if (!empty($record['third_party_settings']['layout_builder']['sections'])) {
$sections =& $record['third_party_settings']['layout_builder']['sections'];
$sections = array_map([
Section::class,
'fromArray',
], $sections);
}
}
return parent::mapFromStorageRecords($records);
}
}