You are here

public function PermanentDatabaseBackend::deleteAllPermanent in Permanent Cache Bin 8

Same name and namespace in other branches
  1. 8.2 src/Cache/PermanentDatabaseBackend.php \Drupal\pcb\Cache\PermanentDatabaseBackend::deleteAllPermanent()

Deletes all cache items in a bin when explicitly called.

See also

\Drupal\Core\Cache\DatabaseBackend::deleteAll()

File

src/Cache/PermanentDatabaseBackend.php, line 33

Class

PermanentDatabaseBackend
Defines a permanent database cache implementation.

Namespace

Drupal\pcb\Cache

Code

public function deleteAllPermanent() {
  parent::deleteAll();
}