Added changes to meta report templates

This commit is contained in:
Arturo Gonzalez 2017-09-18 10:18:38 +02:00
parent e3d42a878a
commit e3c01374b1
1 changed files with 6 additions and 17 deletions

View File

@ -149,14 +149,9 @@ function reporting_make_reporting_data($report = null, $id_report,
}
if (in_array('label', $content['style'])) {
if (defined('METACONSOLE')) {
array_push ($agents_to_macro, $content['id_agent']);
}
else {
array_push ($agents_to_macro, modules_get_agentmodule_agent($graph_item['id_agent_module']));
}
}
}
$agents_to_macro_aux = array();
foreach ($agents_to_macro as $ag) {
@ -5885,17 +5880,11 @@ function reporting_custom_graph($report, $content, $type = 'dinamic',
array_push ($weights, $graph_item["weight"]);
if (in_array('label',$content['style'])) {
if (defined('METACONSOLE')) {
$item = array('type' => 'custom_graph',
'id_agent' =>$content['id_agent'],
'id_agent_module'=>$graph_item['id_agent_module']);
}
else {
$item = array('type' => 'custom_graph',
'id_agent' =>modules_get_agentmodule_agent($graph_item['id_agent_module']),
'id_agent_module'=>$graph_item['id_agent_module']);
}
//html_debug($item);
$label = reporting_label_macro($item, $content['style']['label']);
$labels[$graph_item['id_agent_module']] = $label;
}