Example #1
0
 /**
  * __get() - method to get a variable in this objects current namespace
  *
  * @param string $name - programmatic name of a key, in a <key,value> pair in the current namespace
  * @return mixed
  */
 protected function __get($name)
 {
     if ($name === '') {
         throw new Zend_Session_Exception("The '{$name}' key must be a non-empty string");
     }
     return $this->_sessionCore->namespaceGet($this->_namespace, $name);
 }
Example #2
0
 /**
  * __get() - method to get a variable in this objects current namespace
  *
  * @param string $name - programmatic name of a key, in a <key,value> pair in the current namespace
  * @return mixed
  */
 protected function __get($name)
 {
     if ($name === '') {
         throw Zend::exception('Zend_Session_Exception', __CLASS__ . "::__get() the '{$name}' key must be a non-empty string");
     }
     return $this->_sessionCore->namespaceGet($this->_namespace, $name);
 }
Example #3
0
 /**
  * __get() - method to get a variable in this objects current namespace
  *
  * @param string $name
  * @return mixed
  */
 public function __get($name)
 {
     return $this->_session_core->namespaceGet($this->_namespace, $name);
 }