public static function LdapServer::field_to_properties_map in Lightweight Directory Access Protocol (LDAP) 7
Same name and namespace in other branches
- 8.2 ldap_servers/LdapServer.class.php \LdapServer::field_to_properties_map()
- 7.2 ldap_servers/LdapServer.class.php \LdapServer::field_to_properties_map()
6 calls to LdapServer::field_to_properties_map()
- LdapServer::__construct in ldap_servers/
LdapServer.class.php - Constructor Method
- LdapServerAdmin::drupalForm in ldap_servers/
LdapServerAdmin.class.php - LdapServerAdmin::entry in ldap_servers/
LdapServerAdmin.class.php - LdapServersTestCase::testUIForms in ldap_servers/
tests/ ldap_servers.test - ldap_help_get_ldap_servers in ldap_help/
ldap_help.status.inc
File
- ldap_servers/
LdapServer.class.php, line 87 - Defines server classes and related functions.
Class
- LdapServer
- LDAP Server Class
Code
public static function field_to_properties_map() {
return array(
'sid' => 'sid',
'name' => 'name',
'status' => 'status',
'ldap_type' => 'ldap_type',
'address' => 'address',
'port' => 'port',
'tls' => 'tls',
'bind_method' => 'bind_method',
'basedn' => 'basedn',
'binddn' => 'binddn',
'user_dn_expression' => 'user_dn_expression',
'user_attr' => 'user_attr',
'account_name_attr' => 'account_name_attr',
'mail_attr' => 'mail_attr',
'mail_template' => 'mail_template',
'unique_persistent_attr' => 'unique_persistent_attr',
'allow_conflicting_drupal_accts' => 'allow_conflicting_drupal_accts',
'ldap_to_drupal_user' => 'ldapToDrupalUserPhp',
'testing_drupal_username' => 'testingDrupalUsername',
'group_object_category' => 'groupObjectClass',
'search_pagination' => 'searchPagination',
'search_page_size' => 'searchPageSize',
);
}