public function LayoutDefinition::setRegions in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Layout/LayoutDefinition.php \Drupal\Core\Layout\LayoutDefinition::setRegions()
Sets the regions for this layout definition.
Parameters
array[] $regions: An array of regions, see ::getRegions() for the format.
Return value
$this
File
- core/
lib/ Drupal/ Core/ Layout/ LayoutDefinition.php, line 497
Class
- LayoutDefinition
- Provides an implementation of a layout definition and its metadata.
Namespace
Drupal\Core\LayoutCode
public function setRegions(array $regions) {
$this->regions = $regions;
return $this;
}