Session Bag store.
@author Drak <drak@zikula.org>
Expanded class hierarchy of SessionBagInterface
All classes that implement SessionBagInterface
interface SessionBagInterface {
/**
* Gets this bag's name
*
* @return string
*/
public function getName();
/**
* Initializes the Bag
*
* @param array $array
*/
public function initialize(array &$array);
/**
* Gets the storage key for this bag.
*
* @return string
*/
public function getStorageKey();
/**
* Clears out data from bag.
*
* @return mixed Whatever data was contained.
*/
public function clear();
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SessionBagInterface:: |
public | function | Clears out data from bag. | 4 |
SessionBagInterface:: |
public | function | Gets this bag's name | 4 |
SessionBagInterface:: |
public | function | Gets the storage key for this bag. | 4 |
SessionBagInterface:: |
public | function | Initializes the Bag | 4 |