public function FieldConfigBase::setLabel in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Field/FieldConfigBase.php \Drupal\Core\Field\FieldConfigBase::setLabel()
- 10 core/lib/Drupal/Core/Field/FieldConfigBase.php \Drupal\Core\Field\FieldConfigBase::setLabel()
Sets the field definition label.
Parameters
string $label: The label to set.
Return value
$this
Overrides FieldConfigInterface::setLabel
File
- core/
lib/ Drupal/ Core/ Field/ FieldConfigBase.php, line 306
Class
- FieldConfigBase
- Base class for configurable field definitions.
Namespace
Drupal\Core\FieldCode
public function setLabel($label) {
$this->label = $label;
return $this;
}