public function CachedStorage::rename

public CachedStorage::rename($name, $new_name)

Renames a configuration object in the storage.

Parameters

string $name: The name of a configuration object to rename.

string $new_name: The new name of a configuration object.

Return value

bool TRUE on success, FALSE otherwise.

Overrides StorageInterface::rename

File

core/lib/Drupal/Core/Config/CachedStorage.php, line 151

Class

CachedStorage
Defines the cached storage.

Namespace

Drupal\Core\Config

Code

public function rename($name, $new_name) {
  // If the cache was the first to be deleted, another process might start
  // rebuilding the cache before the storage is renamed.
  if ($this->storage->rename($name, $new_name)) {
    $this->cache->delete($this->getCacheKey($name));
    $this->cache->delete($this->getCacheKey($new_name));
    $this->findByPrefixCache = array();
    return TRUE;
  }
  return FALSE;
}

© 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!CachedStorage.php/function/CachedStorage::rename/8.1.x