2012-03-08 19:24:24 +01:00
|
|
|
<?php
|
|
|
|
|
2021-11-04 16:28:15 +01:00
|
|
|
// Pandora FMS - http://pandorafms.com
|
2012-03-08 19:24:24 +01:00
|
|
|
// ==================================================
|
|
|
|
// Copyright (c) 20012 Artica Soluciones Tecnologicas
|
|
|
|
// Please see http://pandorafms.org for full contribution list
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation for version 2.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2018-11-21 13:08:58 +01:00
|
|
|
// Don't start a session before this import.
|
|
|
|
// The session is configured and started inside the config process.
|
2019-01-30 16:18:44 +01:00
|
|
|
require_once '../../include/config.php';
|
2012-03-08 19:24:24 +01:00
|
|
|
|
2019-04-16 12:23:03 +02:00
|
|
|
$legacy = (bool) get_parameter('legacy', $config['legacy_vc']);
|
2021-05-18 10:56:40 +02:00
|
|
|
if (is_metaconsole() === true) {
|
|
|
|
$config['requirements_use_base_url'] = true;
|
|
|
|
}
|
|
|
|
|
2019-04-09 17:45:21 +02:00
|
|
|
if ($legacy === false) {
|
|
|
|
include_once $config['homedir'].'/operation/visual_console/public_view.php';
|
2019-01-30 16:18:44 +01:00
|
|
|
} else {
|
2019-04-16 12:23:03 +02:00
|
|
|
include_once $config['homedir'].'/operation/visual_console/legacy_public_view.php';
|
2012-03-08 19:24:24 +01:00
|
|
|
}
|