Files

15 lines
308 B
PHP
Raw Permalink Normal View History

<?php
$datas = array(
'Flows' => 'nfsen_flows',
'Packets' => 'nfsen_packets',
'Traffic' => 'nfsen_traffic',
);
foreach ($datas as $name => $type) {
$graph_title = $name;
$graph_type = 'device_'.$type;
2019-04-11 23:26:42 -05:00
include 'includes/html/print-device-graph.php';
}