SharedTempStore::delete

public SharedTempStore::delete($key)

Deletes data from the store for a given key and releases the lock on it.

Parameters

string $key: The key of the data to delete.

File

core/modules/user/src/SharedTempStore.php, line 232

Class

SharedTempStore
Stores and retrieves temporary data for a given owner.

Namespace

Drupal\user

Code

public function delete($key) {
  if (!$this->lockBackend->acquire($key)) {
    $this->lockBackend->wait($key);
    if (!$this->lockBackend->acquire($key)) {
      throw new TempStoreException("Couldn't acquire lock to delete item '$key' from {$this->storage->getCollectionName()} temporary storage.");
    }
  }
  $this->storage->delete($key);
  $this->lockBackend->release($key);
}
doc_Drupal
2016-10-29 09:42:17
Comments
Leave a Comment

Please login to continue.