');
print_optionbar_start('', '');
$sep = "";
$query = mysql_query("SELECT * FROM device_graphs WHERE device_id = '".$device['device_id']."'");
while($graph = mysql_fetch_assoc($query))
{
$section = $config['graph_types']['device'][$graph['graph']]['section'];
$graph_enable[$section][$graph['graph']] = $graph['graph'];
}
foreach($config['graph_sections'] as $section)
{
if(is_array($graph_enable[$section]))
{
$type = strtolower($section);
if(!$_GET['opta']) { $_GET['opta'] = $type; }
echo($sep);
if ($_GET['opta'] == $type)
{
echo("");
echo('');
}
else
{
echo('
');
}
echo(" " . $type ."\n");
if ($_GET['opta'] == $type) { echo(""); }
$sep = " | ";
}
}
unset ($sep);
print_optionbar_end();
#echo("
"); #print_r($_GET['opta']); #print_r($graph_enable); #echo(""); $graph_enable = $graph_enable[$_GET['opta']]; 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"); } } ?>