public function LdapServer::setError in Lightweight Directory Access Protocol (LDAP) 7.2
Same name and namespace in other branches
- 8.2 ldap_servers/LdapServer.class.php \LdapServer::setError()
- 7 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 2072 - 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;
}