mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
28 lines
1.4 KiB
PHP
28 lines
1.4 KiB
PHP
<?php // $Id$
|
|
|
|
// This file defines settingpages and externalpages under the "mnet" category
|
|
|
|
if ($hassiteconfig) { // speedup for non-admins, add all caps used on this page
|
|
|
|
|
|
$ADMIN->add('mnet', new admin_externalpage('net', get_string('settings', 'mnet'),
|
|
"$CFG->wwwroot/$CFG->admin/mnet/index.php",
|
|
'moodle/site:config'));
|
|
|
|
$ADMIN->add('mnet', new admin_externalpage('mnetpeers', get_string('mnetpeers', 'mnet'),
|
|
"$CFG->wwwroot/$CFG->admin/mnet/peers.php",
|
|
'moodle/site:config'));
|
|
$ADMIN->add('mnet', new admin_externalpage('ssoaccesscontrol', get_string('ssoaccesscontrol', 'mnet'),
|
|
"$CFG->wwwroot/$CFG->admin/mnet/access_control.php",
|
|
'moodle/site:config'));
|
|
$ADMIN->add('mnet', new admin_externalpage('mnetenrol', get_string('mnetenrol', 'mnet'),
|
|
"$CFG->wwwroot/$CFG->admin/mnet/enr_hosts.php",
|
|
'moodle/site:config'));
|
|
$ADMIN->add('mnet', new admin_externalpage('trustedhosts', get_string('trustedhosts', 'mnet'),
|
|
"$CFG->wwwroot/$CFG->admin/mnet/trustedhosts.php",
|
|
'moodle/site:config'));
|
|
|
|
} // end of speedup
|
|
|
|
?>
|