function CachedStorage::rename
Same name in other branches
- 9 core/lib/Drupal/Core/Config/CachedStorage.php \Drupal\Core\Config\CachedStorage::rename()
- 10 core/lib/Drupal/Core/Config/CachedStorage.php \Drupal\Core\Config\CachedStorage::rename()
- 11.x core/lib/Drupal/Core/Config/CachedStorage.php \Drupal\Core\Config\CachedStorage::rename()
Overrides StorageInterface::rename
File
-
core/
lib/ Drupal/ Core/ Config/ CachedStorage.php, line 151
Class
- CachedStorage
- Defines the cached storage.
Namespace
Drupal\Core\ConfigCode
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 = [];
return TRUE;
}
return FALSE;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.