You are here

public function LayoutDefinition::setLabel in Drupal 10

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

Sets the human-readable name of the layout definition.

Parameters

string|\Drupal\Core\StringTranslation\TranslatableMarkup $label: The human-readable name of the layout definition.

Return value

$this

File

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

Class

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

Namespace

Drupal\Core\Layout

Code

public function setLabel($label) {
  $this->label = $label;
  return $this;
}