You are here

public function PersistentDatabaseLockBackend::releaseAll in Drupal driver for SQL Server and SQL Azure 8.2

Releases all locks for the given lock token identifier.

Parameters

string $lockId: (optional) If none given, remove all locks from the current page. Defaults to NULL.

Overrides LockBackendInterface::releaseAll

File

src/ProxyClass/Lock/PersistentDatabaseLockBackend.php, line 100
Contains \Drupal\sqlsrv\ProxyClass\Lock\PersistentCouchbaseLockBackend.

Class

PersistentDatabaseLockBackend
Provides a proxy class for \Drupal\couchbase\Lock\CouchbaseLockBackend.

Namespace

Drupal\sqlsrv\ProxyClass\Lock

Code

public function releaseAll($lock_id = null) {
  return $this
    ->lazyLoadItself()
    ->releaseAll($lock_id);
}