You are here

function ldap_help_get_ldap_user in Lightweight Directory Access Protocol (LDAP) 7.2

Same name and namespace in other branches
  1. 8.2 ldap_help/ldap_help.status.inc \ldap_help_get_ldap_user()

File

ldap_help/ldap_help.status.inc, line 371
Status file for ldaphelp module.

Code

function ldap_help_get_ldap_user() {
  ldap_servers_module_load_include('php', 'ldap_user', 'LdapUserConfAdmin.class');
  $conf = new LdapUserConfAdmin();
  $form = $conf
    ->drupalForm();
  $items['drupal_accounts']['loginConflictResolve'] = 'radios';
  $items['drupal_accounts']['acctCreation'] = 'radios';
  $status = ldap_help_parse_form($form, $items);
  return $status;
}