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/KeyValueStore/DatabaseStorage.php \Drupal\Core\KeyValueStore\DatabaseStorage::rename()

Renames a key.

Parameters

string $key: The key to rename.

string $new_key: The new key name.

Overrides KeyValueStoreInterface::rename

File

core/lib/Drupal/Core/KeyValueStore/DatabaseStorage.php, line 204

Class

DatabaseStorage
Defines a default key/value store implementation.

Namespace

Drupal\Core\KeyValueStore

Code

public function rename($key, $new_key) {
  try {
    $this->connection
      ->update($this->table)
      ->fields([
      'name' => $new_key,
    ])
      ->condition('collection', $this->collection)
      ->condition('name', $key)
      ->execute();
  } catch (\Exception $e) {
    $this
      ->catchException($e);
  }
}