Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. SessionInterface.php

interface SessionInterface

Interface for the session.

@author Drak <drak@zikula.org>

Hierarchy

  • interface \Symfony\Component\HttpFoundation\Session\SessionInterface

Expanded class hierarchy of SessionInterface

All classes that implement SessionInterface

11 files declare their use of SessionInterface
AbstractSessionListener.php in vendor/symfony/http-kernel/EventListener/AbstractSessionListener.php
BatchStorage.php in core/lib/Drupal/Core/Batch/BatchStorage.php
BigPipe.php in core/modules/big_pipe/src/Render/BigPipe.php
Cookie.php in core/modules/user/src/Authentication/Provider/Cookie.php
RegisterControllerArgumentLocatorsPass.php in vendor/symfony/http-kernel/DependencyInjection/RegisterControllerArgumentLocatorsPass.php

... See full list

File

vendor/symfony/http-foundation/Session/SessionInterface.php, line 21

Namespace

Symfony\Component\HttpFoundation\Session
View source
interface SessionInterface {
    
    /**
     * Starts the session storage.
     *
     * @throws \RuntimeException if session fails to start
     */
    public function start() : bool;
    
    /**
     * Returns the session ID.
     */
    public function getId() : string;
    
    /**
     * Sets the session ID.
     */
    public function setId(string $id) : void;
    
    /**
     * Returns the session name.
     */
    public function getName() : string;
    
    /**
     * Sets the session name.
     */
    public function setName(string $name) : void;
    
    /**
     * Invalidates the current session.
     *
     * Clears all session attributes and flashes and regenerates the
     * session and deletes the old session from persistence.
     *
     * @param int|null $lifetime Sets the cookie lifetime for the session cookie. A null value
     *                           will leave the system settings unchanged, 0 sets the cookie
     *                           to expire with browser session. Time is in seconds, and is
     *                           not a Unix timestamp.
     */
    public function invalidate(?int $lifetime = null) : bool;
    
    /**
     * Migrates the current session to a new session id while maintaining all
     * session attributes.
     *
     * @param bool     $destroy  Whether to delete the old session or leave it to garbage collection
     * @param int|null $lifetime Sets the cookie lifetime for the session cookie. A null value
     *                           will leave the system settings unchanged, 0 sets the cookie
     *                           to expire with browser session. Time is in seconds, and is
     *                           not a Unix timestamp.
     */
    public function migrate(bool $destroy = false, ?int $lifetime = null) : bool;
    
    /**
     * Force the session to be saved and closed.
     *
     * This method is generally not required for real sessions as
     * the session will be automatically saved at the end of
     * code execution.
     */
    public function save() : void;
    
    /**
     * Checks if an attribute is defined.
     */
    public function has(string $name) : bool;
    
    /**
     * Returns an attribute.
     */
    public function get(string $name, mixed $default = null) : mixed;
    
    /**
     * Sets an attribute.
     */
    public function set(string $name, mixed $value) : void;
    
    /**
     * Returns attributes.
     */
    public function all() : array;
    
    /**
     * Sets attributes.
     */
    public function replace(array $attributes) : void;
    
    /**
     * Removes an attribute.
     *
     * @return mixed The removed value or null when it does not exist
     */
    public function remove(string $name) : mixed;
    
    /**
     * Clears all attributes.
     */
    public function clear() : void;
    
    /**
     * Checks if the session was started.
     */
    public function isStarted() : bool;
    
    /**
     * Registers a SessionBagInterface with the session.
     */
    public function registerBag(SessionBagInterface $bag) : void;
    
    /**
     * Gets a bag instance by name.
     */
    public function getBag(string $name) : SessionBagInterface;
    
    /**
     * Gets session meta.
     */
    public function getMetadataBag() : MetadataBag;

}

Members

Title Sort descending Modifiers Object type Summary Overrides
SessionInterface::all public function Returns attributes. 1
SessionInterface::clear public function Clears all attributes. 1
SessionInterface::get public function Returns an attribute. 1
SessionInterface::getBag public function Gets a bag instance by name. 1
SessionInterface::getId public function Returns the session ID. 1
SessionInterface::getMetadataBag public function Gets session meta. 1
SessionInterface::getName public function Returns the session name. 1
SessionInterface::has public function Checks if an attribute is defined. 1
SessionInterface::invalidate public function Invalidates the current session. 1
SessionInterface::isStarted public function Checks if the session was started. 1
SessionInterface::migrate public function Migrates the current session to a new session id while maintaining all
session attributes.
1
SessionInterface::registerBag public function Registers a SessionBagInterface with the session. 1
SessionInterface::remove public function Removes an attribute. 1
SessionInterface::replace public function Sets attributes. 1
SessionInterface::save public function Force the session to be saved and closed. 1
SessionInterface::set public function Sets an attribute. 1
SessionInterface::setId public function Sets the session ID. 1
SessionInterface::setName public function Sets the session name. 1
SessionInterface::start public function Starts the session storage. 1
RSS feed
Powered by Drupal