function EntityAdapter::set

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/Plugin/DataType/EntityAdapter.php \Drupal\Core\Entity\Plugin\DataType\EntityAdapter::set()
  2. 8.9.x core/lib/Drupal/Core/Entity/Plugin/DataType/EntityAdapter.php \Drupal\Core\Entity\Plugin\DataType\EntityAdapter::set()
  3. 10 core/lib/Drupal/Core/Entity/Plugin/DataType/EntityAdapter.php \Drupal\Core\Entity\Plugin\DataType\EntityAdapter::set()

Overrides ComplexDataInterface::set

1 method overrides EntityAdapter::set()
ConfigEntityAdapter::set in core/lib/Drupal/Core/Entity/Plugin/DataType/ConfigEntityAdapter.php
Sets a property value.

File

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

Class

EntityAdapter
Defines the "entity" data type.

Namespace

Drupal\Core\Entity\Plugin\DataType

Code

public function set($property_name, $value, $notify = TRUE) {
    if (!isset($this->entity)) {
        throw new MissingDataException("Unable to set property {$property_name} as no entity has been provided.");
    }
    if (!$this->entity instanceof FieldableEntityInterface) {
        throw new \InvalidArgumentException("Unable to set unknown property {$property_name}.");
    }
    // This will throw an exception for unknown fields.
    $this->entity
        ->set($property_name, $value, $notify);
    return $this;
}

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