You are here

public function DatabaseStorage::rename in Drupal 9

Same name in this branch
  1. 9 core/lib/Drupal/Core/Config/DatabaseStorage.php \Drupal\Core\Config\DatabaseStorage::rename()
  2. 9 core/lib/Drupal/Core/KeyValueStore/DatabaseStorage.php \Drupal\Core\KeyValueStore\DatabaseStorage::rename()
Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Config/DatabaseStorage.php \Drupal\Core\Config\DatabaseStorage::rename()

Implements Drupal\Core\Config\StorageInterface::rename().

Throws

PDOException

Overrides StorageInterface::rename

File

core/lib/Drupal/Core/Config/DatabaseStorage.php, line 236

Class

DatabaseStorage
Defines the Database storage.

Namespace

Drupal\Core\Config

Code

public function rename($name, $new_name) {
  $options = [
    'return' => Database::RETURN_AFFECTED,
  ] + $this->options;
  return (bool) $this->connection
    ->update($this->table, $options)
    ->fields([
    'name' => $new_name,
  ])
    ->condition('name', $name)
    ->condition('collection', $this->collection)
    ->execute();
}