function CachedStorage::deleteAll

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Config/CachedStorage.php \Drupal\Core\Config\CachedStorage::deleteAll()
  2. 8.9.x core/lib/Drupal/Core/Config/CachedStorage.php \Drupal\Core\Config\CachedStorage::deleteAll()
  3. 10 core/lib/Drupal/Core/Config/CachedStorage.php \Drupal\Core\Config\CachedStorage::deleteAll()

Overrides StorageInterface::deleteAll

File

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

Class

CachedStorage
Defines the cached storage.

Namespace

Drupal\Core\Config

Code

public function deleteAll($prefix = '') {
    // If the cache was the first to be deleted, another process might start
    // rebuilding the cache before the storage is renamed.
    $names = $this->storage
        ->listAll($prefix);
    if ($this->storage
        ->deleteAll($prefix)) {
        $this->cache
            ->deleteMultiple($this->getCacheKeys($names));
        return TRUE;
    }
    return FALSE;
}

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