public function FieldConfigBase::setLabel in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 301 - Contains \Drupal\Core\Field\FieldConfigBase.
Class
- FieldConfigBase
- Base class for configurable field definitions.
Namespace
Drupal\Core\FieldCode
public function setLabel($label) {
$this->label = $label;
return $this;
}