* @copyright (C) Adam Armstrong * */ $rrdfile = get_port_rrdfilename($port, "adsl", TRUE); if (is_file($rrdfile)) { echo(''); $graph_array['to'] = get_time(); $graph_array['id'] = $port['port_id']; echo(''); echo(''); echo(''); echo(''); echo('
'); echo("

ADSL Line Speed

"); $graph_array['type'] = "port_adsl_speed"; print_graph_row($graph_array); echo('
'); echo("

ADSL Line Attenuation

"); $graph_array['type'] = "port_adsl_attenuation"; print_graph_row($graph_array); echo('
'); echo("

ADSL Line SNR Margin

"); $graph_array['type'] = "port_adsl_snr"; print_graph_row($graph_array); echo('
'); echo('

ADSL Output Powers

'); $graph_array['type'] = "port_adsl_power"; print_graph_row($graph_array); echo('
'); } // EOF