function PhpBackend::invalidateAll
Same name in other branches
- 9 core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::invalidateAll()
- 8.9.x 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()
Overrides CacheBackendInterface::invalidateAll
File
-
core/
lib/ Drupal/ Core/ Cache/ PhpBackend.php, line 227
Class
- PhpBackend
- Defines a PHP cache implementation.
Namespace
Drupal\Core\CacheCode
public function invalidateAll() {
@trigger_error("CacheBackendInterface::invalidateAll() is deprecated in drupal:11.2.0 and is removed from drupal:12.0.0. Use CacheBackendInterface::deleteAll() or cache tag invalidation instead. See https://www.drupal.org/node/3500622", E_USER_DEPRECATED);
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.