\n" .
"
\n" .
"
$sensor_descr
$sensor_current";
//Display low and high limit if they are not null (format_si() is changing null to '0')
if (!is_null($sensor['sensor_limit_low'])) {
echo " low: $sensor_limit_low";
}
if (!is_null($sensor['sensor_limit_low_warn'])) {
echo " low_warn: $sensor_limit_low_warn";
}
if (!is_null($sensor['sensor_limit_warn'])) {
echo " high_warn: $sensor_limit_warn";
}
if (!is_null($sensor['sensor_limit'])) {
echo " high: $sensor_limit";
}
echo "
" .
"
\n" .
" \n";
$graph_array['id'] = $sensor['sensor_id'];
$graph_array['type'] = 'sensor_' . $sensor['sensor_class'];
include 'includes/html/print-graphrow.inc.php';
echo "
\n" .
"\n";
}