Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Field/FieldConfigBase.php \Drupal\Core\Field\FieldConfigBase::setLabel()
  2. 9 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 330

Class

FieldConfigBase
Base class for configurable field definitions.

Namespace

Drupal\Core\Field

Code

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