You are here

public function FieldStorageConfig::getLabel in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/field/src/Entity/FieldStorageConfig.php \Drupal\field\Entity\FieldStorageConfig::getLabel()

Returns the human-readable label for the field.

Return value

string The field label.

Overrides FieldStorageDefinitionInterface::getLabel

File

core/modules/field/src/Entity/FieldStorageConfig.php, line 617

Class

FieldStorageConfig
Defines the Field storage configuration entity.

Namespace

Drupal\field\Entity

Code

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