'device', 'device' => $device['device_id'], 'tab' => 'graphs'); $bg="#ffffff"; echo('
'); print_optionbar_start(); echo("Graphs » "); $sep = ""; foreach (dbFetchRows("SELECT * FROM device_graphs WHERE device_id = ?", array($device['device_id'])) as $graph) { $section = $config['graph_types']['device'][$graph['graph']]['section']; $graph_enable[$section][$graph['graph']] = $graph['graph']; } foreach ($config['graph_sections'] as $section) { 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(''); } echo(generate_link(ucwords($type),$link_array,array('group'=>$type))); if ($vars['group'] == $type) { echo(""); } $sep = " | "; } } unset ($sep); print_optionbar_end(); $graph_enable = $graph_enable[$vars['group']]; foreach ($config['graph_types']['device'] as $graph => $entry) { if ($graph_enable[$graph]) { $graph_title = $config['graph_types']['device'][$graph]['descr']; $graph_type = "device_" . $graph; include("includes/print-device-graph.php"); } } $pagetitle[] = "Graphs"; ?>