librenms-librenms/html/includes/print-device-graph.php
Tony Murray 561846a44b fix: Fiedx issues with new config init (#8242)
* Fix non-config defaults

* update processConfig and remove file
2018-02-12 09:15:44 +00:00

26 lines
636 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
if (!is_integer($g_i / 2)) {
$row_colour = $config['list_colour']['even'];
} else {
$row_colour = $config['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/print-graphrow.inc.php';
echo '</div>';
echo '</div>';
echo '</div>';
$g_i++;