protected function LayoutSectionItemListTest::getSectionList in Drupal 9
Same name and namespace in other branches
- 10 core/modules/layout_builder/tests/src/Kernel/LayoutSectionItemListTest.php \Drupal\Tests\layout_builder\Kernel\LayoutSectionItemListTest::getSectionList()
Sets up the section list.
Parameters
array $section_data: An array of section data.
Return value
\Drupal\layout_builder\SectionListInterface The section list.
Overrides SectionListTestBase::getSectionList
File
- core/
modules/ layout_builder/ tests/ src/ Kernel/ LayoutSectionItemListTest.php, line 30
Class
- LayoutSectionItemListTest
- Tests the field type for Layout Sections.
Namespace
Drupal\Tests\layout_builder\KernelCode
protected function getSectionList(array $section_data) {
$this
->installEntitySchema('entity_test_base_field_display');
LayoutBuilderEntityViewDisplay::create([
'targetEntityType' => 'entity_test_base_field_display',
'bundle' => 'entity_test_base_field_display',
'mode' => 'default',
'status' => TRUE,
])
->enableLayoutBuilder()
->setOverridable()
->save();
array_map(function ($row) {
return [
'section' => $row,
];
}, $section_data);
$entity = EntityTestBaseFieldDisplay::create([
'name' => 'The test entity',
OverridesSectionStorage::FIELD_NAME => $section_data,
]);
$entity
->save();
return $entity
->get(OverridesSectionStorage::FIELD_NAME);
}