W3cubDocs

/Drupal 8

public function ConfigEntityStorage::updateFromStorageRecord

public ConfigEntityStorage::updateFromStorageRecord(ConfigEntityInterface $entity, array $values)

Updates a configuration entity from storage values.

Allows the configuration entity storage to massage storage values before updating an entity.

Parameters

ConfigEntityInterface $entity: The configuration entity to update.

array $values: The array of values from the configuration storage.

Return value

ConfigEntityInterface The configuration entity.

Overrides ConfigEntityStorageInterface::updateFromStorageRecord

See also

\Drupal\Core\Entity\EntityStorageBase::mapFromStorageRecords()

\Drupal\field\FieldStorageConfigStorage::mapFromStorageRecords()

File

core/lib/Drupal/Core/Config/Entity/ConfigEntityStorage.php, line 469

Class

ConfigEntityStorage
Defines the storage class for configuration entities.

Namespace

Drupal\Core\Config\Entity

Code

public function updateFromStorageRecord(ConfigEntityInterface $entity, array $values) {
  $entity->original = clone $entity;

  $data = $this->mapFromStorageRecords(array($values));
  $updated_entity = current($data);

  foreach (array_keys($values) as $property) {
    $value = $updated_entity->get($property);
    $entity->set($property, $value);
  }

  return $entity;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Config!Entity!ConfigEntityStorage.php/function/ConfigEntityStorage::updateFromStorageRecord/8.1.x