You are here

public function LayoutDefinition::setPath in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Layout/LayoutDefinition.php \Drupal\Core\Layout\LayoutDefinition::setPath()
  2. 10 core/lib/Drupal/Core/Layout/LayoutDefinition.php \Drupal\Core\Layout\LayoutDefinition::setPath()

Sets the base path for this layout definition.

Parameters

string $path: The base path.

Return value

$this

File

core/lib/Drupal/Core/Layout/LayoutDefinition.php, line 332

Class

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

Namespace

Drupal\Core\Layout

Code

public function setPath($path) {
  $this->path = $path;
  return $this;
}