'help_alert_macros_hint', 'content' => ui_print_help_icon('alert_macros', true), 'hidden' => true, ] ); $table = new stdClass(); $table->id = 'table_macros'; $table->width = '100%'; $table->class = 'databox filters'; if (defined('METACONSOLE')) { if ($id) { $table->head[0] = __('Update Action'); } else { $table->head[0] = __('Create Action'); } $table->head_colspan[0] = 4; $table->headstyle[0] = 'text-align: center'; } $table->style = []; $table->style[0] = 'font-weight: bold'; $table->size = []; $table->size[0] = '20%'; $table->data = []; $table->data[0][0] = __('Name'); $table->data[0][1] = html_print_input_text('name', $name, '', 35, 255, true); if (io_safe_output($name) == 'Monitoring Event') { $table->data[0][1] .= '  '.ui_print_help_tip( __('This action may stop working, if you change its name.'), true, 'images/header_yellow.png' ); } $table->colspan[0][1] = 2; $table->data[1][0] = __('Group'); $own_info = get_user_info($config['id_user']); $table->data[1][1] = html_print_select_groups(false, 'LW', true, 'group', $group, '', '', 0, true); $table->colspan[1][1] = 2; $table->data[2][0] = __('Command'); $commands_sql = db_get_all_rows_filter( 'talert_commands', ['id_group' => array_keys(users_get_groups(false, 'LW'))], [ 'id', 'name', ], 'AND', false, true ); $table->data[2][1] = html_print_select_from_sql( $commands_sql, 'id_command', $id_command, '', __('None'), 0, true ); $table->data[2][1] .= ' '; if (check_acl($config['id_user'], 0, 'PM')) { $table->data[2][1] .= __('Create Command'); $table->data[2][1] .= ''; $table->data[2][1] .= html_print_image('images/add.png', true); $table->data[2][1] .= ''; } $table->data[2][1] .= '
'; $table->colspan[2][1] = 2; $table->data[3][0] = __('Threshold'); $table->data[3][1] = html_print_extended_select_for_time( 'action_threshold', $action_threshold, '', '', '', false, true, false, true, '', false, false, '', false, true ); $table->colspan[3][1] = 2; $table->data[4][0] = ''; $table->data[4][1] = __('Firing'); $table->data[4][2] = __('Recovery'); $table->cellstyle[4][1] = 'font-weight: bold;'; $table->cellstyle[4][2] = 'font-weight: bold;'; $table->data[5][0] = __('Command preview'); $table->data[5][1] = html_print_textarea( 'command_preview', 5, 30, '', 'disabled="disabled"', true ); $table->data[5][2] = html_print_textarea( 'command_recovery_preview', 5, 30, '', 'disabled="disabled"', true ); for ($i = 1; $i <= $config['max_macro_fields']; $i++) { $table->data['field'.$i][0] = html_print_image( 'images/spinner.gif', true ); $table->data['field'.$i][1] = html_print_image( 'images/spinner.gif', true ); $table->data['field'.$i][2] = html_print_image( 'images/spinner.gif', true ); // Store the value in a hidden to keep it on first execution $table->data['field'.$i][1] .= html_print_input_hidden( 'field'.$i.'_value', !empty($action['field'.$i]) ? $action['field'.$i] : '', true ); $table->data['field'.$i][2] .= html_print_input_hidden( 'field'.$i.'_recovery_value', !empty($action['field'.$i.'_recovery']) ? $action['field'.$i.'_recovery'] : '', true ); } echo '
'; $table_html = html_print_table($table, true); // // Hack to hook the bubble dialog of clippy in any place, the intro.js // fails with new elements in the dom from javascript code // ---------------------------------------------------------------------- /* $table_html = str_replace( "", "", $table_html); $table_html = str_replace( '', "
", $table_html); */ // echo $table_html; echo '
'; if ($id) { html_print_input_hidden('id', $id); if ($al_action['id_group'] == 0) { // then must have "PM" access privileges if (check_acl($config['id_user'], 0, 'PM')) { html_print_input_hidden('update_action', 1); html_print_submit_button(__('Update'), 'create', false, 'class="sub upd"'); } } else { html_print_input_hidden('update_action', 1); html_print_submit_button(__('Update'), 'create', false, 'class="sub upd"'); } } else { html_print_input_hidden('create_action', 1); html_print_submit_button(__('Create'), 'create', false, 'class="sub wand"'); } echo '
'; echo ''; enterprise_hook('close_meta_frame'); ui_require_javascript_file('pandora_alerts'); ui_require_javascript_file('tiny_mce', 'include/javascript/tiny_mce/'); ?>