Select Git revision
Authority.php
Forked from
Stud.IP / Stud.IP
Source project has a limited visibility.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Seminar_Session.class.php 10.58 KiB
<?php
/**
* PHPLib Sessions using PHP 4 build-in sessions and PHPLib storage container
*
* @copyright (c) 1998,1999 NetUSE GmbH Boris Erdmann, Kristian Koehntopp,
* 2000 Maxim Derkachev <kot@books.ru>,
* 2000 Teodor Cimpoesu <teo@digiro.net>
* @author André Noack <noack@data-quest.de> Maxim Derkachev <kot@books.ru>,
* Teodor Cimpoesu <teo@digiro.net>,Ulf Wendel <uw@netuse.de>
*/
class Seminar_Session
{
/**
* Current session id.
*
* @var string
* @see id(), Session()
*/
private $id;
/**
* Current session name also cookie name
*
* @var string
* @see name(), Session()
*/
private $name;
/**
*
* @var string
*/
private $cookie_path;
/**
* If set, the domain for which the session cookie is set.
*
* @var string
*/
private $cookie_domain;
/**
* If set, the domain for which the session cookie is set.
*
* @var bool
*/
private $cookie_secure = false;
/**
* If set, the domain for which the session cookie is set.
*
* @var bool
*/
private $cookie_httponly = true;
/**
* session storage module - user, files or mm
*
* @var string
*/
private $module = 'user';
/**
* where to save session files if module == files
*
* @var string
*/