diff --git a/pandora_console/godmode/alerts/alert_actions.php b/pandora_console/godmode/alerts/alert_actions.php index 05525323e8..7879b36fb9 100644 --- a/pandora_console/godmode/alerts/alert_actions.php +++ b/pandora_console/godmode/alerts/alert_actions.php @@ -230,11 +230,11 @@ $url = 'index.php?sec='.$sec.'&sec2=godmode/alerts/alert_actions&search_string=' // Filter table. $table_filter = new stdClass(); $table_filter->width = '100%'; -$table_filter->class = 'databox filters'; +$table_filter->class = 'databox filters filter-table-adv'; $table_filter->style = []; -$table_filter->style[0] = 'font-weight: bold'; -$table_filter->style[2] = 'font-weight: bold'; -$table_filter->style[4] = 'font-weight: bold'; +$table_filter->style[0] = 'width: 33%'; +$table_filter->style[2] = 'width: 33%'; +$table_filter->style[4] = 'width: 33%'; $table_filter->data = []; $table_filter->data[0][0] = __('Search'); @@ -246,6 +246,17 @@ $table_filter->data[0][1] = html_print_input_text( 255, true ); +$table_filter->data[0][0] = html_print_label_input_block( + __('Search'), + html_print_input_text( + 'search_string', + $search_string, + '', + 25, + 255, + true + ) +); $return_all_group = false; @@ -464,8 +475,9 @@ if (isset($data)) { if (is_management_allowed() === true) { echo '
'; echo '
'; - html_print_submit_button(__('Create'), 'create', false, 'class="sub next"'); + $button = html_print_submit_button(__('Create'), 'create', false, ['icon' => 'wand'], true); html_print_input_hidden('create_alert', 1); + html_print_action_buttons($button); echo '
'; echo '
'; } diff --git a/pandora_console/godmode/alerts/alert_list.builder.php b/pandora_console/godmode/alerts/alert_list.builder.php index bf55c5619b..74120d36c8 100644 --- a/pandora_console/godmode/alerts/alert_list.builder.php +++ b/pandora_console/godmode/alerts/alert_list.builder.php @@ -32,29 +32,16 @@ $pure = get_parameter('pure', 0); $table = new stdClass(); $table->id = 'add_alert_table'; -$table->class = 'databox filters'; +$table->class = 'databox filters filter-table-adv'; $table->width = '100%'; $table->head = []; $table->data = []; $table->size = []; -$table->size = []; -$table->style[0] = 'font-weight: bold;'; -$table->style[1] = 'font-weight: bold;display: flex;align-items: baseline;'; -$table->style[2] = 'font-weight: bold;'; -$table->style[3] = 'font-weight: bold;'; - -// This is because if this view is reused after list alert view then -// styles in the previous view can affect this table. -$table->rowstyle[0] = ''; -$table->rowstyle[1] = ''; -$table->rowstyle[2] = ''; -$table->rowstyle[3] = ''; - +$table->style[0] = 'width: 50%'; +$table->style[1] = 'width: 50%'; // Add an agent selector if (! $id_agente) { - $table->data['agent'][0] = __('Agent'); - $params = []; $params['return'] = true; $params['show_helptip'] = true; @@ -64,36 +51,37 @@ if (! $id_agente) { $params['metaconsole_enabled'] = false; $params['use_hidden_input_idagent'] = true; $params['print_hidden_input_idagent'] = true; - $table->data['agent'][1] = ui_print_agent_autocomplete_input($params); + $table->data[0][0] = html_print_label_input_block( + __('Agent'), + ui_print_agent_autocomplete_input($params) + ); } -$table->data[0][0] = __('Module'); $modules = []; if ($id_agente) { $modules = agents_get_modules($id_agente, false, ['delete_pending' => 0]); } -$table->data[0][1] = html_print_select( - $modules, - 'id_agent_module', - 0, - true, - __('Select'), - 0, - true, - false, - true, - '', - ($id_agente == 0), - 'min-width: 250px;margin-right: 0.5em;' +$table->data[0][1] = html_print_label_input_block( + __('Module'), + html_print_select( + $modules, + 'id_agent_module', + 0, + true, + __('Select'), + 0, + true, + false, + true, + 'w100p', + ($id_agente == 0), + 'width: 100%;' + ).' + ' ); -$table->data[0][1] .= ' '; -$table->data[0][1] .= ' '; - -$table->data[1][0] = __('Actions'); $groups_user = users_get_groups($config['id_user']); if (!empty($groups_user)) { @@ -109,40 +97,36 @@ if (!empty($groups_user)) { $actions = db_get_all_rows_sql($sql); } -$table->data[1][1] = html_print_select( - index_array($actions, 'id', 'name'), - 'action_select', - '', - '', - __('Default action'), - '0', - true, - false, - true, - '', - false, - 'width: 250px;' -); -$table->data[1][1] .= ''; if ((bool) check_acl($config['id_user'], 0, 'LM') === true) { - $table->data[1][1] .= html_print_button( + $create_action = html_print_button( __('Create Action'), '', false, - 'window.location.assign(\'index.php?sec=galertas&sec2=godmode/alerts/configure_alert_action&pure='.$pure.'\')', + 'window.location.assign("index.php?sec=galertas&sec2=godmode/alerts/configure_alert_action&pure='.$pure.'")', [ 'mode' => 'link' ], true ); } - $table->data[2][0] = __('Template'); - $own_info = get_user_info($config['id_user']); +$table->data[1][0] = html_print_label_input_block( + __('Actions'), + html_print_select( + index_array($actions, 'id', 'name'), + 'action_select', + '', + '', + __('Default action'), + '0', + true, + false, + true, + 'w100p', + false, + 'width: 100%;' + ).''.$create_action +); + +$own_info = get_user_info($config['id_user']); if ($own_info['is_admin']) { $templates = alerts_get_alert_templates(false, ['id', 'name']); } else { @@ -152,7 +136,20 @@ if ($own_info['is_admin']) { $templates = alerts_get_alert_templates(['id_group IN ('.$filter_groups.')'], ['id', 'name']); } - $table->data[2][1] = html_print_select( +if ((bool) check_acl($config['id_user'], 0, 'LM') === true) { + $create_template = html_print_button( + __('Create Template'), + '', + false, + 'window.location.assign("index.php?sec=galertas&sec2=godmode/alerts/configure_alert_template&pure='.$pure.'")', + [ 'mode' => 'link' ], + true + ); +} + +$table->data[1][1] = html_print_label_input_block( + __('Template'), + html_print_select( index_array($templates, 'id', 'name'), 'template', '', @@ -162,24 +159,15 @@ if ($own_info['is_admin']) { true, false, true, - '', + 'w100p', false, - 'width: 250px;' - ); - $table->data[2][1] .= ' '; - if ((bool) check_acl($config['id_user'], 0, 'LM') === true) { - $table->data[2][1] .= html_print_button( - __('Create Template'), - '', - false, - 'window.location.assign(\'index.php?sec=galertas&sec2=godmode/alerts/configure_alert_template&pure='.$pure.'\')', - [ 'mode' => 'link' ], - true - ); - } + 'width: 100%;' + ).' '.$create_template +); - $table->data[3][0] = __('Threshold'); - $table->data[3][1] = html_print_extended_select_for_time( +$table->data[2][0] = html_print_label_input_block( + __('Threshold'), + html_print_extended_select_for_time( 'module_action_threshold', 0, '', @@ -189,62 +177,58 @@ if ($own_info['is_admin']) { true, false, true, - '', + 'w100p', false, false, '', false, true - ); + ) +); - if (isset($step) === false) { - echo '
'; - html_print_table($table); - } +if (isset($step) === false) { + echo ''; + html_print_table($table); +} - if (isset($step) === false) { - $output = ''; +if (isset($step) === false) { + $output = ''; - if ($id_cluster) { - $output .= html_print_button( - __('Finish and view cluster'), - 'store', - false, - 'window.location.replace(\"index.php?sec=reporting&sec2=enterprise/godmode/reporting/cluster_view&id=".$id_cluster."\");', - [ - 'icon' => 'update', - 'mode' => 'secondary mini', - ], - true - ); - } - - $output .= html_print_submit_button( - __('Add alert'), - 'add', + if ($id_cluster) { + $actionButtons .= html_print_button( + __('Finish and view cluster'), + 'store', false, - [ 'icon' => 'wand' ], + 'window.location.replace(\"index.php?sec=reporting&sec2=enterprise/godmode/reporting/cluster_view&id=".$id_cluster."\");', + [ + 'icon' => 'update', + 'mode' => 'secondary', + ], true ); - - html_print_div( - [ - 'class' => 'action-buttons', - 'content' => $output, - ] - ); - - html_print_input_hidden('create_alert', 1); - echo '
'; } - ui_require_css_file('cluetip', 'include/styles/js/'); - ui_require_jquery_file('validate'); - ui_require_jquery_file('cluetip'); - ui_require_jquery_file('pandora.controls'); - ui_require_jquery_file('bgiframe'); + $actionButtons .= html_print_submit_button( + __('Add alert'), + 'add', + false, + [ 'icon' => 'wand' ], + true + ); - ?> + html_print_action_buttons($actionButtons, ['right_content' => $pagination]); + + html_print_input_hidden('create_alert', 1); + echo ''; +} + +ui_require_css_file('cluetip', 'include/styles/js/'); +ui_require_jquery_file('validate'); +ui_require_jquery_file('cluetip'); +ui_require_jquery_file('pandora.controls'); +ui_require_jquery_file('bgiframe'); + +?>