SharedTempStore::getIfOwner

public SharedTempStore::getIfOwner($key)

Retrieves a value from this SharedTempStore for a given key.

Only returns the value if the value is owned by $this->owner.

Parameters

string $key: The key of the data to retrieve.

Return value

mixed The data associated with the key, or NULL if the key does not exist.

File

core/modules/user/src/SharedTempStore.php, line 127

Class

SharedTempStore
Stores and retrieves temporary data for a given owner.

Namespace

Drupal\user

Code

public function getIfOwner($key) {
  if (($object = $this->storage->get($key)) && ($object->owner == $this->owner)) {
    return $object->data;
  }
}
doc_Drupal
2016-10-29 09:42:17
Comments
Leave a Comment

Please login to continue.