48 lines
1.5 KiB
PHP
48 lines
1.5 KiB
PHP
<?php
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// NagiosQL
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// (c) 2005-2018 by Martin Willisegger
|
|
//
|
|
// Project : NagiosQL
|
|
// Component : Administration overview
|
|
// Website : https://sourceforge.net/projects/nagiosql/
|
|
// Version : 3.4.0
|
|
// GIT Repo : https://gitlab.com/wizonet/NagiosQL
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Path settings
|
|
// ===================
|
|
$strPattern = '(admin/[^/]*.php)';
|
|
$preRelPath = preg_replace($strPattern, '', filter_input(INPUT_SERVER, 'PHP_SELF', FILTER_SANITIZE_STRING));
|
|
$preBasePath = preg_replace($strPattern, '', filter_input(INPUT_SERVER, 'SCRIPT_FILENAME', FILTER_SANITIZE_STRING));
|
|
//
|
|
// Define common variables
|
|
// =======================
|
|
$prePageId = 7;
|
|
$preContent = 'admin/mainpages.htm.tpl';
|
|
//
|
|
// Include preprocessing file
|
|
// ==========================
|
|
require $preBasePath. 'functions/prepend_adm.php';
|
|
//
|
|
// Include content
|
|
// ===============
|
|
$conttp->setVariable('TITLE', translate('Administration'));
|
|
$conttp->parse('header');
|
|
$conttp->show('header');
|
|
$conttp->setVariable('DESC', translate('Functions to administrate NagiosQL V3'));
|
|
$conttp->parse('main');
|
|
$conttp->show('main');
|
|
//
|
|
// Include Footer
|
|
// ==============
|
|
$maintp->setVariable('VERSION_INFO', "<a href='https://sourceforge.net/projects/nagiosql/' "
|
|
. "target='_blank'>NagiosQL</a> $setFileVersion");
|
|
$maintp->parse('footer');
|
|
$maintp->show('footer');
|