class AttributeBag implements AttributeBagInterface, IteratorAggregate, Countable
This class relates to session attribute storage.
Methods
__construct(string $storageKey = '_sf2_attributes') Constructor. | ||
string | getName() Gets this bag's name. | |
setName($name) | ||
initialize(array $attributes) Initializes the Bag. | ||
string | getStorageKey() Gets the storage key for this bag. | |
bool | has(string $name) Checks if an attribute is defined. | |
mixed | get(string $name, mixed $default = null) Returns an attribute. | |
set(string $name, mixed $value) Sets an attribute. | ||
array | all() Returns attributes. | |
replace(array $attributes) Sets attributes. | ||
mixed | remove(string $name) Removes an attribute. | |
mixed | clear() Clears out data from bag. | |
ArrayIterator | getIterator() Returns an iterator for attributes. | |
int | count() Returns the number of attributes. |
Details
__construct(string $storageKey = '_sf2_attributes')
Constructor.
string getName()
Gets this bag's name.
setName($name)
initialize(array $attributes)
Initializes the Bag.
string getStorageKey()
Gets the storage key for this bag.
bool has(string $name)
Checks if an attribute is defined.
mixed get(string $name, mixed $default = null)
Returns an attribute.
set(string $name, mixed $value)
Sets an attribute.
array all()
Returns attributes.
replace(array $attributes)
Sets attributes.
mixed remove(string $name)
Removes an attribute.
mixed clear()
Clears out data from bag.
ArrayIterator getIterator()
Returns an iterator for attributes.
int count()
Returns the number of attributes.
Please login to continue.