Files
librenms-librenms/html/includes/print-quadgraphs.inc.php
T

23 lines
645 B
PHP
Raw Normal View History

2010-07-25 18:05:16 +00:00
<?php
2011-03-17 11:29:23 +00:00
global $config;
2010-07-25 18:05:16 +00:00
2011-03-17 11:29:23 +00:00
$graph_array['height'] = "100";
$graph_array['width'] = "215";
$graph_array['to'] = $now;
2010-07-25 18:05:16 +00:00
2011-03-17 11:29:23 +00:00
$periods = array('day', 'week', 'month', 'year');
2010-07-25 18:05:16 +00:00
2011-03-17 11:29:23 +00:00
foreach ($periods as $period)
{
$graph_array['from'] = $config[$period];
$graph_array_zoom = $graph_array;
$graph_array_zoom['height'] = "150";
$graph_array_zoom['width'] = "400";
2010-07-25 18:05:16 +00:00
2011-03-17 11:29:23 +00:00
$link = $config['base_url'] . "/graphs/" . $graph_array['id'] . "/" . $graph_array['type'] . "/" . $graph_array['from'] . "/" . $config['now'] . "/";
2010-07-25 18:05:16 +00:00
2011-03-17 11:29:23 +00:00
echo(overlib_link($link, generate_graph_tag($graph_array), generate_graph_tag($graph_array_zoom), NULL));
}
2010-07-25 18:05:16 +00:00
2011-03-17 11:29:23 +00:00
?>