mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
48 lines
1.1 KiB
PHP
48 lines
1.1 KiB
PHP
![]() |
<?php
|
||
|
|
||
|
$bgp_count = mysql_result(mysql_query("select count(*) from bgpPeers WHERE device_id = '" . $device['device_id'] . "'"), 0);
|
||
|
|
||
|
$datas[] = 'overview';
|
||
|
if ($bgp_count) { $datas[] = 'bgp'; }
|
||
|
|
||
|
$type_text['overview'] = "Overview";
|
||
|
$type_text['bgp'] = "BGP";
|
||
|
|
||
|
print_optionbar_start();
|
||
|
|
||
|
if (!$_GET['opta']) { $_GET['opta'] = "overview"; }
|
||
|
|
||
|
unset($sep);
|
||
|
foreach ($datas as $type)
|
||
|
{
|
||
|
echo($sep);
|
||
|
|
||
|
if ($_GET['opta'] == $type)
|
||
|
{
|
||
|
echo('<span class="pagemenu-selected">');
|
||
|
}
|
||
|
|
||
|
echo("<a href='".$config['base_url']."/device/".$device['device_id']."/routing/" . $type . ($_GET['optb'] ? "/" . $_GET['optb'] : ''). "/'> " . $type_text[$type] ."</a>");
|
||
|
if ($_GET['opta'] == $type) { echo("</span>"); }
|
||
|
$sep = " | ";
|
||
|
}
|
||
|
|
||
|
print_optionbar_end();
|
||
|
|
||
|
if (is_file("pages/device/routing/".mres($_GET['opta']).".inc.php"))
|
||
|
{
|
||
|
include("pages/device/routing/".mres($_GET['opta']).".inc.php");
|
||
|
} else {
|
||
|
foreach ($datas as $type)
|
||
|
{
|
||
|
if ($type != "overview")
|
||
|
{
|
||
|
$graph_title = $type_text[$type];
|
||
|
$graph_type = "device_".$type;
|
||
|
include("includes/print-device-graph.php");
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|