You are here

public function ContextDefinition::setLabel in Drupal 10

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

Sets the human readable label.

Parameters

string $label: The label to set.

Return value

$this

Overrides ContextDefinitionInterface::setLabel

File

core/lib/Drupal/Core/Plugin/Context/ContextDefinition.php, line 143

Class

ContextDefinition
Defines a class for context definitions.

Namespace

Drupal\Core\Plugin\Context

Code

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