class SessionTestSubscriber

Defines a test session subscriber that checks whether the session is empty.

Hierarchy

Expanded class hierarchy of SessionTestSubscriber

1 string reference to 'SessionTestSubscriber'
session_test.services.yml in drupal/core/modules/system/tests/modules/session_test/session_test.services.yml
drupal/core/modules/system/tests/modules/session_test/session_test.services.yml
1 service uses SessionTestSubscriber

File

drupal/core/modules/system/tests/modules/session_test/lib/Drupal/session_test/EventSubscriber/SessionTestSubscriber.php, line 18
Contains \Drupal\session_test\EventSubscriber\SessionTestSubscriber.

Namespace

Drupal\session_test\EventSubscriber
View source
class SessionTestSubscriber implements EventSubscriberInterface {

  /*
   * Stores whether $_SESSION is empty at the beginning of the request.
   */
  protected $emptySession;

  /**
   * Set header for session testing.
   *
   * @param \Symfony\Component\HttpKernel\Event\GetResponseEvent $event
   *   The Event to process.
   */
  public function onKernelRequestSessionTest(GetResponseEvent $event) {
    $this->emptySession = intval(empty($_SESSION));
  }

  /**
   * Set header for session testing.
   *
   * @param \Symfony\Component\HttpKernel\Event\FilterResponseEvent $event
   *   The Event to process.
   */
  public function onKernelResponseSessionTest(FilterResponseEvent $event) {
    $event
      ->getResponse()->headers
      ->set('X-Session-Empty', $this->emptySession);
  }

  /**
   * Registers the methods in this class that should be listeners.
   *
   * @return array
   *   An array of event listener definitions.
   */
  static function getSubscribedEvents() {
    $events[KernelEvents::RESPONSE][] = array(
      'onKernelResponseSessionTest',
      300,
    );
    $events[KernelEvents::REQUEST][] = array(
      'onKernelRequestSessionTest',
      300,
    );
    return $events;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
SessionTestSubscriber::$emptySession protected property
SessionTestSubscriber::getSubscribedEvents static function Registers the methods in this class that should be listeners. Overrides EventSubscriberInterface::getSubscribedEvents
SessionTestSubscriber::onKernelRequestSessionTest public function Set header for session testing.
SessionTestSubscriber::onKernelResponseSessionTest public function Set header for session testing.