public function LayoutDefinition::setDefaultRegion in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Layout/LayoutDefinition.php \Drupal\Core\Layout\LayoutDefinition::setDefaultRegion()
Sets the default region.
Parameters
string $default_region: The machine-readable name of the default region.
Return value
$this
File
- core/
lib/ Drupal/ Core/ Layout/ LayoutDefinition.php, line 541
Class
- LayoutDefinition
- Provides an implementation of a layout definition and its metadata.
Namespace
Drupal\Core\LayoutCode
public function setDefaultRegion($default_region) {
$this->default_region = $default_region;
return $this;
}