Beispiel #1
0
 /**
  * Initializes the Session
  *
  * @access  public
  * @return  void
  */
 function init()
 {
     parent::Init();
     $session = $this->GetCookie(JAWS_SESSION_NAME);
     if (empty($session) || !$this->Load($session)) {
         $this->Create();
     }
 }