37 lines
1022 B
HTML
37 lines
1022 B
HTML
<table cellspacing="0" cellpadding="5" border="0" align="center">
|
|
|
|
<tr valign="top">
|
|
<th align="center" colspan="3">Remote Servers:</th>
|
|
</tr>
|
|
<tr valign="top">
|
|
<td align="left" colspan="3">
|
|
<a href="<?php echo $CFG->wwwroot .'/enrol/mnet/remote_hosts.php?sesskey=' . sesskey(); ?>" >Manage Moodle Network Enrolments.</a><br/>
|
|
Servers configured: <?php echo count(array_keys($mnethosts)); ?>
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<th align="center" colspan="3">Local courses for external users:</th>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td align="right">allow_allcourses:</td>
|
|
<td>
|
|
<?php print choose_from_menu_yesno('enrol_mnet_allow_allcourses', $frm->enrol_mnet_allow_allcourses); ?>
|
|
</td>
|
|
<td>
|
|
<?php print_string("allow_allcourses", "enrol_mnet") ?>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td align="right">allowed_courses:</td>
|
|
<td>
|
|
<a href="<?php echo "$CFG->wwwroot/enrol/mnet/allowed_courses.php" ?>"><?php print_string('allowedcourseslinktext', 'enrol_mnet') ?></a>
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
</table>
|