Exemple #1
0
function clog_admin()
{
    if (!isset($_SESSION['sess_clog_level'])) {
        clog_authorized();
    }
    if ($_SESSION["sess_clog_level"] == CLOG_PERM_ADMIN) {
        return true;
    } else {
        return false;
    }
}
Exemple #2
0
 | Copyright (C) 2004-2015 The Cacti Group                                 |
 |                                                                         |
 | 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; either version 2          |
 | of the License, or (at your option) any later version.                  |
 |                                                                         |
 | 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.                            |
 +-------------------------------------------------------------------------+
 | Cacti: The Complete RRDTool-based Graphing Solution                     |
 +-------------------------------------------------------------------------+
 | This code is designed, written, and maintained by the Cacti Group. See  |
 | about.php and/or the AUTHORS file for specific developer information.   |
 +-------------------------------------------------------------------------+
 | http://www.cacti.net/                                                   |
 +-------------------------------------------------------------------------+
*/
$guest_account = true;
include './include/auth.php';
include_once './lib/utility.php';
include_once './lib/clog_webapi.php';
/* check edit/alter permissions */
if (!clog_authorized()) {
    echo 'FATAL: YOU DO NO HAVE ACCESS TO THIS AREA OF CACTI';
    exit;
}
load_current_session_value('page_referrer', 'page_referrer', '');
clog_view_logfile();