mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
180 lines
6.6 KiB
PHP
180 lines
6.6 KiB
PHP
<?php
|
|
/**
|
|
* Edit configuration for an individual auth plugin
|
|
*/
|
|
|
|
require_once '../config.php';
|
|
require_once $CFG->libdir.'/adminlib.php';
|
|
|
|
admin_externalpage_setup('userauthentication');
|
|
$auth = required_param('auth', PARAM_SAFEDIR);
|
|
$authplugin = get_auth_plugin($auth);
|
|
$err = array();
|
|
|
|
// save configuration changes
|
|
if ($frm = data_submitted()) {
|
|
|
|
if (!confirm_sesskey()) {
|
|
error(get_string('confirmsesskeybad', 'error'));
|
|
}
|
|
|
|
$frm = stripslashes_recursive($frm);
|
|
|
|
$authplugin->validate_form($frm, $err);
|
|
|
|
if (count($err) == 0) {
|
|
|
|
// save plugin config
|
|
if ($authplugin->process_config($frm)) {
|
|
|
|
// save field lock configuration
|
|
foreach ($frm as $name => $value) {
|
|
if (preg_match('/^lockconfig_(.+?)$/', $name, $matches)) {
|
|
$plugin = "auth/$auth";
|
|
$name = $matches[1];
|
|
if (!set_config($name, $value, $plugin)) {
|
|
error("Problem saving config $name as $value for plugin $plugin");
|
|
}
|
|
}
|
|
}
|
|
redirect("auth.php");
|
|
exit;
|
|
}
|
|
} else {
|
|
foreach ($err as $key => $value) {
|
|
$focus = "form.$key";
|
|
}
|
|
}
|
|
} else {
|
|
$frm = get_config("auth/$auth");
|
|
}
|
|
|
|
$user_fields = array("firstname", "lastname", "email", "phone1", "phone2", "department", "address", "city", "country", "description", "idnumber", "lang");
|
|
|
|
$modules = get_list_of_plugins('auth');
|
|
foreach ($modules as $module) {
|
|
$options[$module] = get_string("auth_{$module}title", 'auth');
|
|
}
|
|
asort($options);
|
|
|
|
// output configuration form
|
|
admin_externalpage_print_header();
|
|
|
|
// choose an authentication method
|
|
echo "<form $CFG->frametarget id=\"authmenu\" method=\"post\" action=\"auth_config.php\">\n";
|
|
echo "<div>\n";
|
|
echo "<input type=\"hidden\" name=\"sesskey\" value=\"".$USER->sesskey."\" />\n";
|
|
echo "<input type=\"hidden\" name=\"auth\" value=\"".$auth."\" />\n";
|
|
|
|
// auth plugin description
|
|
print_simple_box_start('center', '80%');
|
|
print_heading($options[$auth]);
|
|
print_simple_box_start('center', '60%', '', 5, 'informationbox');
|
|
print_string("auth_{$auth}description", 'auth');
|
|
print_simple_box_end();
|
|
echo "<hr />\n";
|
|
$authplugin->config_form($frm, $err, $user_fields);
|
|
print_simple_box_end();
|
|
echo '<p style="text-align: center"><input type="submit" value="' . get_string("savechanges") . "\" /></p>\n";
|
|
echo "</div>\n";
|
|
echo "</form>\n";
|
|
|
|
admin_externalpage_print_footer();
|
|
exit;
|
|
|
|
/// Functions /////////////////////////////////////////////////////////////////
|
|
|
|
// Good enough for most auth plugins
|
|
// but some may want a custom one if they are offering
|
|
// other options
|
|
// Note: lockconfig_ fields have special handling.
|
|
function print_auth_lock_options ($auth, $user_fields, $helptext, $retrieveopts, $updateopts) {
|
|
|
|
echo '<tr><td colspan="3">';
|
|
if ($retrieveopts) {
|
|
print_heading(get_string('auth_data_mapping', 'auth'));
|
|
} else {
|
|
print_heading(get_string('auth_fieldlocks', 'auth'));
|
|
}
|
|
echo '</td></tr>';
|
|
|
|
$lockoptions = array ('unlocked' => get_string('unlocked', 'auth'),
|
|
'unlockedifempty' => get_string('unlockedifempty', 'auth'),
|
|
'locked' => get_string('locked', 'auth'));
|
|
$updatelocaloptions = array('oncreate' => get_string('update_oncreate', 'auth'),
|
|
'onlogin' => get_string('update_onlogin', 'auth'));
|
|
$updateextoptions = array('0' => get_string('update_never', 'auth'),
|
|
'1' => get_string('update_onupdate', 'auth'));
|
|
|
|
$pluginconfig = get_config("auth/$auth");
|
|
|
|
// helptext is on a field with rowspan
|
|
if (empty($helptext)) {
|
|
$helptext = ' ';
|
|
}
|
|
|
|
foreach ($user_fields as $field) {
|
|
|
|
// Define some vars we'll work with
|
|
if (!isset($pluginconfig->{"field_map_$field"})) {
|
|
$pluginconfig->{"field_map_$field"} = '';
|
|
}
|
|
if (!isset($pluginconfig->{"field_updatelocal_$field"})) {
|
|
$pluginconfig->{"field_updatelocal_$field"} = '';
|
|
}
|
|
if (!isset($pluginconfig->{"field_updateremote_$field"})) {
|
|
$pluginconfig->{"field_updateremote_$field"} = '';
|
|
}
|
|
if (!isset($pluginconfig->{"field_lock_$field"})) {
|
|
$pluginconfig->{"field_lock_$field"} = '';
|
|
}
|
|
|
|
// define the fieldname we display to the user
|
|
$fieldname = $field;
|
|
if ($fieldname === 'lang') {
|
|
$fieldname = get_string('language');
|
|
} elseif (preg_match('/^(.+?)(\d+)$/', $fieldname, $matches)) {
|
|
$fieldname = get_string($matches[1]) . ' ' . $matches[2];
|
|
} else {
|
|
$fieldname = get_string($fieldname);
|
|
}
|
|
|
|
if ($retrieveopts) {
|
|
$varname = 'field_map_' . $field;
|
|
|
|
echo '<tr valign="top"><td align="right">';
|
|
echo '<label for="lockconfig_'.$varname.'">'.$fieldname.'</label>';
|
|
echo '</td><td>';
|
|
|
|
echo "<input id=\"lockconfig_{$varname}\" name=\"lockconfig_{$varname}\" type=\"text\" size=\"30\" value=\"{$pluginconfig->$varname}\" />";
|
|
echo '<div style="text-align: right">';
|
|
echo '<label for="menulockconfig_field_updatelocal_'.$field.'">'.get_string('auth_updatelocal', 'auth') . '</label> ';
|
|
choose_from_menu($updatelocaloptions, "lockconfig_field_updatelocal_{$field}", $pluginconfig->{"field_updatelocal_$field"}, "");
|
|
echo '<br />';
|
|
if ($updateopts) {
|
|
echo '<label for="menulockconfig_field_updateremote_'.$field.'">'.get_string('auth_updateremote', 'auth') . '</label> ';
|
|
choose_from_menu($updateextoptions, "lockconfig_field_updateremote_{$field}", $pluginconfig->{"field_updateremote_$field"}, "");
|
|
echo '<br />';
|
|
|
|
|
|
}
|
|
echo '<label for="menulockconfig_field_lock_'.$field.'">'.get_string('auth_fieldlock', 'auth') . '</label> ';
|
|
choose_from_menu($lockoptions, "lockconfig_field_lock_{$field}", $pluginconfig->{"field_lock_$field"}, "");
|
|
echo '</div>';
|
|
} else {
|
|
echo '<tr valign="top"><td align="right">';
|
|
echo '<label for="menulockconfig_field_lock_'.$field.'">'.$fieldname.'</label>';
|
|
echo '</td><td>';
|
|
choose_from_menu($lockoptions, "lockconfig_field_lock_{$field}", $pluginconfig->{"field_lock_$field"}, "");
|
|
}
|
|
echo '</td>';
|
|
if (!empty($helptext)) {
|
|
echo '<td rowspan="' . count($user_fields) . '">' . $helptext . '</td>';
|
|
$helptext = '';
|
|
}
|
|
echo '</tr>';
|
|
}
|
|
}
|
|
|
|
?>
|