public function SectionListTrait::appendSection in Drupal 10
Same name and namespace in other branches
- 9 core/modules/layout_builder/src/SectionListTrait.php \Drupal\layout_builder\SectionListTrait::appendSection()
1 call to SectionListTrait::appendSection()
- LayoutBuilderEntityViewDisplay::getDefaultSection in core/
modules/ layout_builder/ src/ Entity/ LayoutBuilderEntityViewDisplay.php - Gets a default section.
File
- core/
modules/ layout_builder/ src/ SectionListTrait.php, line 68
Class
- SectionListTrait
- Provides a trait for maintaining a list of sections.
Namespace
Drupal\layout_builderCode
public function appendSection(Section $section) {
$delta = $this
->count();
$this
->setSection($delta, $section);
return $this;
}