public function ContextDefinition::setLabel in Drupal 9
Same name and namespace in other branches
- 8 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\ContextCode
public function setLabel($label) {
$this->label = $label;
return $this;
}