Exemplo n.º 1
0
 /**
  * Returns the schema
  *
  * @return Zend_Ldap_Node_Schema
  * @throws Zend_Ldap_Exception
  */
 public function getSchema()
 {
     if ($this->_schema === null) {
         /**
          * @see Zend_Ldap_Node_Schema
          */
         #require_once 'Zend/Ldap/Node/Schema.php';
         $this->_schema = Zend_Ldap_Node_Schema::create($this);
     }
     return $this->_schema;
 }
Exemplo n.º 2
0
 /**
  * Returns the schema
  *
  * @return Zend_Ldap_Node_Schema
  * @throws Zend_Ldap_Exception
  */
 public function getSchema()
 {
     if ($this->_schema === null) {
         /**
          * @see Zend_Ldap_Node_Schema
          */
         $this->_schema = Zend_Ldap_Node_Schema::create($this);
     }
     return $this->_schema;
 }