ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
|
Keeps the state of a view in a simple stringly type key-value store. More...
Public Member Functions | |
withValueFor (string $key, string $value) | |
Set a value for a key of the state. More... | |
withoutKey (string $key) | |
Remove the key-value-pair. More... | |
getValueFor (string $key) | |
Get the value for the given key. More... | |
serialize () | |
Get the key-value store as string. More... | |
Protected Attributes | |
$store | |
Keeps the state of a view in a simple stringly type key-value store.
ILIAS\KioskMode\State::getValueFor | ( | string | $key | ) |
Get the value for the given key.
Definition at line 40 of file State.php.
Referenced by StateTest\testValue().
ILIAS\KioskMode\State::serialize | ( | ) |
Get the key-value store as string.
Definition at line 51 of file State.php.
Referenced by StateTest\testRemoveValue(), and StateTest\testSerialize().
ILIAS\KioskMode\State::withoutKey | ( | string | $key | ) |
Remove the key-value-pair.
Definition at line 30 of file State.php.
Referenced by StateTest\testRemoveValue().
ILIAS\KioskMode\State::withValueFor | ( | string | $key, |
string | $value | ||
) |
Set a value for a key of the state.
Definition at line 20 of file State.php.
Referenced by StateTest\testRemoveValue(), and StateTest\testValue().