function DataDefinition::setInternal
Same name in other branches
- 9 core/lib/Drupal/Core/TypedData/DataDefinition.php \Drupal\Core\TypedData\DataDefinition::setInternal()
- 10 core/lib/Drupal/Core/TypedData/DataDefinition.php \Drupal\Core\TypedData\DataDefinition::setInternal()
- 11.x core/lib/Drupal/Core/TypedData/DataDefinition.php \Drupal\Core\TypedData\DataDefinition::setInternal()
Sets the whether the data value should be internal.
Parameters
bool $internal: Whether the data value should be internal.
Return value
$this
File
-
core/
lib/ Drupal/ Core/ TypedData/ DataDefinition.php, line 381
Class
- DataDefinition
- A typed data definition class for defining data based on defined data types.
Namespace
Drupal\Core\TypedDataCode
public function setInternal($internal) {
$this->definition['internal'] = $internal;
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.