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