public function SharedTempStore::setIfNotExists in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/user/src/SharedTempStore.php \Drupal\user\SharedTempStore::setIfNotExists()
Stores a particular key/value pair only if the key doesn't already exist.
Parameters
string $key: The key of the data to check and store.
mixed $value: The data to store.
Return value
bool TRUE if the data was set, or FALSE if it already existed.
1 call to SharedTempStore::setIfNotExists()
- SharedTempStore::setIfOwner in core/
modules/ user/ src/ SharedTempStore.php - Stores a particular key/value pair in this SharedTempStore.
File
- core/
modules/ user/ src/ SharedTempStore.php, line 149 - Contains \Drupal\user\SharedTempStore.
Class
- SharedTempStore
- Stores and retrieves temporary data for a given owner.
Namespace
Drupal\userCode
public function setIfNotExists($key, $value) {
$value = (object) array(
'owner' => $this->owner,
'data' => $value,
'updated' => (int) $this->requestStack
->getMasterRequest()->server
->get('REQUEST_TIME'),
);
return $this->storage
->setWithExpireIfNotExists($key, $value, $this->expire);
}