diff --git a/pandora_console/godmode/setup/setup.php b/pandora_console/godmode/setup/setup.php
index e9b8160fdd..3aa66351b9 100644
--- a/pandora_console/godmode/setup/setup.php
+++ b/pandora_console/godmode/setup/setup.php
@@ -133,6 +133,11 @@ $buttons['notifications'] = [
'text' => ''.html_print_image('images/alerts_template.png', true, ['title' => __('Notifications')]).'',
];
+$buttons['gis'] = [
+ 'active' => false,
+ 'text' => ''.html_print_image('images/gis_tab.png', true, ['title' => __('GIS Map connection')]).'',
+];
+
$buttons['websocket_engine'] = [
'active' => false,
'text' => ''.html_print_image('images/websocket_small.png', true, ['title' => __('Websocket engine')]).'',
@@ -183,6 +188,11 @@ switch ($section) {
$help_header = 'setup_integria_tab';
break;
+ case 'gis':
+ $buttons['gis']['active'] = true;
+ $subpage = ' » '.__('Map conections GIS');
+ break;
+
case 'notifications':
$buttons['notifications']['active'] = true;
$subpage = ' » '.__('Notifications');
@@ -254,6 +264,10 @@ switch ($section) {
include_once $config['homedir'].'/godmode/setup/setup_integria.php';
break;
+ case 'gis':
+ include_once $config['homedir'].'/godmode/setup/gis.php';
+ break;
+
case 'notifications':
include_once $config['homedir'].'/godmode/setup/setup_notifications.php';
break;