W3cubDocs

/Drupal 8

public function LockBackendAbstract::getLockId

public LockBackendAbstract::getLockId()

Gets the unique page token for locks.

Locks will be wiped out at the end of each page request on a token basis.

Return value

string

Overrides LockBackendInterface::getLockId

File

core/lib/Drupal/Core/Lock/LockBackendAbstract.php, line 68

Class

LockBackendAbstract
Non backend related common methods implementation for lock backends.

Namespace

Drupal\Core\Lock

Code

public function getLockId() {
  if (!isset($this->lockId)) {
    $this->lockId = uniqid(mt_rand(), TRUE);
  }
  return $this->lockId;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Lock!LockBackendAbstract.php/function/LockBackendAbstract::getLockId/8.1.x