From e718beb858ab7e102fe3278059d2401e80dda4ee Mon Sep 17 00:00:00 2001 From: enriquecd Date: Wed, 22 Feb 2017 12:02:22 +0100 Subject: [PATCH 1/2] Change count column label text in agent detail section - #75 --- pandora_console/include/functions_reporting.php | 9 +++++---- pandora_console/operation/agentes/estado_agente.php | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 9394d52326..8f251bb7aa 100644 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -7911,10 +7911,11 @@ function reporting_tiny_stats ($counts_info, $return = false, $type = 'agent', $ switch ($type) { case 'modules': $template_title['total_count'] = __('%d Total modules'); - $template_title['normal_count'] = __('%d Normal modules'); - $template_title['critical_count'] = __('%d Critical modules'); - $template_title['warning_count'] = __('%d Warning modules'); - $template_title['unknown_count'] = __('%d Unknown modules'); + $template_title['normal_count'] = __('%d Modules in normal status'); + $template_title['critical_count'] = __('%d Modules in critical status'); + $template_title['warning_count'] = __('%d Modules in warning status'); + $template_title['unknown_count'] = __('%d Modules in unknown status'); + $template_title['not_init_count'] = __('%d Not init modules'); break; case 'agent': $template_title['total_count'] = __('%d Total modules'); diff --git a/pandora_console/operation/agentes/estado_agente.php b/pandora_console/operation/agentes/estado_agente.php index ce710a1db9..e7846c2d1a 100644 --- a/pandora_console/operation/agentes/estado_agente.php +++ b/pandora_console/operation/agentes/estado_agente.php @@ -564,7 +564,7 @@ foreach ($agents as $agent) { $data[4] = ui_print_group_icon ($agent["id_grupo"], true); - $data[5] = reporting_tiny_stats($agent, true, 'agent', ':', $strict_user); + $data[5] = reporting_tiny_stats($agent, true, 'modules', ':', $strict_user); $data[6] = $status_img; From b4ff780d5af628bcfc0cd78256e64ac169fb09bf Mon Sep 17 00:00:00 2001 From: enriquecd Date: Thu, 23 Feb 2017 10:27:50 +0100 Subject: [PATCH 2/2] Add not init status count label y agent detail section - #75 --- pandora_console/include/functions_reporting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 8f251bb7aa..723411620f 100644 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -7915,7 +7915,7 @@ function reporting_tiny_stats ($counts_info, $return = false, $type = 'agent', $ $template_title['critical_count'] = __('%d Modules in critical status'); $template_title['warning_count'] = __('%d Modules in warning status'); $template_title['unknown_count'] = __('%d Modules in unknown status'); - $template_title['not_init_count'] = __('%d Not init modules'); + $template_title['not_init_count'] = __('%d Modules in not init status'); break; case 'agent': $template_title['total_count'] = __('%d Total modules');