librenms/includes/html/print-device-graph.php
Tony Murray 6f5cf7727a
Misc webui code cleanups (#14242)
* Misc webui cleanups

* Style

* More

* graphing fixes

* More graph cleanups

* more fixes, graphs and device pages

* style
2022-08-30 12:55:37 -05:00

28 lines
687 B
PHP

<?php
if (empty($graph_array['type'])) {
$graph_array['type'] = $graph_type;
}
if (empty($graph_array['device'])) {
$graph_array['device'] = $device['device_id'];
}
// FIXME not css alternating yet
$g_i = $g_i ?? 0;
if (! is_integer($g_i / 2)) {
$row_colour = \LibreNMS\Config::get('list_colour.even');
} else {
$row_colour = \LibreNMS\Config::get('list_colour.odd');
}
echo '<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">' . $graph_title . '</h3>
</div>
<div class="panel-body">
';
echo "<div class='row'>";
require 'includes/html/print-graphrow.inc.php';
echo '</div>';
echo '</div>';
echo '</div>';
$g_i++;