You are here

public function FieldConfig::isComputed in Drupal 9

Same name and namespace in other branches
  1. 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\Entity

Code

public function isComputed() {
  return FALSE;
}