Resolve conflicts
This commit is contained in:
parent
7701ff7ad1
commit
f61ba42dd7
pandora_console/godmode/setup
|
@ -133,6 +133,11 @@ $buttons['notifications'] = [
|
||||||
'text' => '<a href="'.ui_get_full_url('index.php?sec=gsetup&sec2=godmode/setup/setup§ion=notifications').'">'.html_print_image('images/alerts_template.png', true, ['title' => __('Notifications')]).'</a>',
|
'text' => '<a href="'.ui_get_full_url('index.php?sec=gsetup&sec2=godmode/setup/setup§ion=notifications').'">'.html_print_image('images/alerts_template.png', true, ['title' => __('Notifications')]).'</a>',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
$buttons['gis'] = [
|
||||||
|
'active' => false,
|
||||||
|
'text' => '<a href="'.ui_get_full_url('index.php?sec=general&sec2=godmode/setup/setup§ion=gis').'">'.html_print_image('images/gis_tab.png', true, ['title' => __('GIS Map connection')]).'</a>',
|
||||||
|
];
|
||||||
|
|
||||||
$buttons['websocket_engine'] = [
|
$buttons['websocket_engine'] = [
|
||||||
'active' => false,
|
'active' => false,
|
||||||
'text' => '<a href="'.ui_get_full_url('index.php?sec=gsetup&sec2=godmode/setup/setup§ion=websocket_engine').'">'.html_print_image('images/websocket_small.png', true, ['title' => __('Websocket engine')]).'</a>',
|
'text' => '<a href="'.ui_get_full_url('index.php?sec=gsetup&sec2=godmode/setup/setup§ion=websocket_engine').'">'.html_print_image('images/websocket_small.png', true, ['title' => __('Websocket engine')]).'</a>',
|
||||||
|
@ -183,6 +188,11 @@ switch ($section) {
|
||||||
$help_header = 'setup_integria_tab';
|
$help_header = 'setup_integria_tab';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'gis':
|
||||||
|
$buttons['gis']['active'] = true;
|
||||||
|
$subpage = ' » '.__('Map conections GIS');
|
||||||
|
break;
|
||||||
|
|
||||||
case 'notifications':
|
case 'notifications':
|
||||||
$buttons['notifications']['active'] = true;
|
$buttons['notifications']['active'] = true;
|
||||||
$subpage = ' » '.__('Notifications');
|
$subpage = ' » '.__('Notifications');
|
||||||
|
@ -254,6 +264,10 @@ switch ($section) {
|
||||||
include_once $config['homedir'].'/godmode/setup/setup_integria.php';
|
include_once $config['homedir'].'/godmode/setup/setup_integria.php';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'gis':
|
||||||
|
include_once $config['homedir'].'/godmode/setup/gis.php';
|
||||||
|
break;
|
||||||
|
|
||||||
case 'notifications':
|
case 'notifications':
|
||||||
include_once $config['homedir'].'/godmode/setup/setup_notifications.php';
|
include_once $config['homedir'].'/godmode/setup/setup_notifications.php';
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue