You are here

function ldap_profile_admin_form in Lightweight Directory Access Protocol (LDAP) 7

form for adding, updating, and deleting a single ldap profile mapping

_state

Parameters

<type> $form:

Return value

array drupal form array

1 string reference to 'ldap_profile_admin_form'
ldap_profile_menu in ldap_profile/ldap_profile.module
Implements hook_menu().

File

ldap_profile/ldap_profile.admin.inc, line 16
Administrative page callbacks for the ldap_profile module.

Code

function ldap_profile_admin_form($form, &$form_state) {
  require_once 'LdapProfileConfAdmin.class.php';
  $auth_conf = new LdapProfileConfAdmin();
  return $auth_conf
    ->drupalForm();
}