protected function SimpleLdapServerSchema::getAllAttributeNames in Simple LDAP 8
Provides a list of all attributes that can be retrieved from the server.
Return value
array
1 call to SimpleLdapServerSchema::getAllAttributeNames()
- SimpleLdapServerSchema::loadSchema in src/
SimpleLdapServerSchema.php  - Load the schema.
 
File
- src/
SimpleLdapServerSchema.php, line 53  - Contains \Drupal\simple_ldap\SimpleLdapServerSchema
 
Class
Namespace
Drupal\simple_ldapCode
protected function getAllAttributeNames() {
  return array(
    'attributeTypes',
    'dITContentRules',
    'dITStructureRules',
    'matchingRules',
    'matchingRuleUse',
    'nameForms',
    'objectClasses',
    'ldapSyntaxes',
  );
}