2009-12-18 03:09:05 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Handles tabs for the mnet pages.
|
|
|
|
* We assume that $currenttab is defined
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
if (!defined('MOODLE_INTERNAL')) {
|
|
|
|
die('Direct access to this script is forbidden.'); // It must be included from a Moodle page
|
|
|
|
}
|
|
|
|
|
|
|
|
$logurl = $CFG->wwwroot.
|
|
|
|
'/course/report/log/index.php?chooselog=1&showusers=1&showcourses=1&host_course='.$mnet_peer->id.
|
|
|
|
'%2F1&user='.'0'.
|
|
|
|
'&date=0'.
|
|
|
|
'&modid=&modaction=0&logformat=showashtml';
|
|
|
|
$tabs = array();
|
|
|
|
if (isset($mnet_peer->id) && $mnet_peer->id > 0) {
|
|
|
|
$tabs[] = new tabobject('mnetdetails', 'peers.php?step=update&hostid='.$mnet_peer->id, $strmnetedithost, $strmnetedithost, false);
|
|
|
|
$tabs[] = new tabobject('mnetservices', 'mnet_services.php?step=list&hostid='.$mnet_peer->id, $strmnetservices, $strmnetservices, false);
|
|
|
|
$tabs[] = new tabobject('mnetthemes', 'mnet_themes.php?step=list&hostid='.$mnet_peer->id, $strmnetthemes, $strmnetthemes, false);
|
2009-12-18 03:20:21 +00:00
|
|
|
if ($mnet_peer->application->name == 'moodle' && $mnet_peer->id != $CFG->mnet_all_hosts_id) {
|
2009-12-18 03:09:05 +00:00
|
|
|
$tabs[] = new tabobject('mnetlog', $logurl, $strmnetlog, $strmnetlog, false);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$tabs[] = new tabobject('mnetdetails', '#', $strmnetedithost, $strmnetedithost, false);
|
|
|
|
}
|
|
|
|
print_tabs(array($tabs), $currenttab);
|