clean up temperatures a bit, replace it by sensors in the menu bar, add fans and voltages though not working yet

git-svn-id: http://www.observium.org/svn/observer/trunk@798 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Tom Laermans
2010-02-09 16:36:06 +00:00
parent 4bec5c75e7
commit 57606eef00
3 changed files with 28 additions and 5 deletions

15
html/pages/sensors.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
switch ($_GET['opta'])
{
case 'temperatures':
case 'voltages':
case 'fans':
include('pages/sensors/'.$_GET['opta'].'.php');
break;
default:
include('pages/sensors/temperatures.php');
break;
}
?>