You are here

protected function SectionListTrait::hasSection in Drupal 10

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/src/SectionListTrait.php \Drupal\layout_builder\SectionListTrait::hasSection()

Indicates if there is a section at the specified delta.

Parameters

int $delta: The delta of the section.

Return value

bool TRUE if there is a section for this delta, FALSE otherwise.

2 calls to SectionListTrait::hasSection()
LayoutBuilderEntityViewDisplay::getDefaultRegion in core/modules/layout_builder/src/Entity/LayoutBuilderEntityViewDisplay.php
Gets the default region.
LayoutBuilderEntityViewDisplay::getDefaultSection in core/modules/layout_builder/src/Entity/LayoutBuilderEntityViewDisplay.php
Gets a default section.

File

core/modules/layout_builder/src/SectionListTrait.php, line 169

Class

SectionListTrait
Provides a trait for maintaining a list of sections.

Namespace

Drupal\layout_builder

Code

protected function hasSection($delta) {
  return isset($this
    ->getSections()[$delta]);
}