From 4ae14e0888fdabdfb421daff01bdebced7011029 Mon Sep 17 00:00:00 2001 From: Kike Date: Tue, 24 Sep 2019 15:14:17 +0200 Subject: [PATCH] Fixed issue with instructions in events view --- pandora_console/include/functions_events.php | 47 ++++++++++++++++++++ pandora_console/operation/events/events.php | 9 ++++ 2 files changed, 56 insertions(+) diff --git a/pandora_console/include/functions_events.php b/pandora_console/include/functions_events.php index ffb36aa3ae..cbe94ef8cb 100644 --- a/pandora_console/include/functions_events.php +++ b/pandora_console/include/functions_events.php @@ -6634,3 +6634,50 @@ function events_get_secondary_groups_left_join($table) return 'LEFT JOIN tmetaconsole_agent_secondary_group tasg ON te.id_agente = tasg.id_tagente AND te.server_id = tasg.id_tmetaconsole_setup'; } + + +function events_get_instructions($event) +{ + if (!is_array($event)) { + return ''; + } + + switch ($event['event_type']) { + case 'going_unknown': + if ($event['unknown_instructions'] != '') { + $value = str_replace("\n", '
', io_safe_output($event['unknown_instructions'])); + } + break; + + case 'going_up_warning': + case 'going_down_warning': + if ($event['warning_instructions'] != '') { + $value = str_replace("\n", '
', io_safe_output($event['warning_instructions'])); + } + break; + + case 'going_up_critical': + case 'going_down_critical': + if ($event['critical_instructions'] != '') { + $value = str_replace("\n", '
', io_safe_output($event['critical_instructions'])); + } + break; + } + + if (!isset($value)) { + return ''; + } + + $output = '
'; + $output .= ''; + $output .= ''; + $output .= html_print_image('images/default_list.png', true).''; + $output .= ''; + + return $output; +} diff --git a/pandora_console/operation/events/events.php b/pandora_console/operation/events/events.php index 851bce345a..5147b8e47e 100644 --- a/pandora_console/operation/events/events.php +++ b/pandora_console/operation/events/events.php @@ -309,6 +309,8 @@ if (is_ajax()) { $tmp->data = format_numeric($tmp->data, 1); + $tmp->instructions = events_get_instructions($item); + $tmp->b64 = base64_encode(json_encode($tmp)); $carry[] = $tmp; @@ -2371,5 +2373,12 @@ function datetime_picker_callback() { datetime_picker_callback(); +function show_instructions(id){ + title = ""; + $('#hidden_event_instructions_' + id).dialog({ + title: title, + width: 600 + }); +}