protected function SimpleLdapServer::schema in Simple LDAP 7.2
Same name and namespace in other branches
- 7 SimpleLdapServer.class.php \SimpleLdapServer::schema()
Loads the server's schema.
1 call to SimpleLdapServer::schema()
- SimpleLdapServer::__get in ./
SimpleLdapServer.class.php - Magic __get() function.
File
- ./
SimpleLdapServer.class.php, line 725 - Class to handle LDAP server connections and related operations.
Class
- SimpleLdapServer
- Simple LDAP server class.
Code
protected function schema() {
if (!isset($this->schema)) {
$this->schema = new SimpleLdapSchema($this);
}
}