Skip to content
Snippets Groups Projects
Select Git revision
  • b76d2a7a6f8c1f4fcc4a9be48eb0f428596da858
  • main default protected
  • 5.5 protected
  • atlantis
  • 5.3 protected
  • 5.0 protected
  • issue-23
  • issue8-seat-logging-and-export
  • ticket-216
  • tickets-215-216-241-242
10 results

Authority.php

Blame
  • 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
         */