class MetadataBag implements SessionBagInterface
Metadata container.
Adds metadata to the session.
Constants
CREATED | |
UPDATED | |
LIFETIME |
Methods
__construct(string $storageKey = '_sf2_meta', int $updateThreshold) Constructor. | ||
initialize(array $array) Initializes the Bag. | ||
int | getLifetime() Gets the lifetime that the session cookie was set with. | |
stampNew(int $lifetime = null) Stamps a new session's metadata. | ||
string | getStorageKey() Gets the storage key for this bag. | |
int | getCreated() Gets the created timestamp metadata. | |
int | getLastUsed() Gets the last used metadata. | |
mixed | clear() Clears out data from bag. | |
string | getName() Gets this bag's name. | |
setName(string $name) Sets name. |
Details
__construct(string $storageKey = '_sf2_meta', int $updateThreshold)
Constructor.
initialize(array $array)
Initializes the Bag.
int getLifetime()
Gets the lifetime that the session cookie was set with.
stampNew(int $lifetime = null)
Stamps a new session's metadata.
string getStorageKey()
Gets the storage key for this bag.
int getCreated()
Gets the created timestamp metadata.
int getLastUsed()
Gets the last used metadata.
mixed clear()
Clears out data from bag.
string getName()
Gets this bag's name.
setName(string $name)
Sets name.
Please login to continue.