interface SimpleLdapConnectionInterface in Simple LDAP 8
Hierarchy
- interface \Drupal\simple_ldap\SimpleLdapConnectionInterface
Expanded class hierarchy of SimpleLdapConnectionInterface
All classes that implement SimpleLdapConnectionInterface
2 files declare their use of SimpleLdapConnectionInterface
File
- src/
SimpleLdapConnectionInterface.php, line 8
Namespace
Drupal\simple_ldapView source
interface SimpleLdapConnectionInterface {
/**
* Connect to the Simple LDAP server based on configuration settings.
*
* @throws \Drupal\simple_ldap\SimpleLdapException
*/
public function connect();
/**
* Disconnect from LDAP server.
*/
public function disconnect();
/**
* Get the LDAP link identifier for this SimpleLdapConnection
*
* @return resource
* LDAP link identifier
*/
public function getResource();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SimpleLdapConnectionInterface:: |
public | function | Connect to the Simple LDAP server based on configuration settings. | 1 |
SimpleLdapConnectionInterface:: |
public | function | Disconnect from LDAP server. | 1 |
SimpleLdapConnectionInterface:: |
public | function | Get the LDAP link identifier for this SimpleLdapConnection | 1 |