public function LdapQuery::setError in Lightweight Directory Access Protocol (LDAP) 7
Same name and namespace in other branches
- 8.2 ldap_query/LdapQuery.class.php \LdapQuery::setError()
 - 7.2 ldap_query/LdapQuery.class.php \LdapQuery::setError()
 
1 call to LdapQuery::setError()
- LdapQueryAdmin::drupalFormSubmit in ldap_query/
LdapQueryAdmin.class.php  
File
- ldap_query/
LdapQuery.class.php, line 137  - Defines server classes and related functions.
 
Class
- LdapQuery
 - LDAP Server Class
 
Code
public function setError($_errorName, $_errorMsgText = NULL) {
  $this->_errorMsgText = $_errorMsgText;
  $this->_errorName = $_errorName;
  $this->_hasError = TRUE;
}