function FieldItemBase::__construct

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Field/FieldItemBase.php \Drupal\Core\Field\FieldItemBase::__construct()

File

core/lib/Drupal/Core/Field/FieldItemBase.php, line 46

Class

FieldItemBase
An entity field item.

Namespace

Drupal\Core\Field

Code

public function __construct(ComplexDataDefinitionInterface $definition, $name = NULL, TypedDataInterface $parent = NULL) {
  parent::__construct($definition, $name, $parent);
  // Initialize computed properties by default, such that they get cloned
  // with the whole item.
  foreach ($this->definition
    ->getPropertyDefinitions() as $name => $definition) {
    if ($definition->isComputed()) {
      $this->properties[$name] = \Drupal::typedDataManager()->getPropertyInstance($this, $name);
    }
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.