DataDefinition::setLabel

public DataDefinition::setLabel($label)

Sets the human-readable label.

Parameters

string $label: The label to set.

Return value

static The object itself for chaining.

File

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

Class

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

Namespace

Drupal\Core\TypedData

Code

public function setLabel($label) {
  $this->definition['label'] = $label;
  return $this;
}
doc_Drupal
2016-10-29 09:00:08
Comments
Leave a Comment

Please login to continue.