diff --git a/pandora_console/godmode/agentes/module_manager_editor_common.php b/pandora_console/godmode/agentes/module_manager_editor_common.php
index 9b9b96ffaf..473e36dfdc 100644
--- a/pandora_console/godmode/agentes/module_manager_editor_common.php
+++ b/pandora_console/godmode/agentes/module_manager_editor_common.php
@@ -590,8 +590,7 @@ $table_advanced->colspan[10][1] = 6;
if (isset($id_agente) && $moduletype == MODULE_DATA) {
$has_remote_conf = enterprise_hook('config_agents_has_remote_configuration',array($agent["id_agente"]));
if ($has_remote_conf) {
- $table_advanced->data[11][0] = __('Cron from') .
- ui_print_help_tip (__('If cron is set the module interval is ignored and the module runs on the specified date and time'), true);
+ $table_advanced->data[11][0] = __('Cron from') . ui_print_help_icon ('cron', true);
$table_advanced->data[11][1] = html_print_extended_select_for_cron ($hour_from, $minute_from, $mday_from, $month_from, $wday_from, true, $disabledBecauseInPolicy);
$table_advanced->colspan[11][1] = 6;
@@ -600,8 +599,7 @@ if (isset($id_agente) && $moduletype == MODULE_DATA) {
$table_advanced->colspan[12][1] = 6;
}
else {
- $table_advanced->data[11][0] = __('Cron from') .
- ui_print_help_tip (__('If cron is set the module interval is ignored and the module runs on the specified date and time'), true);
+ $table_advanced->data[11][0] = __('Cron from') . ui_print_help_icon ('cron', true);
$table_advanced->data[11][1] = html_print_extended_select_for_cron ($hour_from, $minute_from, $mday_from, $month_from, $wday_from, true, true);
$table_advanced->colspan[11][1] = 6;
@@ -611,8 +609,7 @@ if (isset($id_agente) && $moduletype == MODULE_DATA) {
}
}
else {
- $table_advanced->data[11][0] = __('Cron from') .
- ui_print_help_tip (__('If cron is set the module interval is ignored and the module runs on the specified date and time'), true);
+ $table_advanced->data[11][0] = __('Cron from') . ui_print_help_icon ('cron', true);
$table_advanced->data[11][1] = html_print_extended_select_for_cron ($hour_from, $minute_from, $mday_from, $month_from, $wday_from, true, $disabledBecauseInPolicy);
$table_advanced->colspan[11][1] = 6;
diff --git a/pandora_console/include/help/en/help_cron.php b/pandora_console/include/help/en/help_cron.php
new file mode 100644
index 0000000000..a1e235d06e
--- /dev/null
+++ b/pandora_console/include/help/en/help_cron.php
@@ -0,0 +1,45 @@
+
+
Cron for server modules
+
+Using the configuration parameter sets Cron from and Cron to makes
+it possible for a module to run only for certain periods of time.
+The way in which it is configured is similar to the syntax of
+cron.
+Just as they appear in the Pandora console, each one of the parameters
+has three options.
+
+Cron from: any
+
+The module will not have restrictions in that parameter. Whatever the value is
+will be executed, and it is equivalent to the asterisk (*) in the cron nomenclature. In this
+case Cron to is ignored.
+
+Cron from: different from any. Cron to: any
+
+The module will run only during the time in which the date matches that
+parameter. It is equivalent to writingjust one number in cron nomenclature.
+
+Cron from: different from any. Cron to: different from any
+
+The module will run only during the time specified between Cron from and Cron to.
+It is equivalent to writing number dash number (n-n) in cron nomenclature.
+
+Agent interval
+
+As long as cron conditions are met, the agent will run following
+its execution interval.
+
+Examples
+
+
+ - * * * * *: No cron configured.
+ - 15 20 * * *: It will run every day at 20:15.
+ - * 20 * * *: It will run every day during the hour 20, that is, from 20:00 to 20:59.
+ - * 8-19 * * *: It will run everyday from 8:00 to 19:59.
+ - 15-45 * 1-16 * *: It will run every first 16 days of the month every hour, from quarter past to quarter to.
+ - * * * 5 *: It will run only in May.
+
diff --git a/pandora_console/include/help/es/help_cron.php b/pandora_console/include/help/es/help_cron.php
new file mode 100644
index 0000000000..2902c81928
--- /dev/null
+++ b/pandora_console/include/help/es/help_cron.php
@@ -0,0 +1,46 @@
+
+Cron para módulos de servidor
+
+Mediante los grupos de parámetros de configuración Cron desde y Cron hasta se
+puede hacer que un módulo solo se ejecute durante ciertos periodos de tiempo. El
+modo en el que se configura es parecido a la sintaxis de
+cron.
+Tal y como aparecen en la consola de Pandora, cada uno de los parámetros
+tiene tres opciones.
+
+Cron desde: cualquiera
+
+El módulo no tendrá restricciones en ese parámetro. Se ejecutará cualquiera que
+que sea el valor y equivale al asterisco (*) en la nomenclatura de cron. En este
+caso se ignora Cron desde.
+
+Cron desde: distinto de cualquiera. Cron hasta: cualquiera
+
+El módulo se ejecutará solamente el tiempo en el que la fecha coincida con ese
+parámetro. Equivale a escribir solamente un número en la nomenclatura de cron.
+
+Cron desde: distinto de cualquiera. Cron hasta: distinto de cualquiera
+
+El módulo se ejecutará entre el tiempo indicado en el Cron desde y el Cron hasta.
+Equivale a escribir el número guión número (n-n) en la nomenclatura de cron.
+
+Intervalo del agente
+
+Mientras que se cumplan las condiciones de cron, el agente se ejecutará siguiendo
+su intervalo de ejecución.
+
+Ejemplos
+
+
+ - * * * * *: No hay cron configurado.
+ - 15 20 * * *: Se ejecutará todos los días a las 20:15.
+ - * 20 * * *: Se ejecutará todos los días durante las 20 horas, es decir, entre las 20:00 y las 20:59.
+ - * 8-19 * * *: Se ejecutará todos los días entre las 8:00 y las 19:59.
+ - 15-45 * 1-16 * *: Se ejecutará todos los primeros 16 días del mes a todas horas entre y cuarto y menos cuarto.
+ - * * * 5 *: Se ejecutará solamente en mayo.
+
+
diff --git a/pandora_console/include/help/ja/help_cron.php b/pandora_console/include/help/ja/help_cron.php
new file mode 100644
index 0000000000..6608ae60cf
--- /dev/null
+++ b/pandora_console/include/help/ja/help_cron.php
@@ -0,0 +1,46 @@
+
+Cron for server modules
+
+Using the configuration parameter sets Cron from and Cron to makes
+it possible for a module to run only for certain periods of time.
+The way in which it is configured is similar to the syntax of
+cron.
+Just as they appear in the Pandora console, each one of the parameters
+has three options.
+
+Cron from: any
+
+The module will not have restrictions in that parameter. Whatever the value is
+will be executed, and it is equivalent to the asterisk (*) in the cron nomenclature. In this
+case Cron to is ignored.
+
+Cron from: different from any. Cron to: any
+
+The module will run only during the time in which the date matches that
+parameter. It is equivalent to writingjust one number in cron nomenclature.
+
+Cron from: different from any. Cron to: different from any
+
+The module will run only during the time specified between Cron from and Cron to.
+It is equivalent to writing number dash number (n-n) in cron nomenclature.
+
+Agent interval
+
+As long as cron conditions are met, the agent will run following
+its execution interval.
+
+Examples
+
+
+ - * * * * *: No cron configured.
+ - 15 20 * * *: It will run every day at 20:15.
+ - * 20 * * *: It will run every day during the hour 20, that is, from 20:00 to 20:59.
+ - * 8-19 * * *: It will run everyday from 8:00 to 19:59.
+ - 15-45 * 1-16 * *: It will run every first 16 days of the month every hour, from quarter past to quarter to.
+ - * * * 5 *: It will run only in May.
+