HEX
Server: Apache/2
System: Linux deejung.jaideehosting.com 3.10.0-693.17.1.el7.x86_64 #1 SMP Thu Jan 25 20:13:58 UTC 2018 x86_64
User: mbp (1631)
PHP: 7.4.15
Disabled: NONE
Upload Files
File: /home/mbp/public_html/biology/auth/mnet/config.html
<?php
global $OUTPUT;
// set to defaults if undefined
if (!isset($config->rpc_negotiation_timeout)) {
    $config->rpc_negotiation_timeout = '30';
}
/*
 See MDL-21327   for why this is commented out
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'));
}

?>
<div id="mnetconfig">
<table cellspacing="0" cellpadding="5">

<tr valign="top" class="required">
    <td align="right"><label for="rpc_negotiation_timeout"><?php print_string('rpc_negotiation_timeout', 'auth_mnet'); ?>: </label></td>
    <td>
        <input name="rpc_negotiation_timeout" id="rpc_negotiation_timeout" type="text" size="5" value="<?php echo $config->rpc_negotiation_timeout ?>" />
        <?php

        if (isset($err['rpc_negotiation_timeout'])) {
            echo $OUTPUT->error_text($err['rpc_negotiation_timeout']);
        }

        ?>
    </td>
    <td>
        <?php

        print_string('auth_mnet_rpc_negotiation_timeout', 'auth_mnet');

        ?>
    </td>
</tr>

<?php /*
 See MDL-21327   for why this is commented out
<tr valign="top" class="required">
    <td align="right"><?php echo html_writer::label(get_string('auto_add_remote_users', 'auth_mnet'), 'menuauto_add_remote_users'); ?>: </td>
    <td>
        <?php

        echo html_writer::select($yesno, 'auto_add_remote_users', $config->auto_add_remote_users, false);

        ?>
    </td>
    <td>
        <?php

        print_string('auth_mnet_auto_add_remote_users', 'auth_mnet');

        ?>
    </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>
<?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>
<?php
}

// print_auth_lock_options($this->authtype, $user_fields, get_string('auth_fieldlocks_help', 'auth'), false, false);

?>
</table>
</div>