public function FieldConfig::isComputed in Drupal 9
Same name and namespace in other branches
- 8 core/modules/field/src/Entity/FieldConfig.php \Drupal\field\Entity\FieldConfig::isComputed()
Determines whether the data value is computed.
For example, data could be computed depending on some other values.
Return value
bool Whether the data value is computed.
Overrides DataDefinitionInterface::isComputed
File
- core/
modules/ field/ src/ Entity/ FieldConfig.php, line 351
Class
- FieldConfig
- Defines the Field entity.
Namespace
Drupal\field\EntityCode
public function isComputed() {
return FALSE;
}