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