You are here

function LDAPInterface::LDAPInterface in LDAP integration 5.2

Same name and namespace in other branches
  1. 5 ldap_integration/LDAPInterface.php \LDAPInterface::LDAPInterface()
  2. 6 includes/LDAPInterface.inc \LDAPInterface::LDAPInterface()

File

ldap_integration/LDAPInterface.php, line 5

Class

LDAPInterface

Code

function LDAPInterface() {
  $this->connection = null;
  $this->server = "example.com";
  $this->port = "389";
  $this->secretKey = NULL;
  $this->tls = false;
  $this->attr_filter = array(
    'LDAPInterface',
    '__empty_attr_filter',
  );
}