function EntityAdapter::setValue

Overrides TypedData::setValue

File

core/lib/Drupal/Core/Entity/Plugin/DataType/EntityAdapter.php, line 67

Class

EntityAdapter
Defines the "entity" data type.

Namespace

Drupal\Core\Entity\Plugin\DataType

Code

public function setValue($entity, $notify = TRUE) {
  $this->entity = $entity;
  // Notify the parent of any changes.
  if ($notify && isset($this->parent)) {
    $this->parent
      ->onChange($this->name);
  }
}

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