diff --git a/pandora_console/extensions/agents_alerts.php b/pandora_console/extensions/agents_alerts.php index e93b97cddf..5e8b00ee42 100755 --- a/pandora_console/extensions/agents_alerts.php +++ b/pandora_console/extensions/agents_alerts.php @@ -211,7 +211,7 @@ function mainAgentsAlerts() { if ($tname == '') { continue; } - echo '
' . __('News board') . ' |
---|
' . __('News board') . ' | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
'.$article["subject"].' | |||||||||||||||
'.$article["subject"].' | |||||||||||||||
' . __('by') . ' ' . $article["author"] . ' ' . ui_print_timestamp ($article["timestamp"], true).' ' . $comparation_suffix . ' | |||||||||||||||
'; diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php index 699e70a321..02ef042b7e 100644 --- a/pandora_console/godmode/agentes/agent_manager.php +++ b/pandora_console/godmode/agentes/agent_manager.php @@ -279,7 +279,8 @@ $table->class = "databox filters"; $table->head = array (); $table->style = array (); -$table->style[0] = 'font-weight: bold; width: 150px;'; +$table->style[0] = 'font-weight: bold; '; +$table->style[2] = 'font-weight: bold;'; $table->data = array (); // Custom ID @@ -338,7 +339,7 @@ foreach ($listIcons as $index => $value) $arraySelectIcon[$index] = $index; $path = 'images/gis_map/icons/'; //TODO set better method the path -$table->data[4][0] = __('Agent icon') . ui_print_help_tip(__('Agent icon for GIS Maps.'), true); +$table->data[0][2] = __('Agent icon') . ui_print_help_tip(__('Agent icon for GIS Maps.'), true); if ($icon_path == '') { $display_icons = 'none'; // Hack to show no icon. Use any given image to fix not found image errors @@ -357,7 +358,7 @@ else { $path_warning = $path . $icon_path . ".warning.png"; } -$table->data[4][1] = html_print_select($arraySelectIcon, "icon_path", +$table->data[0][3] = html_print_select($arraySelectIcon, "icon_path", $icon_path, "changeIcons();", __('None'), '', true) . ' ' . html_print_image($path_ok, true, array("id" => "icon_ok", "style" => "display:".$display_icons.";")) . @@ -367,23 +368,23 @@ $table->data[4][1] = html_print_select($arraySelectIcon, "icon_path", array("id" => "icon_warning", "style" => "display:".$display_icons.";")); if ($config['activate_gis']) { - $table->data[5][0] = __('Ignore new GIS data:'); - $table->data[5][1] = __('Yes') . ' ' . + $table->data[1][2] = __('Ignore new GIS data:'); + $table->data[1][3] = __('Yes') . ' ' . html_print_radio_button_extended ("update_gis_data", 0, '', $update_gis_data, false, '', 'style="margin-right: 40px;"', true); - $table->data[5][1] .= __('No') . ' ' . + $table->data[1][3] .= __('No') . ' ' . html_print_radio_button_extended ("update_gis_data", 1, '', $update_gis_data, false, '', 'style="margin-right: 40px;"', true); } -$table->data[6][0] = __('Url address'); -$table->data[6][1] = html_print_input_text ('url_description', +$table->data[2][2] = __('Url address'); +$table->data[2][3] = html_print_input_text ('url_description', $url_description, '', 45, 255, true); -$table->data[7][0] = __('Quiet'); -$table->data[7][0] .= ui_print_help_tip( +$table->data[3][2] = __('Quiet'); +$table->data[3][3] .= ui_print_help_tip( __('The agent still runs but the alerts and events will be stop'), true); -$table->data[7][1] = html_print_checkbox('quiet', 1, $quiet, true); +$table->data[3][3] = html_print_checkbox('quiet', 1, $quiet, true); ui_toggle(html_print_table ($table, true), __('Advanced options')); unset($table); @@ -393,7 +394,7 @@ $table->class = "databox filters"; $table->head = array (); $table->style = array (); -$table->style[0] = 'font-weight: bold; width: 150px;'; +$table->style[0] = 'font-weight: bold; width: 100px;'; $table->data = array (); $fields = db_get_all_fields_in_table('tagent_custom_fields'); @@ -413,7 +414,7 @@ foreach ($fields as $field) { } $data[1] = html_print_textarea ('customvalue_'.$field['id_field'], - 2, 65, $custom_value, 'style="min-height: 30px;"', true); + 2, 65, $custom_value, 'style="min-height: 30px; width:96%;"', true); array_push ($table->data, $data); } @@ -529,7 +530,7 @@ ui_require_javascript_file('tiny_mce', 'include/javascript/tiny_mce/'); echo '"' . implode(', ', $elements) . '"'; ?>, - width: '100%', + width: '95%', theme : "advanced", theme_advanced_path : false, statusbar : false, diff --git a/pandora_console/godmode/agentes/fields_manager.php b/pandora_console/godmode/agentes/fields_manager.php index 75fd470e12..6f697030c7 100644 --- a/pandora_console/godmode/agentes/fields_manager.php +++ b/pandora_console/godmode/agentes/fields_manager.php @@ -86,7 +86,8 @@ if ($delete_field) { $fields = db_get_all_fields_in_table('tagent_custom_fields'); -$table->width = '98%'; +$table->width = '100%'; +$table->class = 'databox data'; if ($fields) { $table->head = array (); $table->head[0] = __('ID'); @@ -94,9 +95,10 @@ if ($fields) { $table->head[2] = __('Display on front').ui_print_help_tip (__('The fields with display on front enabled will be displayed into the agent details'), true); $table->head[3] = __('Actions'); $table->align = array (); - $table->align[0] = 'right'; - $table->align[2] = 'center'; - $table->align[3] = 'center'; + $table->align[0] = 'left'; + $table->align[2] = 'left'; + $table->align[3] = 'left'; + $table->size[3] = '8%'; $table->data = array (); } else { diff --git a/pandora_console/godmode/agentes/modificar_agente.php b/pandora_console/godmode/agentes/modificar_agente.php index e6139af261..3346cdbedc 100644 --- a/pandora_console/godmode/agentes/modificar_agente.php +++ b/pandora_console/godmode/agentes/modificar_agente.php @@ -419,7 +419,6 @@ if ($agents !== false) { '' . html_print_image("images/sort_up.png", true, array("style" => $selectNameUp)) . '' . '' . html_print_image("images/sort_down.png", true, array("style" => $selectNameDown)) . ''; echo ""; - echo " | ".__('R')." | "; echo "".__('OS'). ' ' . '' . html_print_image("images/sort_up.png", true, array("style" => $selectOsUp)) . '' . '' . html_print_image("images/sort_down.png", true, array("style" => $selectOsDown)) . ''; @@ -429,7 +428,7 @@ if ($agents !== false) { '' . html_print_image("images/sort_down.png", true, array("style" => $selectGroupDown)) . ''; echo " | "; echo "" . __('Description') . " | "; - echo "" . __('Actions') . " | "; + echo "" . __('Actions') . " | "; $color=1; $rowPair = true; @@ -505,31 +504,14 @@ if ($agents !== false) { &id_agente='.$agent["id_agente"].'">'.__('View').''; echo ''; - echo ""; - - echo ""; - // Has remote configuration ? - if (enterprise_installed()) { - enterprise_include_once('include/functions_config_agents.php'); - if (config_agents_has_remote_configuration($agent["id_agente"])) { - echo ""; - echo html_print_image("images/application_edit.png", true, array("align" => 'middle', "title" => __('Edit remote config'))); - echo ""; - } - } - echo " | "; - + echo ""; // Operating System icon - echo ""; + echo " | "; ui_print_os_icon ($agent["id_os"], false); echo " | "; // Group icon and name - echo "" . ui_print_group_icon ($id_grupo, true)." | "; + echo "" . ui_print_group_icon ($id_grupo, true)." | "; // Description echo "" . ui_print_truncate_text($agent["comentarios"], 'description', true, true, true, '[…]', 'font-size: 6.5pt;')." | "; @@ -540,7 +522,7 @@ if ($agents !== false) { else $offsetArg = $offset; - echo ""; + echo " | ";
if ($agent['disabled']) {
echo "width = '100%';
-$table_advanced->class = 'databox';
+$table_advanced->class = 'databox filters';
$table_advanced->data = array ();
$table_advanced->style = array ();
$table_advanced->style[0] =
@@ -556,12 +556,12 @@ else {
/* Advanced form part */
$table_macros->id = 'module_macros';
-$table_macros->width = '98%';
-$table_macros->class = 'databox_color';
+$table_macros->width = '100%';
+$table_macros->class = 'databox filters';
$table_macros->data = array ();
$table_macros->style = array ();
-$table_macros->style[0] = 'font-weight: bold; vertical-align: top';
-$table_macros->style[2] = 'font-weight: bold; vertical-align: top';
+$table_macros->style[0] = 'font-weight: bold;';
+$table_macros->style[2] = 'font-weight: bold;';
$table_macros->style[5] = 'width: 10px';
$table_macros->colspan = array ();
@@ -588,8 +588,8 @@ html_print_input_hidden ('module_macro_count', $macro_count);
// Add relationships
$table_new_relations = new stdClass();
$table_new_relations->id = 'module_new_relations';
-$table_new_relations->width = '98%';
-$table_new_relations->class = 'databox_color';
+$table_new_relations->width = '100%';
+$table_new_relations->class = 'databox filters';
$table_new_relations->data = array ();
$table_new_relations->style = array ();
$table_new_relations->style[0] = 'width: 10%; font-weight: bold;';
@@ -616,8 +616,8 @@ $table_new_relations->data[0][4] .= " id = 'module_relations';
-$table_relations->width = '98%';
-$table_relations->class = 'databox';
+$table_relations->width = '100%';
+$table_relations->class = 'databox data';
$table_relations->head = array ();
$table_relations->data = array ();
$table_relations->rowstyle = array ();
diff --git a/pandora_console/godmode/alerts/alert_list.builder.php b/pandora_console/godmode/alerts/alert_list.builder.php
index 9a3a6b7dd6..00df1d4d50 100644
--- a/pandora_console/godmode/alerts/alert_list.builder.php
+++ b/pandora_console/godmode/alerts/alert_list.builder.php
@@ -98,7 +98,7 @@ $table->data[0][3] .= ' ' .
if (check_acl ($config['id_user'], 0, "LM")) {
$table->data[0][3] .= '';
$table->data[0][3] .= html_print_image ('images/add.png', true);
- $table->data[0][3] .= __('Create Template');
+ $table->data[0][3] .= " " . __('Create Template') . " ";
$table->data[0][3] .= '';
}
@@ -124,9 +124,9 @@ $table->data[1][1] .= ui_print_help_icon ("alert-matches", true,
ui_get_full_url(false, false, false, false));
$table->data[1][1] .= '';
if (check_acl ($config['id_user'], 0, "LM")) {
- $table->data[1][1] .= '' . html_print_image ('images/add.png', true);
+
$table->data[1][1] .= '';
- $table->data[1][1] .= __('Create Action');
+ $table->data[1][1] .= ' ' . __('Create Action');
$table->data[1][1] .= '';
}
$table->data[1][2] = __('Threshold');
diff --git a/pandora_console/godmode/category/category.php b/pandora_console/godmode/category/category.php
index 141180d367..3b2a3e5880 100755
--- a/pandora_console/godmode/category/category.php
+++ b/pandora_console/godmode/category/category.php
@@ -88,21 +88,6 @@ $result = false;
$result = categories_get_all_categories ();
-// Form to add new categories or search categories
-if (!defined('METACONSOLE')) {
- echo "
".__('No categories found')." ";
}
-
+// Form to add new categories or search categories
+if (!defined('METACONSOLE')) {
+ echo "
|