function DatabaseLockBackend::releaseAll

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

core/lib/Drupal/Core/ProxyClass/Lock/DatabaseLockBackend.php, line 97

Class

DatabaseLockBackend
Provides a proxy class for \Drupal\Core\Lock\DatabaseLockBackend.

Namespace

Drupal\Core\ProxyClass\Lock

Code

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

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