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