2010-02-11 09:21:32 +00:00
< ? php
if ( $_SESSION [ 'userlevel' ] >= '5' ) {
2010-06-25 23:16:04 +00:00
$sql = " SELECT * FROM `sensors` AS S, `devices` AS D WHERE S.sensor_class='fanspeed' AND S.device_id = D.device_id ORDER BY D.hostname, S.sensor_descr " ;
2010-02-11 09:21:32 +00:00
} else {
2010-06-25 23:16:04 +00:00
$sql = " SELECT * FROM `sensors` AS S, `devices` AS D, devices_perms as P WHERE S.sensor_class='fanspeed' AND S.device_id = D.device_id AND D.device_id = P.device_id AND P.user_id = ' " . $_SESSION [ 'user_id' ] . " ' ORDER BY D.hostname, S.sensor_descr " ;
2010-02-11 09:21:32 +00:00
}
2010-07-24 19:14:41 +00:00
$graph_type = " sensor_fanspeed " ;
2010-02-11 09:21:32 +00:00
$query = mysql_query ( $sql );
echo ( '<table cellspacing="0" cellpadding="2" width="100%">' );
echo ( ' < tr class = tablehead >
< th width = " 280 " > Device </ th >
< th width = " 280 " > Fan </ th >
< th ></ th >
< th ></ th >
< th width = " 100 " > Current </ th >
< th width = " 100 " > Alert </ th >
< th > Notes </ th >
</ tr > ' );
$row = 1 ;
while ( $fan = mysql_fetch_array ( $query ))
{
if ( is_integer ( $row / 2 )) { $row_colour = $list_colour_a ; } else { $row_colour = $list_colour_b ; }
2010-07-24 19:14:41 +00:00
$weekly_fan = " graph.php?id= " . $fan [ 'sensor_id' ] . " &type= " . $graph_type . " &from= $week &to= $now &width=500&height=150 " ;
2010-11-21 18:21:36 +00:00
$fan_popup = " <a href= \" graphs/ " . $fan [ 'sensor_id' ] . " / " . $graph_type . " / \" onmouseover= \" return overlib('<img src= \ ' $weekly_fan\ '>', LEFT); \" onmouseout= \" return nd(); \" >
2010-06-25 23:16:04 +00:00
" . $fan['sensor_descr'] . " </ a > " ;
2010-02-11 09:21:32 +00:00
2010-06-25 23:16:04 +00:00
if ( $fan [ 'sensor_current' ] <= $fan [ 'sensor_limit' ]) { $alert = '<img src="images/16/flag_red.png" alt="alert" />' ; } else { $alert = " " ; }
2010-02-11 09:21:32 +00:00
2010-07-24 19:14:41 +00:00
$fan_day = " graph.php?id= " . $fan [ 'sensor_id' ] . " &type= " . $graph_type . " &from= $day &to= $now &width=300&height=100 " ;
$fan_week = " graph.php?id= " . $fan [ 'sensor_id' ] . " &type= " . $graph_type . " &from= $week &to= $now &width=300&height=100 " ;
$fan_month = " graph.php?id= " . $fan [ 'sensor_id' ] . " &type= " . $graph_type . " &from= $month &to= $now &width=300&height=100 " ;
$fan_year = " graph.php?id= " . $fan [ 'sensor_id' ] . " &type= " . $graph_type . " &from= $year &to= $now &width=300&height=100 " ;
2010-02-11 09:21:32 +00:00
2010-07-24 19:14:41 +00:00
$fan_minigraph = " <img src='graph.php?id= " . $fan [ 'sensor_id' ] . " &type= " . $graph_type . " &from= $day &to= $now &width=100&height=20' " ;
2010-06-25 23:16:04 +00:00
$fan_minigraph .= " onmouseover= \" return overlib('<div class=list-large> " . $fan [ 'hostname' ] . " - " . $fan [ 'sensor_descr' ];
2010-02-11 09:21:32 +00:00
$fan_minigraph .= " </div><div style= \ 'width: 750px \ '><img src= \ ' $fan_day\ '><img src= \ ' $fan_week\ '><img src= \ ' $fan_month\ '><img src= \ ' $fan_year\ '></div>', RIGHT " . $config [ 'overlib_defaults' ] . " ); \" onmouseout= \" return nd(); \" > " ;
echo ( " <tr bgcolor= $row_colour >
2010-08-02 22:09:52 +00:00
< td class = list - bold > " . generate_device_link( $fan ) . " </ td >
2010-02-11 09:21:32 +00:00
< td > $fan_popup </ td >
< td > $fan_minigraph </ td >
< td width = 100 > $alert </ td >
2010-06-25 23:16:04 +00:00
< td style = 'text-align: center; font-weight: bold;' > " . $fan['sensor_current'] . " rpm </ td >
< td style = 'text-align: center' > " . $fan['sensor_limit'] . " rpm </ td >
< td > " . (isset( $fan['sensor_notes'] ) ? $fan['sensor_notes'] : '') . " </ td >
2010-02-11 09:21:32 +00:00
</ tr > \n " );
2010-06-12 13:37:39 +00:00
if ( $_GET [ 'optb' ] == " graphs " ) { ## If graphs
echo ( " <tr bgcolor=' $row_colour '><td colspan=6> " );
2010-07-24 19:14:41 +00:00
$daily_graph = " graph.php?id= " . $fan [ 'sensor_id' ] . " &type= " . $graph_type . " &from= $day &to= $now &width=211&height=100 " ;
$daily_url = " graph.php?id= " . $fan [ 'sensor_id' ] . " &type= " . $graph_type . " &from= $day &to= $now &width=400&height=150 " ;
2010-06-12 13:37:39 +00:00
2010-07-24 19:14:41 +00:00
$weekly_graph = " graph.php?id= " . $fan [ 'sensor_id' ] . " &type= " . $graph_type . " &from= $week &to= $now &width=211&height=100 " ;
$weekly_url = " graph.php?id= " . $fan [ 'sensor_id' ] . " &type= " . $graph_type . " &from= $week &to= $now &width=400&height=150 " ;
2010-06-12 13:37:39 +00:00
2010-07-24 19:14:41 +00:00
$monthly_graph = " graph.php?id= " . $fan [ 'sensor_id' ] . " &type= " . $graph_type . " &from= $month &to= $now &width=211&height=100 " ;
$monthly_url = " graph.php?id= " . $fan [ 'sensor_id' ] . " &type= " . $graph_type . " &from= $month &to= $now &width=400&height=150 " ;
2010-06-12 13:37:39 +00:00
2010-07-24 19:14:41 +00:00
$yearly_graph = " graph.php?id= " . $fan [ 'sensor_id' ] . " &type= " . $graph_type . " &from= $year &to= $now &width=211&height=100 " ;
$yearly_url = " graph.php?id= " . $fan [ 'sensor_id' ] . " &type= " . $graph_type . " &from= $year &to= $now &width=400&height=150 " ;
2010-06-12 13:37:39 +00:00
echo ( " <a onmouseover= \" return overlib('<img src= \ ' $daily_url\ '>', LEFT); \" onmouseout= \" return nd(); \" >
< img src = '$daily_graph' border = 0 ></ a > " );
echo ( " <a onmouseover= \" return overlib('<img src= \ ' $weekly_url\ '>', LEFT); \" onmouseout= \" return nd(); \" >
< img src = '$weekly_graph' border = 0 ></ a > " );
echo ( " <a onmouseover= \" return overlib('<img src= \ ' $monthly_url\ '>', LEFT); \" onmouseout= \" return nd(); \" >
< img src = '$monthly_graph' border = 0 ></ a > " );
echo ( " <a onmouseover= \" return overlib('<img src= \ ' $yearly_url\ '>', LEFT); \" onmouseout= \" return nd(); \" >
< img src = '$yearly_graph' border = 0 ></ a > " );
echo ( " </td></tr> " );
} # endif graphs
2010-02-11 09:21:32 +00:00
$row ++ ;
}
echo ( " </table> " );
?>