You are here

public function LayoutDefinition::setDefaultRegion in Drupal 8

Same name and namespace in other branches
  1. 9 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 528

Class

LayoutDefinition
Provides an implementation of a layout definition and its metadata.

Namespace

Drupal\Core\Layout

Code

public function setDefaultRegion($default_region) {
  $this->default_region = $default_region;
  return $this;
}