You are here

public function DataDefinition::getLabel in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/TypedData/DataDefinition.php \Drupal\Core\TypedData\DataDefinition::getLabel()
  2. 10 core/lib/Drupal/Core/TypedData/DataDefinition.php \Drupal\Core\TypedData\DataDefinition::getLabel()

Returns a human readable label.

Return value

string|\Drupal\Core\StringTranslation\TranslatableMarkup The label. A string or an instance of TranslatableMarkup will be returned based on the way the label translation is handled.

Overrides DataDefinitionInterface::getLabel

File

core/lib/Drupal/Core/TypedData/DataDefinition.php, line 74

Class

DataDefinition
A typed data definition class for defining data based on defined data types.

Namespace

Drupal\Core\TypedData

Code

public function getLabel() {
  return isset($this->definition['label']) ? $this->definition['label'] : NULL;
}