' . PHP_EOL; $cols = array( array(NULL, 'class="state-marker"'), array(NULL, 'style="width: 1px;"'), 'device' => array('Device', 'style="width: 200px;"'), 'port' => array('Port', 'style="width: 350px;"'), 'traffic' => array('Traffic', 'style="width: 100px;"'), 'traffic_perc' => array('Traffic %', 'style="width: 90px;"'), 'packets' => array('Packets', 'style="width: 90px;"'), 'speed' => array('Speed', 'style="width: 90px;"'), 'mac' => array('MAC Address', 'style="width: 150px;"') ); echo get_table_header($cols, $vars); echo '
' . PHP_EOL; $ports_disabled = 0; $ports_down = 0; $ports_up = 0; $ports_total = 0; foreach ($ports as $port) { $ports_total++; print_port_row($port, $vars); } echo ''; echo generate_box_close(); echo pagination($vars, $ports_count); // EOF