mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
git-svn-id: http://www.observium.org/svn/observer/trunk@1336 61d68cd4-352d-0410-923a-c4978735b2b8
73 lines
1.9 KiB
PHP
73 lines
1.9 KiB
PHP
<?php
|
|
|
|
$datas = array('Processors','Memory','Storage','Temperatures', 'Humidity', 'Fanspeeds', 'Voltages', 'Frequencies', 'Current');
|
|
|
|
if(!$_GET['opta']) { $_GET['opta'] = "processors"; }
|
|
if(!$_GET['optb']) { $_GET['optb'] = "nographs"; }
|
|
|
|
|
|
print_optionbar_start('', '');
|
|
|
|
$sep = "";
|
|
foreach ($datas as $texttype)
|
|
{
|
|
$type = strtolower($texttype);
|
|
echo($sep);
|
|
if ($_GET['opta'] == $type)
|
|
{
|
|
echo("<strong>");
|
|
echo('<img src="images/icons/'.$type.'.png" class="optionicon" />');
|
|
}
|
|
else
|
|
{
|
|
echo('<img src="images/icons/greyscale/'.$type.'.png" class="optionicon" />');
|
|
}
|
|
echo('<a href="'.$config['base_url'].'/health/' . $type . ($_GET['optb'] ? '/' . $_GET['optb'] : ''). '/"> ' . $texttype ."</a>\n");
|
|
if ($_GET['opta'] == $type) { echo("</strong>"); }
|
|
$sep = ' | ';
|
|
}
|
|
unset ($sep);
|
|
|
|
echo('<div style="float: right;">');
|
|
|
|
if($_GET['optb'] == "graphs") { echo('<strong>');
|
|
echo('<img src="images/icons/graphs.png" class="optionicon" />');
|
|
} else {
|
|
echo('<img src="images/icons/greyscale/graphs.png" class="optionicon" />');
|
|
}
|
|
echo('<a href="health/'. $_GET['opta'].'/graphs/"> Graphs</a>');
|
|
if($_GET['optb'] == "graphs") { echo('</strong>'); }
|
|
echo(' | ');
|
|
if($_GET['optb'] == "nographs") { echo('<strong>');
|
|
echo('<img src="images/icons/nographs.png" class="optionicon" />');
|
|
} else {
|
|
echo('<img src="images/icons/greyscale/nographs.png" class="optionicon" />');
|
|
}
|
|
echo('<a href="health/'. $_GET['opta'].'/nographs/"> No Graphs</a>');
|
|
if($_GET['optb'] == "nographs") { echo('</strong>'); }
|
|
|
|
|
|
echo('</div>');
|
|
|
|
print_optionbar_end();
|
|
|
|
switch ($_GET['opta'])
|
|
{
|
|
case 'processors':
|
|
case 'memory':
|
|
case 'storage':
|
|
case 'temperatures':
|
|
case 'humidity':
|
|
case 'voltages':
|
|
case 'fanspeeds':
|
|
case 'frequencies':
|
|
case 'current':
|
|
include('pages/health/'.$_GET['opta'].'.inc.php');
|
|
break;
|
|
default:
|
|
include('pages/health/temperatures.inc.php');
|
|
break;
|
|
}
|
|
|
|
?>
|