mirror of
https://github.com/moodle/moodle.git
synced 2025-02-18 23:05:30 +01:00
* Extended set_config() * Implemented get_config() which takes over $CFG loading in setup.php * admin/auth.php has special handling if post vars starting in pluginconfig_ * admin/auth.php print_auth_lock_options() prints a form fragment -- being called from most plugins now * user/edit.php follows the new convention when locking down fields, both javascript UI and on POST. * admin/auth: More solid checking for auth GET/POST var. * admin/auth: print_auth_lock_options() now handles user field mapping options for LDAP and similar modules * admin/auth: user mapping options have moved to config_plugins table * auth/ldap module has migrated to using new field mapping vars -- simplified config.html a lot * auth settings migration to config_plugins
43 lines
1.4 KiB
HTML
43 lines
1.4 KiB
HTML
<?php
|
|
if (!isset($config->auth_nntphost)) {
|
|
$config->auth_nntphost = "127.0.0.1";
|
|
}
|
|
if (!isset($config->auth_nntpport)) {
|
|
$config->auth_nntpport = "119";
|
|
}
|
|
?>
|
|
|
|
<tr valign="top" class="required">
|
|
<td align="right">auth_nntphost:</td>
|
|
<td>
|
|
<input name="auth_nntphost" type="text" size="30" value="<?php echo $config->auth_nntphost?>" />
|
|
<?php if (isset($err["auth_nntphost"])) formerr($err["auth_nntphost"]); ?>
|
|
</td>
|
|
<td>
|
|
<?php print_string("auth_nntphost","auth") ?>
|
|
<?php print_string("auth_multiplehosts","auth") ?>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top" class="required">
|
|
<td align="right">auth_nntpport:</td>
|
|
<td>
|
|
<input name="auth_nntpport" type="text" size="6" value="<?php echo $config->auth_nntpport?>" />
|
|
<?php if (isset($err["auth_nntpport"])) formerr($err["auth_nntpport"]); ?>
|
|
</td>
|
|
<td>
|
|
<?php print_string("auth_nntpport","auth") ?>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right"><?php print_string("instructions", "auth") ?>:</td>
|
|
<td>
|
|
<textarea name="auth_instructions" cols="30" rows="10" wrap="virtual"><?php p($config->auth_instructions) ?></textarea>
|
|
</td>
|
|
<td>
|
|
<?php print_string("authinstructions","auth") ?>
|
|
<?php helpbutton("text", get_string("helptext")) ?>
|
|
</td>
|
|
</tr>
|
|
<?php print_auth_lock_options($auth, $user_fields, get_string('auth_fieldlocks_help', 'auth'), false, false); ?> |