示例#1
0
 public function __construct($options = array())
 {
     //TODO do things needed
     //$this->register($options);
     //or call parent
     parent::__construct($options);
 }
示例#2
0
 public function __construct($store = 'none', $options = array())
 {
     //get the correct storage, and register it.
     $this->_store = SomeSessionStorage::getInstance($store, $options);
     session_name('wo' . md5('wocookie'));
     session_start();
     ini_set('session.gc_divisor', 40);
     // Send modified header for IE 6.0 Security Policy
     header('P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"');
 }
示例#3
0
 public function __construct($options = array())
 {
     //TODO construct what ever is needed here.
     parent::__construct($options);
 }