You are here

public function LockBackendInterface::releaseAll in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Lock/LockBackendInterface.php \Drupal\Core\Lock\LockBackendInterface::releaseAll()
  2. 9 core/lib/Drupal/Core/Lock/LockBackendInterface.php \Drupal\Core\Lock\LockBackendInterface::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.

2 methods override LockBackendInterface::releaseAll()
DatabaseLockBackend::releaseAll in core/lib/Drupal/Core/ProxyClass/Lock/DatabaseLockBackend.php
Releases all locks for the given lock token identifier.
PersistentDatabaseLockBackend::releaseAll in core/lib/Drupal/Core/ProxyClass/Lock/PersistentDatabaseLockBackend.php
Releases all locks for the given lock token identifier.

File

core/lib/Drupal/Core/Lock/LockBackendInterface.php, line 141

Class

LockBackendInterface
Lock backend interface.

Namespace

Drupal\Core\Lock

Code

public function releaseAll($lockId = NULL);