|
ILIAS
Release_4_2_x_branch Revision 61807
|
Collaboration diagram for Auth_Yadis_PHPSession:Public Member Functions | |
| set ($name, $value) | |
| Set a session key/value pair. | |
| get ($name, $default=null) | |
| Get a key's value from the session. | |
| del ($name) | |
| Remove a key/value pair from the session. | |
| contents () | |
| Return the contents of the session in array form. | |
Definition at line 17 of file Manager.php.
| Auth_Yadis_PHPSession::contents | ( | ) |
Return the contents of the session in array form.
Definition at line 60 of file Manager.php.
References $_SESSION.
| Auth_Yadis_PHPSession::del | ( | $name | ) |
Remove a key/value pair from the session.
| string | $name | The name of the key to remove. |
Definition at line 52 of file Manager.php.
References $_SESSION.
| Auth_Yadis_PHPSession::get | ( | $name, | |
$default = null |
|||
| ) |
Get a key's value from the session.
| string | $name | The name of the key to retrieve. |
| string | $default | The optional value to return if the key is not found in the session. |
Definition at line 38 of file Manager.php.
References $_SESSION.
| Auth_Yadis_PHPSession::set | ( | $name, | |
| $value | |||
| ) |
Set a session key/value pair.
| string | $name | The name of the session key to add. |
| string | $value | The value to add to the session. |
Definition at line 24 of file Manager.php.
References $_SESSION.