29 lines
970 B
PHP
29 lines
970 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Pandora FMS- http://pandorafms.com
|
||
|
* ==================================================
|
||
|
* Copyright (c) 2005-2009 Artica Soluciones Tecnologicas
|
||
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
// Load global vars
|
||
|
require_once ("include/config.php");
|
||
|
|
||
|
check_login ();
|
||
|
|
||
|
if (! give_acl ($config['id_user'], 0, "PM") && ! is_user_admin ($config['id_user'])) {
|
||
|
audit_db ($config['id_user'], $REMOTE_ADDR, "ACL Violation", "Trying to access Visual Setup Management");
|
||
|
require ("general/noaccess.php");
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
require_once ('include/functions_gis.php');
|
||
|
|
||
|
?>
|