moodle/auth/mnet/config.html

90 lines
2.2 KiB
HTML
Raw Normal View History

2007-01-04 03:26:04 +00:00
<?php
// set to defaults if undefined
if (!isset($config->rpc_negotiation_timeout)) {
$config->rpc_negotiation_timeout = '30';
2007-01-04 03:26:04 +00:00
}
if (!isset ($config->auto_add_remote_users)) {
$config->auto_add_remote_users = '0';
}
$yesno = array(get_string('no'), get_string('yes'));
if (empty($CFG->mnet_dispatcher_mode) || $CFG->mnet_dispatcher_mode !== 'strict') {
echo $OUTPUT->box(get_string('mnetdisabled','mnet'));
}
2007-01-04 03:26:04 +00:00
?>
<div id="mnetconfig">
<table cellspacing="0" cellpadding="5">
2007-01-04 03:26:04 +00:00
<tr valign="top" class="required">
<td align="right"><?php print_string('rpc_negotiation_timeout', 'auth_mnet'); ?>: </td>
2007-01-04 03:26:04 +00:00
<td>
<input name="rpc_negotiation_timeout" type="text" size="5" value="<?php echo $config->rpc_negotiation_timeout ?>" />
<?php
if (isset($err['rpc_negotiation_timeout'])) {
formerr($err['rpc_negotiation_timeout']);
}
?>
</td>
<td>
<?php
print_string('auth_mnet_rpc_negotiation_timeout', 'auth_mnet');
2007-01-04 03:26:04 +00:00
?>
</td>
</tr>
<tr valign="top" class="required">
<td align="right"><?php print_string('auto_add_remote_users', 'auth_mnet'); ?>: </td>
2007-01-04 03:26:04 +00:00
<td>
<?php
echo $OUTPUT->select(html_select::make($yesno, 'auto_add_remote_users', $config->auto_add_remote_users, false));
2007-01-04 03:26:04 +00:00
?>
</td>
<td>
<?php
print_string('auth_mnet_auto_add_remote_users', 'auth_mnet');
2007-01-04 03:26:04 +00:00
?>
</td>
</tr>
<tr valign="top" class="required">
<td colspan="3"><?php print_string('auth_mnet_roamin', 'auth_mnet'); ?>: </td>
</tr>
<?php
foreach($id_providers as $host) {
?>
<tr valign="top" class="required">
<td align="right"><?php echo $host['name']; ?>: </td>
<td colspan="2"><?php echo $host['wwwroot']; ?> </td>
</tr>
2007-02-20 17:03:36 +00:00
<?php
}
?>
<tr valign="top" class="required">
<td colspan="3"><?php print_string('auth_mnet_roamout', 'auth_mnet'); ?>: </td>
</tr>
<?php
foreach($service_providers as $host) {
?>
<tr valign="top" class="required">
<td align="right"><?php echo $host['name']; ?>: </td>
<td colspan="2"><?php echo $host['wwwroot']; ?> </td>
</tr>
2007-02-20 17:03:36 +00:00
<?php
}
2007-01-04 03:26:04 +00:00
// print_auth_lock_options('mnet', $user_fields, get_string('auth_fieldlocks_help', 'auth'), false, false);
?>
</table>
</div>