function DatabaseStorage::deleteAll

Deletes all items from the key/value store.

Overrides KeyValueStoreInterface::deleteAll

File

core/lib/Drupal/Core/KeyValueStore/DatabaseStorage.php, line 162

Class

DatabaseStorage
Defines a default key/value store implementation.

Namespace

Drupal\Core\KeyValueStore

Code

public function deleteAll() {
  $this->connection
    ->delete($this->table)
    ->condition('collection', $this->collection)
    ->execute();
}

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