Same filename and directory in other branches
  1. 8.9.x core/lib/Drupal/Core/Cache/Context/SessionCacheContext.php
  2. 9 core/lib/Drupal/Core/Cache/Context/SessionCacheContext.php

Namespace

Drupal\Core\Cache\Context

File

core/lib/Drupal/Core/Cache/Context/SessionCacheContext.php
View source
<?php

namespace Drupal\Core\Cache\Context;

use Drupal\Component\Utility\Crypt;

/**
 * Defines the SessionCacheContext service, for "per session" caching.
 *
 * Cache context ID: 'session'.
 */
class SessionCacheContext extends RequestStackCacheContextBase {

  /**
   * {@inheritdoc}
   */
  public static function getLabel() {
    return t('Session');
  }

  /**
   * {@inheritdoc}
   */
  public function getContext() {
    return Crypt::hashBase64($this->requestStack
      ->getSession()
      ->getId());
  }

}

Classes

Namesort descending Description
SessionCacheContext Defines the SessionCacheContext service, for "per session" caching.