/home/desid573/public_html/ims2/system/libraries/Session
NameSizeModeActions
drivers/-0755rm
CI_Session_driver_interface.php22490644editdlrm
index.html1310644editdlrm
OldSessionWrapper.php27610644editdlrm
PHP8SessionWrapper.php29400644editdlrm
Session.php252080644editdlrm
SessionHandlerInterface.php23170644editdlrm
SessionUpdateTimestampHandlerInterface.php22110644editdlrm
Session_driver.php53440644editdlrm
Edit: /home/desid573/public_html/ims2/system/libraries/Session/OldSessionWrapper.php (2761B)
driver = $driver; } public function open($save_path, $name) { return $this->driver->open($save_path, $name); } public function close() { return $this->driver->close(); } public function read($id) { return $this->driver->read($id); } public function write($id, $data) { return $this->driver->write($id, $data); } public function destroy($id) { return $this->driver->destroy($id); } public function gc($maxlifetime) { return $this->driver->gc($maxlifetime); } public function updateTimestamp($id, $data) { return $this->driver->updateTimestamp($id, $data); } public function validateId($id) { return $this->driver->validateId($id); } }