You are here

public function LayoutDefinition::getLabel in Drupal 10

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

Gets the human-readable name of the layout definition.

Return value

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

1 call to LayoutDefinition::getLabel()
LayoutDefinition::getIcon in core/lib/Drupal/Core/Layout/LayoutDefinition.php
Builds a render array for an icon representing the layout.

File

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

Class

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

Namespace

Drupal\Core\Layout

Code

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