Beispiel #1
0
 /**
  * Returns the RootDSE
  *
  * @return Zend_Ldap_Node_RootDse
  * @throws Zend_Ldap_Exception
  */
 public function getRootDse()
 {
     if ($this->_rootDse === null) {
         /**
          * @see Zend_Ldap_Node_Schema
          */
         #require_once 'Zend/Ldap/Node/RootDse.php';
         $this->_rootDse = Zend_Ldap_Node_RootDse::create($this);
     }
     return $this->_rootDse;
 }
Beispiel #2
0
 /**
  * Returns the RootDSE
  *
  * @return Zend_Ldap_Node_RootDse
  * @throws Zend_Ldap_Exception
  */
 public function getRootDse()
 {
     if ($this->_rootDse === null) {
         /**
          * @see Zend_Ldap_Node_Schema
          */
         $this->_rootDse = Zend_Ldap_Node_RootDse::create($this);
     }
     return $this->_rootDse;
 }