SessionConfigurationInterface.php

Same filename and directory in other branches
  1. 9 core/lib/Drupal/Core/Session/SessionConfigurationInterface.php
  2. 8.9.x core/lib/Drupal/Core/Session/SessionConfigurationInterface.php
  3. 10 core/lib/Drupal/Core/Session/SessionConfigurationInterface.php

Namespace

Drupal\Core\Session

File

core/lib/Drupal/Core/Session/SessionConfigurationInterface.php

View source
<?php

namespace Drupal\Core\Session;

use Symfony\Component\HttpFoundation\Request;

/**
 * Defines an interface for session configuration generators.
 */
interface SessionConfigurationInterface {
    
    /**
     * Determines whether a session identifier is on the request.
     *
     * This method detects whether a session was started during one of the
     * previous requests from the same user agent. Session identifiers are
     * normally passed along using cookies and hence a typical implementation
     * checks whether the session cookie is on the request.
     *
     * @param \Symfony\Component\HttpFoundation\Request $request
     *   The request.
     *
     * @return bool
     *   TRUE if there is a session identifier on the request.
     */
    public function hasSession(Request $request);
    
    /**
     * Returns a list of options suitable for passing to the session storage.
     *
     * @see \Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage::__construct()
     *
     * @param \Symfony\Component\HttpFoundation\Request $request
     *   The request.
     *
     * @return array
     *   An associative array of session ini settings.
     */
    public function getOptions(Request $request);

}

Interfaces

Title Deprecated Summary
SessionConfigurationInterface Defines an interface for session configuration generators.

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