diff --git a/pandora_console/extensions/net_tools.php b/pandora_console/extensions/net_tools.php
index fcd54fbfdc..f6736f366a 100644
--- a/pandora_console/extensions/net_tools.php
+++ b/pandora_console/extensions/net_tools.php
@@ -20,7 +20,7 @@ $id_agente = get_parameter ("id_agente");
$address = agents_get_address($id_agente);
if (!empty($address) || empty($id_agente)) {
- extensions_add_opemode_tab_agent ('network_tools','Network Tools','extensions/net_tools/nettool.png',"main_net_tools", "v1r1");
+ extensions_add_opemode_tab_agent ('network_tools','Network Tools','extensions/net_tools/nettool.png',"main_net_tools", "v1r1", 'AW');
}
function whereis_the_command ($command) {
diff --git a/pandora_console/extensions/ssh_gateway.php b/pandora_console/extensions/ssh_gateway.php
index f39f63fc71..9ddcf50f53 100644
--- a/pandora_console/extensions/ssh_gateway.php
+++ b/pandora_console/extensions/ssh_gateway.php
@@ -20,7 +20,7 @@ $id_agente = get_parameter ("id_agente");
$address = agents_get_address($id_agente);
if (!empty($address) || empty($id_agente)) {
- extensions_add_opemode_tab_agent ('ssh_gateway','SSH Gateway','extensions/ssh_gateway/secure_console.png',"ssh_gateway", "v1r1");
+ extensions_add_opemode_tab_agent ('ssh_gateway','SSH Gateway','extensions/ssh_gateway/secure_console.png',"ssh_gateway", "v1r1", 'AW');
}
function ssh_gateway () {
diff --git a/pandora_console/extensions/vnc_view.php b/pandora_console/extensions/vnc_view.php
index f10000c981..16bb353688 100644
--- a/pandora_console/extensions/vnc_view.php
+++ b/pandora_console/extensions/vnc_view.php
@@ -39,6 +39,6 @@ $id_agente = get_parameter ("id_agente");
$address = agents_get_address($id_agente);
if (!empty($address) || empty($id_agente)) {
- extensions_add_opemode_tab_agent('vnc_view', __('VNC view'), 'images/vnc.png', 'vnc_view', "v1r1");
+ extensions_add_opemode_tab_agent('vnc_view', __('VNC view'), 'images/vnc.png', 'vnc_view', "v1r1", 'AW');
}
?>
diff --git a/pandora_console/include/functions_extensions.php b/pandora_console/include/functions_extensions.php
index 5345ba560b..078a72842a 100644
--- a/pandora_console/include/functions_extensions.php
+++ b/pandora_console/include/functions_extensions.php
@@ -430,7 +430,7 @@ function extensions_add_godmode_tab_agent($tabId, $tabName, $tabIcon, $tabFuncti
* @param tabIcon Path to the image icon
* @param tabFunction Name of the function to execute when this extension is called
*/
-function extensions_add_opemode_tab_agent($tabId, $tabName, $tabIcon, $tabFunction, $version="N/A") {
+function extensions_add_opemode_tab_agent($tabId, $tabName, $tabIcon, $tabFunction, $version = "N/A", $acl = 'AR') {
global $config;
global $extension_file;
@@ -441,6 +441,7 @@ function extensions_add_opemode_tab_agent($tabId, $tabName, $tabIcon, $tabFuncti
$extension['extension_ope_tab']['icon'] = $tabIcon;
$extension['extension_ope_tab']['function'] = $tabFunction;
$extension['extension_ope_tab']['version'] = $version;
+ $extension['extension_ope_tab']['acl'] = $acl;
}
/**
diff --git a/pandora_console/operation/agentes/ver_agente.php b/pandora_console/operation/agentes/ver_agente.php
index 047a80c8e8..8990b7643b 100644
--- a/pandora_console/operation/agentes/ver_agente.php
+++ b/pandora_console/operation/agentes/ver_agente.php
@@ -1136,57 +1136,58 @@ if (isset($ehorus_tab) && !empty($ehorus_tab)) {
//Tabs for extensions
foreach ($config['extensions'] as $extension) {
if (isset($extension['extension_ope_tab'])) {
-
- //VMware extension is only available for VMware OS
- if ($extension['extension_ope_tab']['id'] === "vmware_manager") {
-
- //Check if OS is vmware
- $id_remote_field = db_get_value ("id_field",
- "tagent_custom_fields", "name", "vmware_type");
-
- $vmware_type = db_get_value_filter("description",
- "tagent_custom_data",
- array("id_field" => $id_remote_field, "id_agent" => $agent["id_agente"]));
-
- if ($vmware_type != "vm") {
- continue;
+ if (check_acl($config['id_user'], $id_grupo, $extension['extension_ope_tab']['acl'])) {
+ //VMware extension is only available for VMware OS
+ if ($extension['extension_ope_tab']['id'] === "vmware_manager") {
+
+ //Check if OS is vmware
+ $id_remote_field = db_get_value ("id_field",
+ "tagent_custom_fields", "name", "vmware_type");
+
+ $vmware_type = db_get_value_filter("description",
+ "tagent_custom_data",
+ array("id_field" => $id_remote_field, "id_agent" => $agent["id_agente"]));
+
+ if ($vmware_type != "vm") {
+ continue;
+ }
+
}
- }
-
- //RHEV extension is only available for RHEV Virtual Machines
- if ($extension['extension_ope_tab']['id'] === "rhev_manager") {
- //Get id for remote field "rhev_type"
- $id_remote_field = db_get_value("id_field", "tagent_custom_fields", "name", "rhev_type");
-
- //Get rhev type for this agent
- $rhev_type = db_get_value_filter ("description", "tagent_custom_data", array ("id_field" => $id_remote_field, "id_agent" => $agent['id_agente']));
-
- //Check if rhev type is a vm
- if ($rhev_type != "vm") {
- continue;
+ //RHEV extension is only available for RHEV Virtual Machines
+ if ($extension['extension_ope_tab']['id'] === "rhev_manager") {
+ //Get id for remote field "rhev_type"
+ $id_remote_field = db_get_value("id_field", "tagent_custom_fields", "name", "rhev_type");
+
+ //Get rhev type for this agent
+ $rhev_type = db_get_value_filter ("description", "tagent_custom_data", array ("id_field" => $id_remote_field, "id_agent" => $agent['id_agente']));
+
+ //Check if rhev type is a vm
+ if ($rhev_type != "vm") {
+ continue;
+ }
}
+
+
+ $image = $extension['extension_ope_tab']['icon'];
+ $name = $extension['extension_ope_tab']['name'];
+ $id = $extension['extension_ope_tab']['id'];
+
+ $id_extension = get_parameter('id_extension', '');
+
+ if ($id_extension == $id) {
+ $active = true;
+ }
+ else {
+ $active = false;
+ }
+
+ $url = 'index.php?sec=estado&sec2=operation/agentes/ver_agente&tab=extension&id_agente='.$id_agente . '&id_extension=' . $id;
+
+ $extension_tab = array('text' => '' . html_print_image ($image, true, array ( "title" => $name)) . '', 'active' => $active);
+
+ $onheader = $onheader + array($id => $extension_tab);
}
-
-
- $image = $extension['extension_ope_tab']['icon'];
- $name = $extension['extension_ope_tab']['name'];
- $id = $extension['extension_ope_tab']['id'];
-
- $id_extension = get_parameter('id_extension', '');
-
- if ($id_extension == $id) {
- $active = true;
- }
- else {
- $active = false;
- }
-
- $url = 'index.php?sec=estado&sec2=operation/agentes/ver_agente&tab=extension&id_agente='.$id_agente . '&id_extension=' . $id;
-
- $extension_tab = array('text' => '' . html_print_image ($image, true, array ( "title" => $name)) . '', 'active' => $active);
-
- $onheader = $onheader + array($id => $extension_tab);
}
}