public NullLockBackend::getLockId()
Gets the unique page token for locks.
Locks will be wiped out at the end of each page request on a token basis.
string
Overrides LockBackendInterface::getLockId
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!NullLockBackend.php/function/NullLockBackend::getLockId/8.1.x