You are here

public function FieldConfigBase::setLabel in Drupal 9

Same name and namespace in other branches
  1. 8 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\Field

Code

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