class NativeSessionStorage

This provides a base class for session attribute storage.

@author Drak <drak@zikula.org>

Hierarchy

Expanded class hierarchy of NativeSessionStorage

4 files declare their use of NativeSessionStorage

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Session/Storage/NativeSessionStorage.php, line 25

Namespace

Symfony\Component\HttpFoundation\Session\Storage
View source

Members

Namesort descending Modifiers Type Description Overrides
NativeSessionStorage::$bags protected property Array of SessionBagInterface
NativeSessionStorage::$closed protected property
NativeSessionStorage::$metadataBag protected property
NativeSessionStorage::$saveHandler protected property
NativeSessionStorage::$started protected property
NativeSessionStorage::clear public function Clear all session data in memory. Overrides SessionStorageInterface::clear
NativeSessionStorage::getBag public function Gets a SessionBagInterface by name. Overrides SessionStorageInterface::getBag
NativeSessionStorage::getId public function Returns the session ID Overrides SessionStorageInterface::getId
NativeSessionStorage::getMetadataBag public function Gets the MetadataBag. Overrides SessionStorageInterface::getMetadataBag
NativeSessionStorage::getName public function Returns the session name Overrides SessionStorageInterface::getName
NativeSessionStorage::getSaveHandler public function Gets the save handler instance.
NativeSessionStorage::isStarted public function Checks if the session is started. Overrides SessionStorageInterface::isStarted
NativeSessionStorage::loadSession protected function Load the session with attributes.
NativeSessionStorage::regenerate public function Regenerates id that represents this storage. Overrides SessionStorageInterface::regenerate
NativeSessionStorage::registerBag public function Registers a SessionBagInterface for use. Overrides SessionStorageInterface::registerBag
NativeSessionStorage::save public function Force the session to be saved and closed. Overrides SessionStorageInterface::save
NativeSessionStorage::setId public function Sets the session ID Overrides SessionStorageInterface::setId
NativeSessionStorage::setMetadataBag public function Sets the MetadataBag.
NativeSessionStorage::setName public function Sets the session name Overrides SessionStorageInterface::setName
NativeSessionStorage::setOptions public function Sets session.* ini variables.
NativeSessionStorage::setSaveHandler public function Registers save handler as a PHP session handler.
NativeSessionStorage::start public function Starts the session. Overrides SessionStorageInterface::start
NativeSessionStorage::__construct public function Constructor.