Working in the refactoring the code of reports (SLA_services).

This commit is contained in:
mdtrooper 2015-05-06 13:24:29 +02:00
parent c2fdcbb1d8
commit 249e2e730d
2 changed files with 9 additions and 14 deletions

View File

@ -427,7 +427,12 @@ function reporting_make_reporting_data($id_report, $date, $time,
$content);
break;
case 'SLA_services':
$report['contents'][] = reporting_enterprise_sla_services_refactoriced(
$report,
$content,
$type,
$force_width_chart,
$force_height_chart);
break;
}
}

View File

@ -261,6 +261,9 @@ function reporting_html_print_report($report, $mini = false) {
case 'SLA_monthly':
reporting_enterprise_html_SLA_monthly($table, $item, $mini);
break;
case 'SLA_services':
reporting_enterprise_html_SLA_services($table, $item, $mini);
break;
}
if ($item['type'] == 'agent_module')
@ -4047,19 +4050,6 @@ function reporting_render_report_html_item ($content, $table, $report, $mini = f
$item_title = $content['name'];
switch ($content["type"]) {
case 'SLA_services':
if (function_exists("reporting_enterprise_sla_services"))
reporting_enterprise_sla_services($mini, $content, $report, $table, $item_title);
break;
}
//Restore dbconnection
if (($config ['metaconsole'] == 1) && $server_name != '' && defined('METACONSOLE') && $remote_connection == 1) {
metaconsole_restore_db_force();