function PhpBackend::invalidateAll
Same name in other branches
- 9 core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::invalidateAll()
- 10 core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::invalidateAll()
- 11.x core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::invalidateAll()
Overrides CacheBackendInterface::invalidateAll
File
-
core/
lib/ Drupal/ Core/ Cache/ PhpBackend.php, line 215
Class
- PhpBackend
- Defines a PHP cache implementation.
Namespace
Drupal\Core\CacheCode
public function invalidateAll() {
foreach ($this->storage()
->listAll() as $cidhash) {
$this->invalidatebyHash($cidhash);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.