You are here

public function LdapServer::setError in Lightweight Directory Access Protocol (LDAP) 8.2

Same name and namespace in other branches
  1. 7.2 ldap_servers/LdapServer.class.php \LdapServer::setError()
  2. 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 1787
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;
}