1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<?php
// $Id: ldap_authentication.admin.inc,v 1.1.4.2 2011/02/08 06:01:00 johnbarclay Exp $
/**
* @file
* Administrative page callbacks for the ldap_authentication module.
*/
/**
* form for adding, updating, and deleting a single ldap authorization mapping
*
* @param <type> $form
* @param <type> $form_state
* @return array drupal form array
*/
function ldap_authentication_admin_form($form, &$form_state) {
ldap_server_module_load_include('php', 'ldap_authentication', 'LdapAuthenticationConfAdmin.class');
$auth_conf = new LdapAuthenticationConfAdmin();
return $auth_conf->drupalForm();
}
/**
* validate handler for the ldap_authentication_admin_form
*/
function ldap_authentication_admin_form_validate($form, &$form_state) {
ldap_server_module_load_include('php', 'ldap_authentication', 'LdapAuthenticationConfAdmin.class');
$auth_conf = new LdapAuthenticationConfAdmin();
$errors = $auth_conf->drupalFormValidate($form_state['values']);
foreach ($errors as $error_name => $error_text) {
form_set_error($error_name, t($error_text));
}
}
/**
* submit handler function for ldap_authorization_admin_form
*/
function ldap_authentication_admin_form_submit($form, &$form_state) {
ldap_server_module_load_include('php', 'ldap_authentication', 'LdapAuthenticationConfAdmin.class');
$auth_conf = new LdapAuthenticationConfAdmin();
$auth_conf->drupalFormSubmit($form_state['values']); // add form data to object and save or create
if (!$auth_conf->enabled_servers()) {
drupal_set_message(t('No LDAP servers are enabled for authentication,
so no LDAP Authentication can take place. This essentially disables
LDAP Authentication.'), 'warning');
}
if ($auth_conf->hasError == FALSE) {
drupal_set_message(t('LDAP Authentication configuration saved'), 'status');
drupal_goto(LDAP_SERVERS_MENU_BASE_PATH . '/authentication');
}
else {
form_set_error($auth_conf->errorName, $auth_conf->errorMsg);
$auth_conf->clearError();
}
}
|