Example #1
0
 public function __set($key, $value)
 {
     $this->ensureDataArray();
     $this->sessionData[$this->context][$key] = $value;
     if (is_object($this->feUser)) {
         $this->feUser->setKey('ses', self::KEY, serialize($this->sessionData));
         $this->feUser->storeSessionData();
     }
 }
 protected function setSessionCookie()
 {
     if ($this->cookieIsSet === FALSE) {
         parent::setSessionCookie();
         $this->cookieIsSet = TRUE;
     }
 }
 /**
  * Stores session data for the front end user
  *
  * @return	void
  */
 function storeSessionData()
 {
     $this->fe_user->storeSessionData();
 }