mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-04-08 18:55:09 +02:00
Fixed netflow reports
This commit is contained in:
parent
7a820be983
commit
8dafc0d1d6
@ -299,44 +299,49 @@ function reporting_make_reporting_data($report = null, $id_report,
|
||||
$force_height_chart);
|
||||
break;
|
||||
case 'netflow_area':
|
||||
$report['contents'][] = reporting_simple_baseline_graph(
|
||||
$report['contents'][] = reporting_netflow(
|
||||
$report,
|
||||
$content,
|
||||
$type,
|
||||
$force_width_chart,
|
||||
$force_height_chart);
|
||||
$force_height_chart,
|
||||
'netflow_area');
|
||||
break;
|
||||
case 'netflow_pie':
|
||||
$report['contents'][] = reporting_netflow_pie(
|
||||
$report['contents'][] = reporting_netflow(
|
||||
$report,
|
||||
$content,
|
||||
$type,
|
||||
$force_width_chart,
|
||||
$force_height_chart);
|
||||
$force_height_chart,
|
||||
'netflow_pie');
|
||||
break;
|
||||
case 'netflow_data':
|
||||
$report['contents'][] = reporting_netflow_data(
|
||||
$report['contents'][] = reporting_netflow(
|
||||
$report,
|
||||
$content,
|
||||
$type,
|
||||
$force_width_chart,
|
||||
$force_height_chart);
|
||||
$force_height_chart,
|
||||
'netflow_data');
|
||||
break;
|
||||
case 'netflow_statistics':
|
||||
$report['contents'][] = reporting_netflow_statistics(
|
||||
$report['contents'][] = reporting_netflow(
|
||||
$report,
|
||||
$content,
|
||||
$type,
|
||||
$force_width_chart,
|
||||
$force_height_chart);
|
||||
$force_height_chart,
|
||||
'netflow_statistics');
|
||||
break;
|
||||
case 'netflow_summary':
|
||||
$report['contents'][] = reporting_netflow_summary(
|
||||
$report['contents'][] = reporting_netflow(
|
||||
$report,
|
||||
$content,
|
||||
$type,
|
||||
$force_width_chart,
|
||||
$force_height_chart);
|
||||
$force_height_chart,
|
||||
'netflow_summary');
|
||||
break;
|
||||
case 'monitor_report':
|
||||
$report['contents'][] = reporting_monitor_report(
|
||||
|
Loading…
x
Reference in New Issue
Block a user