MDL-25220 Question editors need to support subdirs
[moodle.git] / admin / auth_config.php
blob71dafdfc57a872db449dad8c19b3255a7db1940d
1 <?php
2 /**
3 * Edit configuration for an individual auth plugin
4 */
6 require_once '../config.php';
7 require_once $CFG->libdir.'/adminlib.php';
9 $auth = required_param('auth', PARAM_SAFEDIR);
10 $PAGE->set_pagetype('admin-auth-' . $auth);
12 admin_externalpage_setup('authsetting'.$auth);
14 $authplugin = get_auth_plugin($auth);
15 $err = array();
17 $returnurl = "$CFG->wwwroot/$CFG->admin/settings.php?section=manageauths";
19 // save configuration changes
20 if ($frm = data_submitted() and confirm_sesskey()) {
22 $authplugin->validate_form($frm, $err);
24 if (count($err) == 0) {
26 // save plugin config
27 if ($authplugin->process_config($frm)) {
29 // save field lock configuration
30 foreach ($frm as $name => $value) {
31 if (preg_match('/^lockconfig_(.+?)$/', $name, $matches)) {
32 $plugin = "auth/$auth";
33 $name = $matches[1];
34 set_config($name, $value, $plugin);
37 redirect($returnurl);
38 exit;
40 } else {
41 foreach ($err as $key => $value) {
42 $focus = "form.$key";
45 } else {
46 $frmlegacystyle = get_config('auth/'.$auth);
47 $frmnewstyle = get_config('auth_'.$auth);
48 $frm = (object)array_merge((array)$frmlegacystyle, (array)$frmnewstyle);
51 $user_fields = $authplugin->userfields;
52 //$user_fields = array("firstname", "lastname", "email", "phone1", "phone2", "institution", "department", "address", "city", "country", "description", "idnumber", "lang");
54 /// Get the auth title (from core or own auth lang files)
55 $authtitle = $authplugin->get_title();
56 /// Get the auth descriptions (from core or own auth lang files)
57 $authdescription = $authplugin->get_description();
59 // output configuration form
60 echo $OUTPUT->header();
62 // choose an authentication method
63 echo "<form id=\"authmenu\" method=\"post\" action=\"auth_config.php\">\n";
64 echo "<div>\n";
65 echo "<input type=\"hidden\" name=\"sesskey\" value=\"".sesskey()."\" />\n";
66 echo "<input type=\"hidden\" name=\"auth\" value=\"".$auth."\" />\n";
68 // auth plugin description
69 echo $OUTPUT->box_start();
70 echo $OUTPUT->heading($authtitle);
71 echo $OUTPUT->box_start('informationbox');
72 echo $authdescription;
73 echo $OUTPUT->box_end();
74 echo "<hr />\n";
75 $authplugin->config_form($frm, $err, $user_fields);
76 echo $OUTPUT->box_end();
77 echo '<p style="text-align: center"><input type="submit" value="' . get_string("savechanges") . "\" /></p>\n";
78 echo "</div>\n";
79 echo "</form>\n";
81 echo $OUTPUT->footer();
82 exit;
84 /// Functions /////////////////////////////////////////////////////////////////
86 // Good enough for most auth plugins
87 // but some may want a custom one if they are offering
88 // other options
89 // Note: lockconfig_ fields have special handling.
90 function print_auth_lock_options ($auth, $user_fields, $helptext, $retrieveopts, $updateopts) {
91 global $OUTPUT;
92 echo '<tr><td colspan="3">';
93 if ($retrieveopts) {
94 echo $OUTPUT->heading(get_string('auth_data_mapping', 'auth'));
95 } else {
96 echo $OUTPUT->heading(get_string('auth_fieldlocks', 'auth'));
98 echo '</td></tr>';
100 $lockoptions = array ('unlocked' => get_string('unlocked', 'auth'),
101 'unlockedifempty' => get_string('unlockedifempty', 'auth'),
102 'locked' => get_string('locked', 'auth'));
103 $updatelocaloptions = array('oncreate' => get_string('update_oncreate', 'auth'),
104 'onlogin' => get_string('update_onlogin', 'auth'));
105 $updateextoptions = array('0' => get_string('update_never', 'auth'),
106 '1' => get_string('update_onupdate', 'auth'));
108 $pluginconfig = get_config("auth/$auth");
110 // helptext is on a field with rowspan
111 if (empty($helptext)) {
112 $helptext = '&nbsp;';
115 foreach ($user_fields as $field) {
117 // Define some vars we'll work with
118 if (!isset($pluginconfig->{"field_map_$field"})) {
119 $pluginconfig->{"field_map_$field"} = '';
121 if (!isset($pluginconfig->{"field_updatelocal_$field"})) {
122 $pluginconfig->{"field_updatelocal_$field"} = '';
124 if (!isset($pluginconfig->{"field_updateremote_$field"})) {
125 $pluginconfig->{"field_updateremote_$field"} = '';
127 if (!isset($pluginconfig->{"field_lock_$field"})) {
128 $pluginconfig->{"field_lock_$field"} = '';
131 // define the fieldname we display to the user
132 $fieldname = $field;
133 if ($fieldname === 'lang') {
134 $fieldname = get_string('language');
135 } elseif (preg_match('/^(.+?)(\d+)$/', $fieldname, $matches)) {
136 $fieldname = get_string($matches[1]) . ' ' . $matches[2];
137 } elseif ($fieldname == 'url') {
138 $fieldname = get_string('webpage');
139 } else {
140 $fieldname = get_string($fieldname);
142 if ($retrieveopts) {
143 $varname = 'field_map_' . $field;
145 echo '<tr valign="top"><td align="right">';
146 echo '<label for="lockconfig_'.$varname.'">'.$fieldname.'</label>';
147 echo '</td><td>';
149 echo "<input id=\"lockconfig_{$varname}\" name=\"lockconfig_{$varname}\" type=\"text\" size=\"30\" value=\"{$pluginconfig->$varname}\" />";
150 echo '<div style="text-align: right">';
151 echo '<label for="menulockconfig_field_updatelocal_'.$field.'">'.get_string('auth_updatelocal', 'auth') . '</label>&nbsp;';
152 echo html_writer::select($updatelocaloptions, "lockconfig_field_updatelocal_{$field}", $pluginconfig->{"field_updatelocal_$field"}, false);
153 echo '<br />';
154 if ($updateopts) {
155 echo '<label for="menulockconfig_field_updateremote_'.$field.'">'.get_string('auth_updateremote', 'auth') . '</label>&nbsp;';
156 echo html_writer::select($updateextoptions, "lockconfig_field_updateremote_{$field}", $pluginconfig->{"field_updateremote_$field"}, false);
157 echo '<br />';
161 echo '<label for="menulockconfig_field_lock_'.$field.'">'.get_string('auth_fieldlock', 'auth') . '</label>&nbsp;';
162 echo html_writer::select($lockoptions, "lockconfig_field_lock_{$field}", $pluginconfig->{"field_lock_$field"}, false);
163 echo '</div>';
164 } else {
165 echo '<tr valign="top"><td align="right">';
166 echo '<label for="menulockconfig_field_lock_'.$field.'">'.$fieldname.'</label>';
167 echo '</td><td>';
168 echo html_writer::select($lockoptions, "lockconfig_field_lock_{$field}", $pluginconfig->{"field_lock_$field"}, false);
170 echo '</td>';
171 if (!empty($helptext)) {
172 echo '<td rowspan="' . count($user_fields) . '">' . $helptext . '</td>';
173 $helptext = '';
175 echo '</tr>';