Fix coding style part 2

This commit is contained in:
Job Snijders
2015-07-13 20:10:26 +02:00
parent ad9590df9b
commit d8693f05ae
733 changed files with 37359 additions and 33947 deletions

View File

@@ -1,70 +1,68 @@
<?php
// Graphs are printed in the order they exist in $config['graph_types']
$link_array = array(
'page' => 'device',
'device' => $device['device_id'],
'tab' => 'graphs',
);
$link_array = array('page' => 'device',
'device' => $device['device_id'],
'tab' => 'graphs');
$bg = '#ffffff';
$bg="#ffffff";
echo('<div style="clear: both;">');
echo '<div style="clear: both;">';
print_optionbar_start();
echo("<span style='font-weight: bold;'>Graphs</span> &#187; ");
echo "<span style='font-weight: bold;'>Graphs</span> &#187; ";
foreach (dbFetchRows("SELECT * FROM device_graphs WHERE device_id = ? ORDER BY graph", array($device['device_id'])) as $graph)
{
$section = $config['graph_types']['device'][$graph['graph']]['section'];
if ($section != "") {
$graph_enable[$section][$graph['graph']] = $graph['graph'];
}
foreach (dbFetchRows('SELECT * FROM device_graphs WHERE device_id = ? ORDER BY graph', array($device['device_id'])) as $graph) {
$section = $config['graph_types']['device'][$graph['graph']]['section'];
if ($section != '') {
$graph_enable[$section][$graph['graph']] = $graph['graph'];
}
}
// These are standard graphs we should have for all systems
$graph_enable['poller']['poller_perf'] = 'device_poller_perf';
$graph_enable['poller']['ping_perf'] = 'device_ping_perf';
$graph_enable['poller']['ping_perf'] = 'device_ping_perf';
$sep = "";
foreach ($graph_enable as $section => $nothing)
{
if (isset($graph_enable) && is_array($graph_enable[$section]))
{
$type = strtolower($section);
if (!$vars['group']) { $vars['group'] = $type; }
echo($sep);
if ($vars['group'] == $type)
{
echo('<span class="pagemenu-selected">');
$sep = '';
foreach ($graph_enable as $section => $nothing) {
if (isset($graph_enable) && is_array($graph_enable[$section])) {
$type = strtolower($section);
if (!$vars['group']) {
$vars['group'] = $type;
}
echo $sep;
if ($vars['group'] == $type) {
echo '<span class="pagemenu-selected">';
}
echo generate_link(ucwords($type), $link_array, array('group' => $type));
if ($vars['group'] == $type) {
echo '</span>';
}
$sep = ' | ';
}
echo(generate_link(ucwords($type),$link_array,array('group'=>$type)));
if ($vars['group'] == $type)
{
echo("</span>");
}
$sep = " | ";
}
}
unset ($sep);
unset($sep);
print_optionbar_end();
$graph_enable = $graph_enable[$vars['group']];
#foreach ($config['graph_types']['device'] as $graph => $entry)
foreach ($graph_enable as $graph => $entry)
{
$graph_array = array();
if ($graph_enable[$graph])
{
$graph_title = $config['graph_types']['device'][$graph]['descr'];
$graph_array['type'] = "device_" . $graph;
// foreach ($config['graph_types']['device'] as $graph => $entry)
foreach ($graph_enable as $graph => $entry) {
$graph_array = array();
if ($graph_enable[$graph]) {
$graph_title = $config['graph_types']['device'][$graph]['descr'];
$graph_array['type'] = 'device_'.$graph;
include("includes/print-device-graph.php");
}
include 'includes/print-device-graph.php';
}
}
$pagetitle[] = "Graphs";
?>
$pagetitle[] = 'Graphs';