Imported Upstream version 3.4.0

This commit is contained in:
Mario Fetka
2019-04-17 11:40:50 +02:00
parent 8b51dbf723
commit 8948a800bb
236 changed files with 48199 additions and 37546 deletions

View File

@@ -4,23 +4,21 @@
// NagiosQL
///////////////////////////////////////////////////////////////////////////////
//
// (c) 2005-2017 by Martin Willisegger
// (c) 2005-2018 by Martin Willisegger
//
// Project : NagiosQL
// Component : Installer preprocessing script
// Website : http://www.nagiosql.org
// Date : $LastChangedDate: 2017-06-22 09:29:35 +0200 (Thu, 22 Jun 2017) $
// Author : $LastChangedBy: martin $
// Version : 3.3.0
// Revision : $LastChangedRevision: 2 $
// Website : https://sourceforge.net/projects/nagiosql/
// Version : 3.4.0
// GIT Repo : https://gitlab.com/wizonet/NagiosQL
//
///////////////////////////////////////////////////////////////////////////////
error_reporting(E_ALL);
//
// Define common variables
// =======================
$strErrorMessage = ""; // All error messages (red)
$strInfoMessage = ""; // All information messages (green)
$strErrorMessage = ''; // All error messages (red)
$strInfoMessage = ''; // All information messages (green)
//
// Start PHP session
// =================
@@ -28,9 +26,9 @@ session_start([ 'name' => 'nagiosql_install']);
//
// Include external function/class files
// =====================================
include("functions/install_class.php");
require $preBasePath.'functions/Autoloader.php';
functions\Autoloader::register($preBasePath);
//
// Initialize class
// ================
$myInstClass = new naginstall;
?>
$myInstClass = new install\functions\NagInstallClass($_SESSION);