public function BackendChain::deleteAll in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Cache/BackendChain.php \Drupal\Core\Cache\BackendChain::deleteAll()
Deletes all cache items in a bin.
Overrides CacheBackendInterface::deleteAll
See also
\Drupal\Core\Cache\CacheBackendInterface::invalidateAll()
\Drupal\Core\Cache\CacheBackendInterface::delete()
\Drupal\Core\Cache\CacheBackendInterface::deleteMultiple()
File
- core/
lib/ Drupal/ Core/ Cache/ BackendChain.php, line 166 - Contains \Drupal\Core\Cache\BackendChain.
Class
- BackendChain
- Defines a chained cache implementation for combining multiple cache backends.
Namespace
Drupal\Core\CacheCode
public function deleteAll() {
foreach ($this->backends as $backend) {
$backend
->deleteAll();
}
}