From 63d783907f3e497b3cea6304fd913dce70268dd1 Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Tue, 11 Nov 2014 12:38:18 +0100 Subject: [PATCH] Working in the fusion of edit and view code of visualmap. --- .../include/functions_visual_map.php | 91 ++++++++++--------- 1 file changed, 48 insertions(+), 43 deletions(-) mode change 100644 => 100755 pandora_console/include/functions_visual_map.php diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php old mode 100644 new mode 100755 index a634284b4f..14ea0b659b --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -70,8 +70,13 @@ function visual_map_print_item($layoutData) { $text = '' . $label . ''; + if (!isset($layoutData['status_calculated'])) { + $layoutData['status_calculated'] = + visual_map_get_status_element($layoutData); + } $status = $layoutData['status_calculated']; + switch ($status) { case VISUAL_MAP_STATUS_CRITICAL_BAD: //Critical (BAD) @@ -99,6 +104,7 @@ function visual_map_print_item($layoutData) { switch($type) { case STATIC_GRAPH: + case GROUP_ITEM: if ($layoutData['image'] != null) { $img = visual_map_get_image_status_element($layoutData, $layoutData['status_calculated']); @@ -113,15 +119,10 @@ function visual_map_print_item($layoutData) { $imageSize = 'width="' . $width . '" height="' . $height . '"'; } break; - - case GROUP_ITEM: + case ICON: if ($layoutData['image'] != null) { $img = visual_map_get_image_status_element($layoutData, $layoutData['status_calculated']); - if (substr($img,0,1) == '4') { - $borderStyle ='border: 2px solid ' . COL_ALERTFIRED . ';'; - $img = substr_replace($img, '', 0,1); - } } if (($width != 0) && ($height != 0)) { @@ -198,38 +199,53 @@ function visual_map_print_item($layoutData) { $img = str_replace('>', 'class="image" id="image_' . $id . '" />', $img); break; + } + + + $class = "item "; + switch ($type) { + case STATIC_GRAPH: + $class .= "static_graph"; + break; + case GROUP_ITEM: + $class .= "group_item"; + break; + case PERCENTILE_BAR: + case PERCENTILE_BUBBLE: + $class .= "percentile_item"; + break; + case MODULE_GRAPH: + $class .= "module_graph"; + break; + case SIMPLE_VALUE: + case SIMPLE_VALUE_MAX: + case SIMPLE_VALUE_MIN: + case SIMPLE_VALUE_AVG: + $class .= "simple_value"; + break; + case LABEL: + $class .= "label"; + break; case ICON: - if ($layoutData['image'] != null) { - $img = visual_map_get_image_status_element($layoutData, - $layoutData['status_calculated']); - } - - if (($width != 0) && ($height != 0)) { - $sizeStyle = 'width: ' . $width . 'px; height: ' . $height . 'px;'; - $imageSize = 'width="' . $width . '" height="' . $height . '"'; - } + $class .= "icon"; + break; + default: + //enterprise_hook break; } + echo '
'; + + switch ($type) { case STATIC_GRAPH: - echo '
'; - if ($layoutData['image'] != null) { - if (($width != 0) && ($height != 0)) - echo html_print_image($img, true, - array("class" => "image", "id" => "image_" . $id, "width" => "$width", "height" => "$height", "style" => $borderStyle)); - else - echo html_print_image($img, true, - array("class" => "image", "id" => "image_" . $id, "style" => $borderStyle)); - echo '
'; - } - echo io_safe_output($text); - echo "
"; - break; - case GROUP_ITEM: - echo '
'; if ($layoutData['image'] != null) { if (($width != 0) && ($height != 0)) echo html_print_image($img, true, array("class" => "image", "id" => "image_" . $id, "width" => "$width", "height" => "$height", "style" => $borderStyle)); @@ -238,12 +254,10 @@ function visual_map_print_item($layoutData) { echo '
'; } echo io_safe_output($text); - echo "
"; break; case PERCENTILE_BAR: case PERCENTILE_BUBBLE: - echo '
'; echo io_safe_output($text) . '
'; ob_start(); @@ -256,21 +270,16 @@ function visual_map_print_item($layoutData) { $img = ob_get_clean(); $img = str_replace('>', 'class="image" id="image_' . $id . '" />', $img); echo $img; - echo '
'; - break; case MODULE_GRAPH: - echo '
'; echo io_safe_output($text) . '
'; echo $img; - echo '
'; break; case SIMPLE_VALUE: case SIMPLE_VALUE_MAX: case SIMPLE_VALUE_MIN: case SIMPLE_VALUE_AVG: - echo '
'; $io_safe_output_text = io_safe_output($text); echo $io_safe_output_text; @@ -309,16 +318,11 @@ function visual_map_print_item($layoutData) { if ($layoutData['id_metaconsole'] != 0) { metaconsole_restore_db(); } - - echo '
'; break; case LABEL: - echo '
'; echo io_safe_output($text); - echo "
"; break; case ICON: - echo '
'; if ($layoutData['image'] != null) { // If match with protocol://direction if (preg_match('/^(http:\/\/)((.)+)$/i', $text)) { @@ -336,7 +340,6 @@ function visual_map_print_item($layoutData) { array("class" => "image", "id" => "image_" . $id)); echo '
'; } - echo "
"; break; default: enterprise_hook("enterprise_visual_map_print_item", @@ -344,6 +347,8 @@ function visual_map_print_item($layoutData) { break; } + echo "
"; + //Add the line between elements. if ($layoutData['parent_item'] != 0) { $parent = db_get_row_filter('tlayout_data', array('id' => $layoutData['parent_item']));