function PrivateTempStore::getOwner

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/TempStore/PrivateTempStore.php \Drupal\Core\TempStore\PrivateTempStore::getOwner()
  2. 10 core/lib/Drupal/Core/TempStore/PrivateTempStore.php \Drupal\Core\TempStore\PrivateTempStore::getOwner()

Gets the current owner based on the current user or the session ID.

Return value

string The owner.

File

core/lib/Drupal/Core/TempStore/PrivateTempStore.php, line 224

Class

PrivateTempStore
Stores and retrieves temporary data for a given owner.

Namespace

Drupal\Core\TempStore

Code

protected function getOwner() {
  $owner = $this->currentUser
    ->id();
  if ($this->currentUser
    ->isAnonymous()) {
    // Check to see if an owner key exists in the session.
    $this->startSession();
    $session = $this->requestStack
      ->getCurrentRequest()
      ->getSession();
    $owner = $session->get('core.tempstore.private.owner');
  }
  return $owner;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.