function SessionCacheContext::getContext

Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Cache/Context/SessionCacheContext.php \Drupal\Core\Cache\Context\SessionCacheContext::getContext()
  2. 10 core/lib/Drupal/Core/Cache/Context/SessionCacheContext.php \Drupal\Core\Cache\Context\SessionCacheContext::getContext()
  3. 11.x core/lib/Drupal/Core/Cache/Context/SessionCacheContext.php \Drupal\Core\Cache\Context\SessionCacheContext::getContext()

File

core/lib/Drupal/Core/Cache/Context/SessionCacheContext.php, line 24

Class

SessionCacheContext
Defines the SessionCacheContext service, for "per session" caching.

Namespace

Drupal\Core\Cache\Context

Code

public function getContext() {
  $request = $this->requestStack
    ->getCurrentRequest();
  if ($request->hasSession()) {
    return Crypt::hashBase64($request->getSession()
      ->getId());
  }
  return 'none';
}

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