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
1 2 3 4 | public function setLabel( $label ) { $this ->definition[ 'label' ] = $label ; return $this ; } |
Please login to continue.