function ConfigEntityStorage::importUpdate

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Config/Entity/ConfigEntityStorage.php \Drupal\Core\Config\Entity\ConfigEntityStorage::importUpdate()

File

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

Class

ConfigEntityStorage
Defines the storage class for configuration entities.

Namespace

Drupal\Core\Config\Entity

Code

public function importUpdate($name, Config $new_config, Config $old_config) {
  $id = static::getIDFromConfigName($name, $this->entityType
    ->getConfigPrefix());
  $entity = $this->load($id);
  if (!$entity) {
    throw new ConfigImporterException("Attempt to update non-existing entity '{$id}'.");
  }
  $entity->setSyncing(TRUE);
  $entity = $this->updateFromStorageRecord($entity, $new_config->get());
  $entity->save();
  return TRUE;
}

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