3 // set to defaults if undefined
4 if (!isset($config->host_url
))
5 { $config->host_url
= ''; }
6 if (empty($config->ldapencoding
))
7 { $config->ldapencoding
= 'utf-8'; }
8 if (!isset($config->contexts
))
9 { $config->contexts
= ''; }
10 if (!isset($config->user_type
))
11 { $config->user_type
= 'default'; }
12 if (!isset($config->user_attribute
))
13 { $config->user_attribute
= ''; }
14 if (!isset($config->search_sub
))
15 { $config->search_sub
= ''; }
16 if (!isset($config->opt_deref
))
17 { $config->opt_deref
= LDAP_DEREF_NEVER
; }
18 if (!isset($config->preventpassindb
))
19 { $config->preventpassindb
= 0; }
20 if (!isset($config->bind_dn
))
21 {$config->bind_dn
= ''; }
22 if (!isset($config->bind_pw
))
23 {$config->bind_pw
= ''; }
24 if (!isset($config->version
))
25 {$config->version
= '2'; }
26 if (!isset($config->objectclass
))
27 {$config->objectclass
= ''; }
28 if (!isset($config->memberattribute
))
29 {$config->memberattribute
= ''; }
30 if (!isset($config->memberattribute_isdn
))
31 {$config->memberattribute_isdn
= ''; }
32 if (!isset($config->creators
))
33 {$config->creators
= ''; }
34 if (!isset($config->create_context
))
35 {$config->create_context
= ''; }
36 if (!isset($config->expiration
))
37 {$config->expiration
= ''; }
38 if (!isset($config->expiration_warning
))
39 {$config->expiration_warning
= '10'; }
40 if (!isset($config->expireattr
))
41 {$config->expireattr
= ''; }
42 if (!isset($config->gracelogins
))
43 {$config->gracelogins
= ''; }
44 if (!isset($config->graceattr
))
45 {$config->graceattr
= ''; }
46 if (!isset($config->auth_user_create
))
47 {$config->auth_user_create
= ''; }
48 if (!isset($config->forcechangepassword
))
49 {$config->forcechangepassword
= 0; }
50 if (!isset($config->stdchangepassword
))
51 {$config->stdchangepassword
= 0; }
52 if (!isset($config->passtype
))
53 {$config->passtype
= 'plaintext';}
54 if (!isset($config->changepasswordurl
))
55 {$config->changepasswordurl
= ''; }
56 if (!isset($config->removeuser
))
57 {$config->removeuser
= 0; }
59 $yesno = array( get_string('no'), get_string('yes') );
61 if (!function_exists('ldap_connect')) { // Is php4-ldap really there?
62 notify(get_string('auth_ldap_noextension','auth'));
66 <table cellspacing=
"0" cellpadding=
"5" border=
"0">
70 <h4><?php print_string('auth_ldap_server_settings', 'auth') ?> </h4>
74 <tr valign=
"top" class=
"required">
75 <td align=
"right"><label for=
"host_url"><?php print_string('auth_ldap_host_url_key','auth') ?></label></td>
77 <input name=
"host_url" id=
"host_url" type=
"text" size=
"30" value=
"<?php echo $config->host_url?>" />
78 <?php
if (isset($err['host_url'])) formerr($err['host_url']); ?>
81 <?php print_string('auth_ldap_host_url','auth') ?>
85 <tr valign=
"top" class=
"required">
86 <td align=
"right"><label for=
"menuversion"><?php print_string('auth_ldap_version_key','auth') ?></label></td>
92 choose_from_menu($versions, 'version', $config->version
, '');
93 if (isset($err['version'])) formerr($err['version']);
97 <?php print_string('auth_ldap_version','auth') ?>
101 <tr valign=
"top" class=
"required">
102 <td align=
"right"><label for=
"ldapencoding"><?php print_string("auth_ldap_ldap_encoding_key", "auth") ?></label></td>
104 <input id=
"ldapencoding" name=
"ldapencoding" type=
"text" value=
"<?php echo $config->ldapencoding ?>" />
107 if (isset($err['ldapencoding'])) {
108 formerr($err['ldapencoding']);
113 <td><?php print_string('auth_ldap_ldap_encoding', 'auth') ?></td>
118 <h4><?php print_string('auth_ldap_bind_settings', 'auth') ?> </h4>
122 <tr valign=
"top" class=
"required">
123 <td align=
"right"><label for=
"menupreventpassindb"><?php print_string('auth_ldap_preventpassindb_key','auth') ?></label></td>
125 <?php choose_from_menu($yesno, 'preventpassindb', $config->preventpassindb
, ''); ?>
127 <?php print_string('auth_ldap_preventpassindb','auth') ?>
131 <tr valign=
"top" class=
"required">
132 <td align=
"right"><label for=
"bind_dn"><?php print_string('auth_ldap_bind_dn_key','auth') ?></label></td>
134 <input name=
"bind_dn" id=
"bind_dn" type=
"text" size=
"30" value=
"<?php echo $config->bind_dn?>" />
135 <?php
if (isset($err['bind_dn'])) formerr($err['bind_dn']); ?>
137 <?php print_string('auth_ldap_bind_dn','auth') ?>
141 <tr valign=
"top" class=
"required">
142 <td align=
"right"><label for=
"bind_pw"><?php print_string('auth_ldap_bind_pw_key','auth') ?></label></td>
144 <input name=
"bind_pw" id=
"bind_pw" type=
"password" size=
"30" value=
"<?php echo $config->bind_pw?>" />
145 <?php
if (isset($err['bind_pw'])) formerr($err['bind_pw']); ?>
147 <?php print_string('auth_ldap_bind_pw','auth') ?>
153 <h4><?php print_string('auth_ldap_user_settings', 'auth') ?> </h4>
157 <tr valign=
"top" class=
"required">
158 <td align=
"right"><label for=
"menuuser_type"><?php print_string('auth_ldap_user_type_key','auth') ?></label></td>
160 <?php choose_from_menu($this->ldap_suppported_usertypes(), 'user_type', $config->user_type
, ''); ?>
161 <?php if (isset($err['user_type'])) formerr($err['user_type']); ?>
164 <?php print_string('auth_ldap_user_type', 'auth') ?>
168 <tr valign=
"top" class=
"required">
169 <td align=
"right"><label for=
"contexts"><?php print_string('auth_ldap_contexts_key','auth') ?></label></td>
171 <input name=
"contexts" id=
"contexts" type=
"text" size=
"30" value=
"<?php echo $config->contexts?>" />
172 <?php
if (isset($err['contexts'])) formerr($err['contexts']); ?>
175 <?php print_string('auth_ldap_contexts', 'auth') ?>
179 <tr valign=
"top" class=
"required">
180 <td align=
"right"><label for=
"menusearch_sub"><?php print_string('auth_ldap_search_sub_key','auth') ?></label></td>
182 <?php choose_from_menu($yesno, 'search_sub', $config->search_sub
, ''); ?>
185 <?php print_string('auth_ldap_search_sub','auth') ?>
189 <tr valign=
"top" class=
"required">
190 <td align=
"right"><label for=
"menuopt_deref"><?php print_string('auth_ldap_opt_deref_key','auth') ?></label></td>
193 $opt_deref = array();
194 $opt_deref[LDAP_DEREF_NEVER
] = get_string('no');
195 $opt_deref[LDAP_DEREF_ALWAYS
] = get_string('yes');
196 choose_from_menu($opt_deref, 'opt_deref', $config->opt_deref
, LDAP_DEREF_NEVER
, '');
197 if (isset($err['opt_deref'])) formerr($err['opt_deref']);
201 <?php print_string('auth_ldap_opt_deref','auth') ?>
207 <tr valign=
"top" class=
"required">
208 <td align=
"right"><label for=
"user_attribute"><?php print_string('auth_ldap_user_attribute_key','auth') ?></label></td>
210 <input name=
"user_attribute" id=
"user_attribute" type=
"text" size=
"30" value=
"<?php echo $config->user_attribute?>" />
211 <?php
if (isset($err['user_attribute'])) formerr($err['user_attribute']); ?>
214 <?php print_string('auth_ldap_user_attribute','auth') ?>
218 <tr valign=
"top" class=
"required">
219 <td align=
"right"><label for=
"memberattribute"><?php print_string('auth_ldap_memberattribute_key','auth') ?></label></td>
221 <input name=
"memberattribute" id=
"memberattribute" type=
"text" size=
"30" value=
"<?php echo $config->memberattribute?>" />
222 <?php
if (isset($err['memberattribute'])) formerr($err['memberattribute']); ?>
224 <?php print_string('auth_ldap_memberattribute','auth') ?>
228 <tr valign=
"top" class=
"required">
229 <td align=
"right"><label for=
"memberattribute_isdn"><?php print_string('auth_ldap_memberattribute_isdn_key','auth') ?></label></td>
231 <input name=
"memberattribute_isdn" id=
"memberattribute_isdn" type=
"text" size=
"30" value=
"<?php echo $config->memberattribute_isdn?>" />
232 <?php
if (isset($err['memberattribute_isdn'])) formerr($err['memberattribute_isdn']); ?>
234 <?php print_string('auth_ldap_memberattribute_isdn','auth') ?>
238 <tr valign=
"top" class=
"required">
239 <td align=
"right"><label for=
"objectclass"><?php print_string('auth_ldap_objectclass_key','auth') ?></label></td>
241 <input name=
"objectclass" id=
"objectclass" type=
"text" size=
"30" value=
"<?php echo $config->objectclass?>" />
242 <?php
if (isset($err['objectclass'])) formerr($err['objectclass']); ?>
245 <?php print_string('auth_ldap_objectclass','auth') ?>
251 <h4><?php print_string('forcechangepassword', 'auth') ?> </h4>
255 <tr valign=
"top" class=
"required">
256 <td align=
"right" valign=
"top"><label for=
"menuforcechangepassword"><?php print_string('forcechangepassword', 'auth') ?></label></td>
258 <?php choose_from_menu($yesno, 'forcechangepassword', $config->forcechangepassword
, ''); ?>
260 <td align=
"left" valign=
"top">
261 <p><?php print_string('forcechangepasswordfirst_help', 'auth') ?></p>
265 <tr valign=
"top" class=
"required">
266 <td align=
"right" valign=
"top"><label for=
"menustdchangepassword"><?php print_string('stdchangepassword', 'auth') ?></label></td>
268 <?php choose_from_menu($yesno, 'stdchangepassword', $config->stdchangepassword
, ''); ?>
270 <td align=
"left" valign=
"top">
271 <p><?php print_string('stdchangepassword_expl', 'auth') ?></p>
272 <p><?php print_string('stdchangepassword_explldap', 'auth') ?></p>
276 <tr valign=
"top" class=
"required">
277 <td align=
"right"><label for=
"menupasstype"><?php print_string('auth_ldap_passtype_key', 'auth') ?></label></td>
281 $passtype['plaintext'] = get_string('plaintext', 'auth');
282 $passtype['md5'] = get_string('md5', 'auth');
283 $passtype['sha1'] = get_string('sha1', 'auth');
284 choose_from_menu($passtype, 'passtype', $config->passtype
, '');
288 <td><?php print_string('auth_ldap_passtype', 'auth') ?></td>
292 <td align=
"right"><label for=
"changepasswordurl"><?php print_string('auth_ldap_changepasswordurl_key','auth') ?></label></td>
294 <input name=
"changepasswordurl" id=
"changepasswordurl" type=
"text" value=
"<?php echo $config->changepasswordurl ?>" />
297 if (isset($err['changepasswordurl'])) {
298 formerr($err['changepasswordurl']);
303 <td><?php print_string('changepasswordhelp', 'auth') ?></td>
308 <h4><?php print_string('auth_ldap_passwdexpire_settings', 'auth') ?> </h4>
312 <tr valign=
"top" class=
"required">
313 <td align=
"right"><label for=
"menuexpiration"><?php print_string('auth_ldap_expiration_key','auth') ?></label></td>
316 $expiration = array();
317 $expiration['0'] = 'no';
318 $expiration['1'] = 'LDAP';
319 choose_from_menu($expiration, 'expiration', $config->expiration
, '');
320 if (isset($err['expiration'])) formerr($err['expiration']);
324 <?php print_string('auth_ldap_expiration_desc','auth') ?>
329 <tr valign=
"top" class=
"required">
330 <td align=
"right"><label for=
"expiration_warning"><?php print_string('auth_ldap_expiration_warning_key','auth') ?></label></td>
332 <input name=
"expiration_warning" id=
"expiration_warning" type=
"text" size=
"2" value=
"<?php echo $config->expiration_warning?>" />
333 <?php
if (isset($err['expiration_warning'])) formerr($err['expiration_warning']);
337 <?php print_string('auth_ldap_expiration_warning_desc','auth') ?>
341 <tr valign=
"top" class=
"required">
342 <td align=
"right"><label for=
"expireattr"><?php print_string('auth_ldap_expireattr_key','auth') ?></label></td>
344 <input name=
"expireattr" id=
"expireattr" type=
"text" size=
"30" value=
"<?php echo $config->expireattr?>" />
345 <?php
if (isset($err['expireattr'])) formerr($err['expireattr']);
349 <?php print_string('auth_ldap_expireattr_desc','auth') ?>
353 <tr valign=
"top" class=
"required">
354 <td align=
"right"><label for=
"menugracelogins"><?php print_string('auth_ldap_gracelogins_key','auth') ?></label></td>
356 <?php choose_from_menu($yesno, 'gracelogins', $config->gracelogins
, ''); ?>
359 <?php print_string('auth_ldap_gracelogins_desc','auth') ?>
363 <tr valign=
"top" class=
"required">
364 <td align=
"right"><label for=
"graceattr"><?php print_string('auth_ldap_gracelogin_key','auth') ?></label></td>
366 <input name=
"graceattr" id=
"graceattr" type=
"text" size=
"30" value=
"<?php echo $config->graceattr?>" />
367 <?php
if (isset($err['graceattr'])) formerr($err['graceattr']);
371 <?php print_string('auth_ldap_graceattr_desc','auth') ?>
379 <h4><?php print_string('auth_user_create', 'auth') ?> </h4>
384 <td align=
"right"><label for=
"menuauth_user_create"><?php print_string('auth_ldap_auth_user_create_key','auth') ?></label></td>
386 <?php choose_from_menu($yesno, 'auth_user_create', $config->auth_user_create
, ''); ?>
389 <?php print_string("auth_user_creation","auth"); ?>
393 <tr valign=
"top" class=
"required">
394 <td align=
"right"><label for=
"create_context"><?php print_string('auth_ldap_create_context_key','auth') ?></label></td>
396 <input name=
"create_context" id=
"create_context" type=
"text" size=
"30" value=
"<?php echo $config->create_context?>" />
397 <?php
if (isset($err['create_context'])) formerr($err['create_context']); ?>
399 <?php print_string('auth_ldap_create_context','auth') ?>
406 <h4><?php print_string('coursecreators') ?> </h4>
410 <tr valign=
"top" class=
"required">
411 <td align=
"right"><label for=
"creators"><?php print_string('auth_ldap_creators_key','auth') ?></label></td>
413 <input name=
"creators" id=
"creators" type=
"text" size=
"30" value=
"<?php echo $config->creators?>" />
414 <?php
if (isset($err['creators'])) formerr($err['creators']); ?>
416 <?php print_string('auth_ldap_creators','auth') ?>
422 <h4><?php print_string('auth_sync_script', 'auth') ?> </h4>
427 <td align=
"right"><label for=
"menuremoveuser"><?php print_string('auth_remove_user_key','auth') ?></label></td>
430 $deleteopt = array();
431 $deleteopt['0'] = get_string('auth_remove_keep','auth');
432 $deleteopt['1'] = get_string('auth_remove_suspend','auth');
433 $deleteopt['2'] = get_string('auth_remove_delete','auth');
434 choose_from_menu($deleteopt, 'removeuser', $config->removeuser
, '');
438 <?php print_string('auth_remove_user','auth') ?>
444 $help = get_string('auth_ldapextrafields','auth');
445 $help .= get_string('auth_updatelocal_expl','auth');
446 $help .= get_string('auth_fieldlock_expl','auth');
447 $help .= get_string('auth_updateremote_expl','auth');
449 $help .= get_string('auth_updateremote_ldap','auth');
451 print_auth_lock_options('ldap', $user_fields, $help, true, true);