Merge branch 'ent-5482-php-warning-visual-console-group-item' into 'develop'

Metaconsole const replaced by function on visual map

See merge request artica/pandorafms!3145
This commit is contained in:
Alejandro Fraguas 2020-05-11 10:11:28 +02:00
commit 46b5f13350
1 changed files with 2 additions and 2 deletions

View File

@ -564,13 +564,13 @@ function visual_map_print_item(
}
if ($is_a_link_to_other_visualconsole) {
if (METACONSOLE == 1) {
if (is_metaconsole() === true) {
$url = $config['homeurl'].'index.php?sec=screen&sec2=screens/screens&action=visualmap&pure=0&id_visualmap='.$layoutData['id_layout_linked'].'&refr=300';
} else {
$url = $config['homeurl'].'index.php?sec=network&sec2=operation/visual_console/render_view&pure='.$config['pure'].'&id='.$layoutData['id_layout_linked'];
}
} else {
if (METACONSOLE == 1) {
if (is_metaconsole() === true) {
$url = $config['homeurl'].'index.php?sec=estado&sec2=operation/agentes/status_monitor&refr=0&ag_group='.$layoutData['id_group'].'&ag_freestring=&module_option=1&ag_modulename=&moduletype=&datatype=&status=-1&sort_field=&sort=none&pure=';
} else {
$url = $config['homeurl'].'index.php?sec=estado&sec2=operation/agentes/estado_agente&group_id='.$layoutData['id_group'];