mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Refactor: use get_state_label() for the overview
* Move state translation to get_state_label()
Several html pages used similar database calls and sometimes very
different methodology to determine the state label and state text
before calling get_state_label(), so moved that part of the task
into the function itself instead of replicating the same code
multiple times on different pages.
* Move label creation to get_sensor_label_color()
Also removed a duplicate sensor class to unit function.
* Refactor some if/else statements for simplicity.
* Enable state translations for the inventory page.
* Remove blank line found at end of control structure
* Enable unit translation, fix typos.
* Change to dbFetchRow(), return string directly.
* Update functions.inc.php
* Stop displaying the raw value on state labels.
* Apply 1c7c3ca change for default case too.
56 lines
2.0 KiB
PHP
56 lines
2.0 KiB
PHP
<?php
|
|
|
|
$row = 1;
|
|
|
|
foreach (dbFetchRows('SELECT * FROM `sensors` WHERE `sensor_class` = ? AND `device_id` = ? ORDER BY `sensor_descr`', array($class, $device['device_id'])) as $sensor) {
|
|
if (!is_integer($row / 2)) {
|
|
$row_colour = \LibreNMS\Config::get('list_colour.even');
|
|
} else {
|
|
$row_colour = \LibreNMS\Config::get('list_colour.odd');
|
|
}
|
|
|
|
if ($sensor['poller_type'] == "ipmi") {
|
|
$sensor_descr = ipmiSensorName($device['hardware'], $sensor['sensor_descr']);
|
|
} else {
|
|
$sensor_descr = $sensor['sensor_descr'];
|
|
}
|
|
|
|
$sensor_current = $graph_type == 'sensor_state' ? get_state_label($sensor) : get_sensor_label_color($sensor);
|
|
|
|
$sensor_limit = trim(format_si($sensor['sensor_limit']).$unit);
|
|
$sensor_limit_low = trim(format_si($sensor['sensor_limit_low']).$unit);
|
|
$sensor_limit_warn = trim(format_si($sensor['sensor_limit_warn']).$unit);
|
|
$sensor_limit_low_warn = trim(format_si($sensor['sensor_limit_low_warn']).$unit);
|
|
|
|
echo "<div class='panel panel-default'>
|
|
<div class='panel-heading'>
|
|
<h3 class='panel-title'>$sensor_descr <div class='pull-right'>$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 " <span class='label label-default'>low: $sensor_limit_low</span>";
|
|
}
|
|
if (!is_null($sensor['sensor_limit_low_warn'])) {
|
|
echo " <span class='label label-default'>low_warn: $sensor_limit_low_warn</span>";
|
|
}
|
|
if (!is_null($sensor['sensor_limit_warn'])) {
|
|
echo " <span class='label label-default'>high_warn: $sensor_limit_warn</span>";
|
|
}
|
|
if (!is_null($sensor['sensor_limit'])) {
|
|
echo " <span class='label label-default'>high: $sensor_limit</span>";
|
|
}
|
|
|
|
echo "</div></h3>
|
|
</div>";
|
|
echo "<div class='panel-body'>";
|
|
|
|
$graph_array['id'] = $sensor['sensor_id'];
|
|
$graph_array['type'] = $graph_type;
|
|
|
|
include 'includes/html/print-graphrow.inc.php';
|
|
|
|
echo '</div></div>';
|
|
|
|
$row++;
|
|
}
|