diff --git a/pandora_console/include/functions_pandora_networkmap.php b/pandora_console/include/functions_pandora_networkmap.php index 97a4fd079e..660e53f95d 100644 --- a/pandora_console/include/functions_pandora_networkmap.php +++ b/pandora_console/include/functions_pandora_networkmap.php @@ -309,7 +309,7 @@ function networkmap_db_node_to_js_node($node, &$count, &$count_item_holding_area $item = array(); $item['id'] = $count; - + if (enterprise_installed()) { enterprise_include_once('include/functions_pandora_networkmap.php'); $item['id_db'] = $node['id_in_db']; @@ -328,6 +328,9 @@ function networkmap_db_node_to_js_node($node, &$count, &$count_item_holding_area $item['id_agent'] = (int)$node['style']['id_agent']; $item['id_module'] = (int)$node['source_data']; } + else { + $item['type'] = 3; + } $item['fixed'] = true; $item['x'] = (int)$node['x']; diff --git a/pandora_console/include/javascript/functions_pandora_networkmap.js b/pandora_console/include/javascript/functions_pandora_networkmap.js index 86ab6bd914..0aec15c35d 100644 --- a/pandora_console/include/javascript/functions_pandora_networkmap.js +++ b/pandora_console/include/javascript/functions_pandora_networkmap.js @@ -1589,8 +1589,14 @@ function show_menu(item, data) { name: interface_link_add, icon: "interface_link_children", disabled : function() { + console.log(data); if (enterprise_installed) { - return false; + if (data.type == 3) { + return true; + } + else { + return false; + } } else { return true; @@ -1657,7 +1663,12 @@ function show_menu(item, data) { icon: "interface_link_parent", disabled : function() { if (enterprise_installed) { - return false; + if (data.type == 3) { + return true; + } + else { + return false; + } } else { return true; @@ -1681,7 +1692,12 @@ function show_menu(item, data) { icon: "interface_link_cancel", disabled : function() { if (enterprise_installed) { - return false; + if (data.type == 3) { + return true; + } + else { + return false; + } } else { return true;