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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
687 B
PHP
Raw Normal View History

<?php
2020-09-21 13:40:17 +00:00
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');
}
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'>";
require 'includes/html/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++;