You are here

protected function LayoutBuilderEntityViewDisplayTest::getSectionList in Drupal 9

Same name and namespace in other branches
  1. 10 core/modules/layout_builder/tests/src/Kernel/LayoutBuilderEntityViewDisplayTest.php \Drupal\Tests\layout_builder\Kernel\LayoutBuilderEntityViewDisplayTest::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/LayoutBuilderEntityViewDisplayTest.php, line 18

Class

LayoutBuilderEntityViewDisplayTest
@coversDefaultClass \Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplay

Namespace

Drupal\Tests\layout_builder\Kernel

Code

protected function getSectionList(array $section_data) {
  $display = LayoutBuilderEntityViewDisplay::create([
    'targetEntityType' => 'entity_test',
    'bundle' => 'entity_test',
    'mode' => 'default',
    'status' => TRUE,
    'third_party_settings' => [
      'layout_builder' => [
        'enabled' => TRUE,
        'sections' => $section_data,
      ],
    ],
  ]);
  $display
    ->save();
  return $display;
}