2010-03-14 15:21:55 +00:00
|
|
|
<?php
|
|
|
|
|
2011-03-16 23:10:10 +00:00
|
|
|
$row = 0;
|
|
|
|
|
|
|
|
if ($_GET['optc']) { $graph_type = "atmvp_".$_GET['optc']; }
|
|
|
|
if (!$graph_type) { $graph_type = "atmvp_bits"; }
|
|
|
|
|
|
|
|
echo('<table cellspacing="0" cellpadding="5" border="0">');
|
|
|
|
|
2011-05-16 10:52:48 +00:00
|
|
|
foreach (dbFetchRows("SELECT * FROM juniAtmVp WHERE interface_id = ?", array($interface['interface_id'])) as $vp)
|
2011-03-16 23:10:10 +00:00
|
|
|
{
|
|
|
|
if (is_integer($row/2)) { $row_colour = $list_colour_a; } else { $row_colour = $list_colour_b; }
|
|
|
|
echo('<tr bgcolor="'.$row_colour.'">');
|
|
|
|
echo('<td><span class=list-bold>'.$row.'. VP'.$vp['vp_id'].' '.$vp['vp_descr'].'</span></td>');
|
|
|
|
echo('</tr>');
|
|
|
|
|
|
|
|
$graph_array['height'] = "100";
|
|
|
|
$graph_array['width'] = "214";
|
|
|
|
$graph_array['to'] = $now;
|
|
|
|
$graph_array['id'] = $vp['juniAtmVp_id'];
|
|
|
|
$graph_array['type'] = $graph_type;
|
|
|
|
|
|
|
|
$periods = array('day', 'week', 'month', 'year');
|
|
|
|
|
|
|
|
echo('<tr bgcolor="'.$row_colour.'"><td>');
|
2011-03-17 00:09:20 +00:00
|
|
|
|
2011-03-16 23:10:10 +00:00
|
|
|
foreach ($periods as $period)
|
|
|
|
{
|
|
|
|
$graph_array['from'] = $$period;
|
|
|
|
$graph_array_zoom = $graph_array; $graph_array_zoom['height'] = "150"; $graph_array_zoom['width'] = "400";
|
2011-04-22 21:01:39 +00:00
|
|
|
echo(overlib_link("#", generate_graph_tag($graph_array), generate_graph_tag($graph_array_zoom), NULL));
|
2010-03-14 15:21:55 +00:00
|
|
|
}
|
2011-03-17 00:09:20 +00:00
|
|
|
|
2011-03-16 23:10:10 +00:00
|
|
|
echo('</td></tr>');
|
|
|
|
|
|
|
|
$row++;
|
|
|
|
}
|
2010-03-14 15:21:55 +00:00
|
|
|
|
2011-03-16 23:10:10 +00:00
|
|
|
echo('</table>');
|
2010-03-14 15:21:55 +00:00
|
|
|
|
2011-05-16 10:52:48 +00:00
|
|
|
?>
|