librenms/html/includes/print-device-graph.php

26 lines
636 B
PHP
Raw Normal View History

<?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'];
}
2015-09-21 13:33:52 +00:00
echo '<div class="panel panel-default">
2015-09-21 13:47:12 +00:00
<div class="panel-heading">
2015-09-21 14:00:50 +00:00
<h3 class="panel-title">'.$graph_title.'</h3>
</div>
<div class="panel-body">
';
2015-12-21 13:04:02 +00:00
echo "<div class='row'>";
2015-09-21 14:00:50 +00:00
require 'includes/print-graphrow.inc.php';
2015-12-21 13:04:02 +00:00
echo '</div>';
2015-09-21 14:00:50 +00:00
echo '</div>';
echo '</div>';
$g_i++;