ILIAS
eassessment Revision 61809
|
Go to the source code of this file.
Functions | |
db_session_open ($save_path, $name) | |
Database Session Handling. | |
db_session_close () | |
close session | |
db_session_read ($session_id) | |
db_session_write ($session_id, $data) | |
Writes serialized session data to the database. | |
db_session_destroy ($session_id) | |
destroy session | |
db_session_gc ($gc_maxlifetime) | |
removes sessions that weren't updated for more than gc_maxlifetime seconds | |
db_set_save_handler () | |
duplicate_session ($a_session_id) |
db_session_close | ( | ) |
close session
for a db nothing has to be done here
Definition at line 54 of file inc.db_session_handler.php.
db_session_destroy | ( | $session_id | ) |
destroy session
integer | $session_id | session id |
Definition at line 87 of file inc.db_session_handler.php.
References ilSession\_destroy().
db_session_gc | ( | $gc_maxlifetime | ) |
removes sessions that weren't updated for more than gc_maxlifetime seconds
integer | $gc_maxlifetime | max lifetime in seconds |
Definition at line 98 of file inc.db_session_handler.php.
References ilSession\_destroyExpiredSessions().
db_session_open | ( | $save_path, | |
$name | |||
) |
Database Session Handling.
inc.db_session_handler.php iliascore
Definition at line 44 of file inc.db_session_handler.php.
db_session_read | ( | $session_id | ) |
Definition at line 66 of file inc.db_session_handler.php.
References ilSession\_getData().
db_session_write | ( | $session_id, | |
$data | |||
) |
Writes serialized session data to the database.
integer | $session_id | session id |
string | $data | session data |
Definition at line 77 of file inc.db_session_handler.php.
References $data, and ilSession\_writeData().
db_set_save_handler | ( | ) |
Definition at line 108 of file inc.db_session_handler.php.
Referenced by ilBaseAuthentication\__setSessionSaveHandler(), ilPasswordAssistanceGUI\sendPasswordAssistanceMail(), and ilInitialisation\setSessionHandler().
duplicate_session | ( | $a_session_id | ) |
Definition at line 127 of file inc.db_session_handler.php.
References ilSession\_duplicate().
Referenced by ilContainer\cloneAllObject(), and ilECSTaskScheduler\start().