function SectionListTrait::setSection
Same name in other branches
- 9 core/modules/layout_builder/src/SectionListTrait.php \Drupal\layout_builder\SectionListTrait::setSection()
- 11.x core/modules/layout_builder/src/SectionListTrait.php \Drupal\layout_builder\SectionListTrait::setSection()
Sets the section for the given delta on the display.
Parameters
int $delta: The delta of the section.
\Drupal\layout_builder\Section $section: The layout section.
Return value
$this
1 call to SectionListTrait::setSection()
- SectionListTrait::appendSection in core/
modules/ layout_builder/ src/ SectionListTrait.php
File
-
core/
modules/ layout_builder/ src/ SectionListTrait.php, line 58
Class
- SectionListTrait
- Provides a trait for maintaining a list of sections.
Namespace
Drupal\layout_builderCode
protected function setSection($delta, Section $section) {
$sections = $this->getSections();
$sections[$delta] = $section;
$this->setSections($sections);
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.