svn:eol-style got murdered on some files for whatever reason so it gets resurrected now, also set some svn:keywords
This commit is contained in:
742
lib/init.php
742
lib/init.php
@@ -1,371 +1,371 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* This file is part of the Froxlor project.
|
||||
* Copyright (c) 2003-2009 the SysCP Team (see authors).
|
||||
* Copyright (c) 2010 the Froxlor Team (see authors).
|
||||
*
|
||||
* For the full copyright and license information, please view the COPYING
|
||||
* file that was distributed with this source code. You can also view the
|
||||
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
|
||||
*
|
||||
* @copyright (c) the authors
|
||||
* @author Florian Lippert <flo@syscp.org> (2003-2009)
|
||||
* @author Froxlor team <team@froxlor.org> (2010-)
|
||||
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
|
||||
* @package System
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
// prevent Froxlor pages from being cached
|
||||
|
||||
header("Cache-Control: no-cache, must-revalidate");
|
||||
header("Pragma: no-cache");
|
||||
header("Content-type: text/html; charset=utf-8");
|
||||
|
||||
// ensure that default timezone is set
|
||||
if(function_exists("date_default_timezone_set") && function_exists("date_default_timezone_get"))
|
||||
{
|
||||
@date_default_timezone_set(@date_default_timezone_get());
|
||||
}
|
||||
|
||||
/**
|
||||
* Register Globals Security Fix
|
||||
* - unsetting every variable registered in $_REQUEST and as variable itself
|
||||
*/
|
||||
|
||||
foreach($_REQUEST as $key => $value)
|
||||
{
|
||||
if(isset($$key))
|
||||
{
|
||||
unset($$key);
|
||||
}
|
||||
}
|
||||
|
||||
unset($_);
|
||||
unset($value);
|
||||
unset($key);
|
||||
$filename = basename($_SERVER['PHP_SELF']);
|
||||
|
||||
if(!file_exists('./lib/userdata.inc.php'))
|
||||
{
|
||||
die('You have to <a href="./install/install.php">configure</a> Froxlor first!');
|
||||
}
|
||||
|
||||
if(!is_readable('./lib/userdata.inc.php'))
|
||||
{
|
||||
die('You have to make the file "./lib/userdata.inc.php" readable for the http-process!');
|
||||
}
|
||||
|
||||
/**
|
||||
* Includes the Usersettings eg. MySQL-Username/Passwort etc.
|
||||
*/
|
||||
|
||||
require ('./lib/userdata.inc.php');
|
||||
|
||||
if(!isset($sql)
|
||||
|| !is_array($sql))
|
||||
{
|
||||
$config_hint = file_get_contents('./templates/misc/configurehint.tpl');
|
||||
die($config_hint);
|
||||
}
|
||||
|
||||
// Legacy sql-root-information
|
||||
if(isset($sql['root_user']) && isset($sql['root_password']) && (!isset($sql_root) || !is_array($sql_root)))
|
||||
{
|
||||
$sql_root = array(0 => array('caption' => 'Default', 'host' => $sql['host'], 'user' => $sql['root_user'], 'password' => $sql['root_password']));
|
||||
unset($sql['root_user']);
|
||||
unset($sql['root_password']);
|
||||
}
|
||||
|
||||
/**
|
||||
* Includes the Functions
|
||||
*/
|
||||
|
||||
require ('./lib/functions.php');
|
||||
|
||||
/**
|
||||
* Includes the MySQL-Tabledefinitions etc.
|
||||
*/
|
||||
|
||||
require ('./lib/tables.inc.php');
|
||||
|
||||
/**
|
||||
* Includes the MySQL-Connection-Class
|
||||
*/
|
||||
|
||||
$db = new db($sql['host'], $sql['user'], $sql['password'], $sql['db']);
|
||||
unset($sql['password']);
|
||||
unset($db->password);
|
||||
|
||||
// we will try to unset most of the $sql information if they are not needed
|
||||
// by the calling script.
|
||||
|
||||
if(!isset($need_db_sql_data) || $need_db_sql_data !== true)
|
||||
{
|
||||
unset($sql);
|
||||
$sql = array();
|
||||
}
|
||||
|
||||
if(!isset($need_root_db_sql_data) || $need_root_db_sql_data !== true)
|
||||
{
|
||||
unset($sql_root);
|
||||
$sql_root = array();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new idna converter
|
||||
*/
|
||||
|
||||
$idna_convert = new idna_convert_wrapper();
|
||||
|
||||
/**
|
||||
* Reverse magic_quotes_gpc=on to have clean GPC data again
|
||||
*/
|
||||
|
||||
if(get_magic_quotes_gpc())
|
||||
{
|
||||
$in = array(&$_GET, &$_POST, &$_COOKIE);
|
||||
|
||||
while(list($k, $v) = each($in))
|
||||
{
|
||||
foreach($v as $key => $val)
|
||||
{
|
||||
if(!is_array($val))
|
||||
{
|
||||
$in[$k][$key] = stripslashes($val);
|
||||
continue;
|
||||
}
|
||||
|
||||
$in[] = & $in[$k][$key];
|
||||
}
|
||||
}
|
||||
|
||||
unset($in);
|
||||
}
|
||||
|
||||
/**
|
||||
* Selects settings from MySQL-Table
|
||||
*/
|
||||
|
||||
$settings_data = loadConfigArrayDir('./actions/admin/settings/');
|
||||
$settings = loadSettings(&$settings_data, &$db);
|
||||
|
||||
/**
|
||||
* SESSION MANAGEMENT
|
||||
*/
|
||||
|
||||
$remote_addr = $_SERVER['REMOTE_ADDR'];
|
||||
$http_user_agent = $_SERVER['HTTP_USER_AGENT'];
|
||||
unset($userinfo);
|
||||
unset($userid);
|
||||
unset($customerid);
|
||||
unset($adminid);
|
||||
unset($s);
|
||||
|
||||
if(isset($_POST['s']))
|
||||
{
|
||||
$s = $_POST['s'];
|
||||
$nosession = 0;
|
||||
}
|
||||
elseif(isset($_GET['s']))
|
||||
{
|
||||
$s = $_GET['s'];
|
||||
$nosession = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
$s = '';
|
||||
$nosession = 1;
|
||||
}
|
||||
|
||||
$timediff = time() - $settings['session']['sessiontimeout'];
|
||||
$db->query('DELETE FROM `' . TABLE_PANEL_SESSIONS . '` WHERE `lastactivity` < "' . (int)$timediff . '"');
|
||||
$userinfo = Array();
|
||||
|
||||
if(isset($s)
|
||||
&& $s != ""
|
||||
&& $nosession != 1)
|
||||
{
|
||||
$query = 'SELECT `s`.*, `u`.* FROM `' . TABLE_PANEL_SESSIONS . '` `s` LEFT JOIN `';
|
||||
|
||||
if(AREA == 'admin')
|
||||
{
|
||||
$query.= TABLE_PANEL_ADMINS . '` `u` ON (`s`.`userid` = `u`.`adminid`)';
|
||||
$adminsession = '1';
|
||||
}
|
||||
else
|
||||
{
|
||||
$query.= TABLE_PANEL_CUSTOMERS . '` `u` ON (`s`.`userid` = `u`.`customerid`)';
|
||||
$adminsession = '0';
|
||||
}
|
||||
|
||||
$query.= 'WHERE `s`.`hash`="' . $db->escape($s) . '" AND `s`.`ipaddress`="' . $db->escape($remote_addr) . '" AND `s`.`useragent`="' . $db->escape($http_user_agent) . '" AND `s`.`lastactivity` > "' . (int)$timediff . '" AND `s`.`adminsession` = "' . $db->escape($adminsession) . '"';
|
||||
$userinfo = $db->query_first($query);
|
||||
|
||||
if((($userinfo['adminsession'] == '1' && AREA == 'admin' && isset($userinfo['adminid'])) || ($userinfo['adminsession'] == '0' && (AREA == 'customer' || AREA == 'login') && isset($userinfo['customerid'])))
|
||||
&& (!isset($userinfo['deactivated']) || $userinfo['deactivated'] != '1'))
|
||||
{
|
||||
$userinfo['newformtoken'] = strtolower(md5(uniqid(microtime(), 1)));
|
||||
$query = 'UPDATE `' . TABLE_PANEL_SESSIONS . '` SET `lastactivity`="' . time() . '", `formtoken`="' . $userinfo['newformtoken'] . '" WHERE `hash`="' . $db->escape($s) . '" AND `adminsession` = "' . $db->escape($adminsession) . '"';
|
||||
$db->query($query);
|
||||
$nosession = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
$nosession = 1;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$nosession = 1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Language Managament
|
||||
*/
|
||||
|
||||
$langs = array();
|
||||
$languages = array();
|
||||
|
||||
// query the whole table
|
||||
|
||||
$query = 'SELECT * FROM `' . TABLE_PANEL_LANGUAGE . '` ';
|
||||
$result = $db->query($query);
|
||||
|
||||
// presort languages
|
||||
|
||||
while($row = $db->fetch_array($result))
|
||||
{
|
||||
$langs[$row['language']][] = $row;
|
||||
}
|
||||
|
||||
// buildup $languages for the login screen
|
||||
|
||||
foreach($langs as $key => $value)
|
||||
{
|
||||
$languages[$key] = $key;
|
||||
}
|
||||
|
||||
if(!isset($userinfo['def_language'])
|
||||
|| !isset($languages[$userinfo['def_language']]))
|
||||
{
|
||||
if(isset($_GET['language'])
|
||||
&& isset($languages[$_GET['language']]))
|
||||
{
|
||||
$language = $_GET['language'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$language = $settings['panel']['standardlanguage'];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$language = $userinfo['def_language'];
|
||||
}
|
||||
|
||||
// include every english language file we can get
|
||||
|
||||
foreach($langs['English'] as $key => $value)
|
||||
{
|
||||
include_once makeSecurePath($value['file']);
|
||||
}
|
||||
|
||||
// now include the selected language if its not english
|
||||
|
||||
if($language != 'English')
|
||||
{
|
||||
foreach($langs[$language] as $key => $value)
|
||||
{
|
||||
include_once makeSecurePath($value['file']);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Redirects to index.php (login page) if no session exists
|
||||
*/
|
||||
|
||||
if($nosession == 1
|
||||
&& AREA != 'login')
|
||||
{
|
||||
unset($userinfo);
|
||||
redirectTo('index.php');
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize Template Engine
|
||||
*/
|
||||
|
||||
$templatecache = array();
|
||||
|
||||
/**
|
||||
* Logic moved out of lng-file
|
||||
*/
|
||||
|
||||
if(isset($userinfo['loginname'])
|
||||
&& $userinfo['loginname'] != '')
|
||||
{
|
||||
$lng['menue']['main']['username'].= $userinfo['loginname'];
|
||||
|
||||
/**
|
||||
* Initialize logging
|
||||
*/
|
||||
|
||||
$log = FroxlorLogger::getInstanceOf($userinfo, $db, $settings);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fills variables for navigation, header and footer
|
||||
*/
|
||||
|
||||
if(AREA == 'admin' || AREA == 'customer')
|
||||
{
|
||||
$navigation_data = loadConfigArrayDir('./lib/navigation/');
|
||||
$navigation = buildNavigation($navigation_data[AREA], $userinfo);
|
||||
unset($navigation_data);
|
||||
}
|
||||
|
||||
eval("\$header = \"" . getTemplate('header', '1') . "\";");
|
||||
eval("\$footer = \"" . getTemplate('footer', '1') . "\";");
|
||||
|
||||
if(isset($_POST['action']))
|
||||
{
|
||||
$action = $_POST['action'];
|
||||
}
|
||||
elseif(isset($_GET['action']))
|
||||
{
|
||||
$action = $_GET['action'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$action = '';
|
||||
}
|
||||
|
||||
if(isset($_POST['page']))
|
||||
{
|
||||
$page = $_POST['page'];
|
||||
}
|
||||
elseif(isset($_GET['page']))
|
||||
{
|
||||
$page = $_GET['page'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$page = '';
|
||||
}
|
||||
|
||||
if($page == '')
|
||||
{
|
||||
$page = 'overview';
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize the mailingsystem
|
||||
*/
|
||||
|
||||
$mail = new PHPMailer();
|
||||
$mail->From = $settings['panel']['adminmail'];
|
||||
|
||||
?>
|
||||
<?php
|
||||
|
||||
/**
|
||||
* This file is part of the Froxlor project.
|
||||
* Copyright (c) 2003-2009 the SysCP Team (see authors).
|
||||
* Copyright (c) 2010 the Froxlor Team (see authors).
|
||||
*
|
||||
* For the full copyright and license information, please view the COPYING
|
||||
* file that was distributed with this source code. You can also view the
|
||||
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
|
||||
*
|
||||
* @copyright (c) the authors
|
||||
* @author Florian Lippert <flo@syscp.org> (2003-2009)
|
||||
* @author Froxlor team <team@froxlor.org> (2010-)
|
||||
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
|
||||
* @package System
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
// prevent Froxlor pages from being cached
|
||||
|
||||
header("Cache-Control: no-cache, must-revalidate");
|
||||
header("Pragma: no-cache");
|
||||
header("Content-type: text/html; charset=utf-8");
|
||||
|
||||
// ensure that default timezone is set
|
||||
if(function_exists("date_default_timezone_set") && function_exists("date_default_timezone_get"))
|
||||
{
|
||||
@date_default_timezone_set(@date_default_timezone_get());
|
||||
}
|
||||
|
||||
/**
|
||||
* Register Globals Security Fix
|
||||
* - unsetting every variable registered in $_REQUEST and as variable itself
|
||||
*/
|
||||
|
||||
foreach($_REQUEST as $key => $value)
|
||||
{
|
||||
if(isset($$key))
|
||||
{
|
||||
unset($$key);
|
||||
}
|
||||
}
|
||||
|
||||
unset($_);
|
||||
unset($value);
|
||||
unset($key);
|
||||
$filename = basename($_SERVER['PHP_SELF']);
|
||||
|
||||
if(!file_exists('./lib/userdata.inc.php'))
|
||||
{
|
||||
die('You have to <a href="./install/install.php">configure</a> Froxlor first!');
|
||||
}
|
||||
|
||||
if(!is_readable('./lib/userdata.inc.php'))
|
||||
{
|
||||
die('You have to make the file "./lib/userdata.inc.php" readable for the http-process!');
|
||||
}
|
||||
|
||||
/**
|
||||
* Includes the Usersettings eg. MySQL-Username/Passwort etc.
|
||||
*/
|
||||
|
||||
require ('./lib/userdata.inc.php');
|
||||
|
||||
if(!isset($sql)
|
||||
|| !is_array($sql))
|
||||
{
|
||||
$config_hint = file_get_contents('./templates/misc/configurehint.tpl');
|
||||
die($config_hint);
|
||||
}
|
||||
|
||||
// Legacy sql-root-information
|
||||
if(isset($sql['root_user']) && isset($sql['root_password']) && (!isset($sql_root) || !is_array($sql_root)))
|
||||
{
|
||||
$sql_root = array(0 => array('caption' => 'Default', 'host' => $sql['host'], 'user' => $sql['root_user'], 'password' => $sql['root_password']));
|
||||
unset($sql['root_user']);
|
||||
unset($sql['root_password']);
|
||||
}
|
||||
|
||||
/**
|
||||
* Includes the Functions
|
||||
*/
|
||||
|
||||
require ('./lib/functions.php');
|
||||
|
||||
/**
|
||||
* Includes the MySQL-Tabledefinitions etc.
|
||||
*/
|
||||
|
||||
require ('./lib/tables.inc.php');
|
||||
|
||||
/**
|
||||
* Includes the MySQL-Connection-Class
|
||||
*/
|
||||
|
||||
$db = new db($sql['host'], $sql['user'], $sql['password'], $sql['db']);
|
||||
unset($sql['password']);
|
||||
unset($db->password);
|
||||
|
||||
// we will try to unset most of the $sql information if they are not needed
|
||||
// by the calling script.
|
||||
|
||||
if(!isset($need_db_sql_data) || $need_db_sql_data !== true)
|
||||
{
|
||||
unset($sql);
|
||||
$sql = array();
|
||||
}
|
||||
|
||||
if(!isset($need_root_db_sql_data) || $need_root_db_sql_data !== true)
|
||||
{
|
||||
unset($sql_root);
|
||||
$sql_root = array();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new idna converter
|
||||
*/
|
||||
|
||||
$idna_convert = new idna_convert_wrapper();
|
||||
|
||||
/**
|
||||
* Reverse magic_quotes_gpc=on to have clean GPC data again
|
||||
*/
|
||||
|
||||
if(get_magic_quotes_gpc())
|
||||
{
|
||||
$in = array(&$_GET, &$_POST, &$_COOKIE);
|
||||
|
||||
while(list($k, $v) = each($in))
|
||||
{
|
||||
foreach($v as $key => $val)
|
||||
{
|
||||
if(!is_array($val))
|
||||
{
|
||||
$in[$k][$key] = stripslashes($val);
|
||||
continue;
|
||||
}
|
||||
|
||||
$in[] = & $in[$k][$key];
|
||||
}
|
||||
}
|
||||
|
||||
unset($in);
|
||||
}
|
||||
|
||||
/**
|
||||
* Selects settings from MySQL-Table
|
||||
*/
|
||||
|
||||
$settings_data = loadConfigArrayDir('./actions/admin/settings/');
|
||||
$settings = loadSettings(&$settings_data, &$db);
|
||||
|
||||
/**
|
||||
* SESSION MANAGEMENT
|
||||
*/
|
||||
|
||||
$remote_addr = $_SERVER['REMOTE_ADDR'];
|
||||
$http_user_agent = $_SERVER['HTTP_USER_AGENT'];
|
||||
unset($userinfo);
|
||||
unset($userid);
|
||||
unset($customerid);
|
||||
unset($adminid);
|
||||
unset($s);
|
||||
|
||||
if(isset($_POST['s']))
|
||||
{
|
||||
$s = $_POST['s'];
|
||||
$nosession = 0;
|
||||
}
|
||||
elseif(isset($_GET['s']))
|
||||
{
|
||||
$s = $_GET['s'];
|
||||
$nosession = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
$s = '';
|
||||
$nosession = 1;
|
||||
}
|
||||
|
||||
$timediff = time() - $settings['session']['sessiontimeout'];
|
||||
$db->query('DELETE FROM `' . TABLE_PANEL_SESSIONS . '` WHERE `lastactivity` < "' . (int)$timediff . '"');
|
||||
$userinfo = Array();
|
||||
|
||||
if(isset($s)
|
||||
&& $s != ""
|
||||
&& $nosession != 1)
|
||||
{
|
||||
$query = 'SELECT `s`.*, `u`.* FROM `' . TABLE_PANEL_SESSIONS . '` `s` LEFT JOIN `';
|
||||
|
||||
if(AREA == 'admin')
|
||||
{
|
||||
$query.= TABLE_PANEL_ADMINS . '` `u` ON (`s`.`userid` = `u`.`adminid`)';
|
||||
$adminsession = '1';
|
||||
}
|
||||
else
|
||||
{
|
||||
$query.= TABLE_PANEL_CUSTOMERS . '` `u` ON (`s`.`userid` = `u`.`customerid`)';
|
||||
$adminsession = '0';
|
||||
}
|
||||
|
||||
$query.= 'WHERE `s`.`hash`="' . $db->escape($s) . '" AND `s`.`ipaddress`="' . $db->escape($remote_addr) . '" AND `s`.`useragent`="' . $db->escape($http_user_agent) . '" AND `s`.`lastactivity` > "' . (int)$timediff . '" AND `s`.`adminsession` = "' . $db->escape($adminsession) . '"';
|
||||
$userinfo = $db->query_first($query);
|
||||
|
||||
if((($userinfo['adminsession'] == '1' && AREA == 'admin' && isset($userinfo['adminid'])) || ($userinfo['adminsession'] == '0' && (AREA == 'customer' || AREA == 'login') && isset($userinfo['customerid'])))
|
||||
&& (!isset($userinfo['deactivated']) || $userinfo['deactivated'] != '1'))
|
||||
{
|
||||
$userinfo['newformtoken'] = strtolower(md5(uniqid(microtime(), 1)));
|
||||
$query = 'UPDATE `' . TABLE_PANEL_SESSIONS . '` SET `lastactivity`="' . time() . '", `formtoken`="' . $userinfo['newformtoken'] . '" WHERE `hash`="' . $db->escape($s) . '" AND `adminsession` = "' . $db->escape($adminsession) . '"';
|
||||
$db->query($query);
|
||||
$nosession = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
$nosession = 1;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$nosession = 1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Language Managament
|
||||
*/
|
||||
|
||||
$langs = array();
|
||||
$languages = array();
|
||||
|
||||
// query the whole table
|
||||
|
||||
$query = 'SELECT * FROM `' . TABLE_PANEL_LANGUAGE . '` ';
|
||||
$result = $db->query($query);
|
||||
|
||||
// presort languages
|
||||
|
||||
while($row = $db->fetch_array($result))
|
||||
{
|
||||
$langs[$row['language']][] = $row;
|
||||
}
|
||||
|
||||
// buildup $languages for the login screen
|
||||
|
||||
foreach($langs as $key => $value)
|
||||
{
|
||||
$languages[$key] = $key;
|
||||
}
|
||||
|
||||
if(!isset($userinfo['def_language'])
|
||||
|| !isset($languages[$userinfo['def_language']]))
|
||||
{
|
||||
if(isset($_GET['language'])
|
||||
&& isset($languages[$_GET['language']]))
|
||||
{
|
||||
$language = $_GET['language'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$language = $settings['panel']['standardlanguage'];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$language = $userinfo['def_language'];
|
||||
}
|
||||
|
||||
// include every english language file we can get
|
||||
|
||||
foreach($langs['English'] as $key => $value)
|
||||
{
|
||||
include_once makeSecurePath($value['file']);
|
||||
}
|
||||
|
||||
// now include the selected language if its not english
|
||||
|
||||
if($language != 'English')
|
||||
{
|
||||
foreach($langs[$language] as $key => $value)
|
||||
{
|
||||
include_once makeSecurePath($value['file']);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Redirects to index.php (login page) if no session exists
|
||||
*/
|
||||
|
||||
if($nosession == 1
|
||||
&& AREA != 'login')
|
||||
{
|
||||
unset($userinfo);
|
||||
redirectTo('index.php');
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize Template Engine
|
||||
*/
|
||||
|
||||
$templatecache = array();
|
||||
|
||||
/**
|
||||
* Logic moved out of lng-file
|
||||
*/
|
||||
|
||||
if(isset($userinfo['loginname'])
|
||||
&& $userinfo['loginname'] != '')
|
||||
{
|
||||
$lng['menue']['main']['username'].= $userinfo['loginname'];
|
||||
|
||||
/**
|
||||
* Initialize logging
|
||||
*/
|
||||
|
||||
$log = FroxlorLogger::getInstanceOf($userinfo, $db, $settings);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fills variables for navigation, header and footer
|
||||
*/
|
||||
|
||||
if(AREA == 'admin' || AREA == 'customer')
|
||||
{
|
||||
$navigation_data = loadConfigArrayDir('./lib/navigation/');
|
||||
$navigation = buildNavigation($navigation_data[AREA], $userinfo);
|
||||
unset($navigation_data);
|
||||
}
|
||||
|
||||
eval("\$header = \"" . getTemplate('header', '1') . "\";");
|
||||
eval("\$footer = \"" . getTemplate('footer', '1') . "\";");
|
||||
|
||||
if(isset($_POST['action']))
|
||||
{
|
||||
$action = $_POST['action'];
|
||||
}
|
||||
elseif(isset($_GET['action']))
|
||||
{
|
||||
$action = $_GET['action'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$action = '';
|
||||
}
|
||||
|
||||
if(isset($_POST['page']))
|
||||
{
|
||||
$page = $_POST['page'];
|
||||
}
|
||||
elseif(isset($_GET['page']))
|
||||
{
|
||||
$page = $_GET['page'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$page = '';
|
||||
}
|
||||
|
||||
if($page == '')
|
||||
{
|
||||
$page = 'overview';
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize the mailingsystem
|
||||
*/
|
||||
|
||||
$mail = new PHPMailer();
|
||||
$mail->From = $settings['panel']['adminmail'];
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user