Example #1
0
 /**
  * Reload node attributes from LDAP.
  *
  * This is an online method.
  *
  * @param  Zend_Ldap $ldap
  * @return Zend_Ldap_Node Provides a fluid interface
  * @throws Zend_Ldap_Exception
  */
 public function reload(Zend_Ldap $ldap = null)
 {
     if ($ldap !== null) {
         $this->attachLdap($ldap);
     }
     $ldap = $this->getLdap();
     parent::reload($ldap);
     return $this;
 }