94 lines
3.6 KiB
PHP
94 lines
3.6 KiB
PHP
<?php
|
|
define('PICONTROL', true);
|
|
|
|
$doNotCheckForAuthentification = true;
|
|
(include_once realpath(dirname(__FILE__)).'/resources/init.php') or die('Error: 0x0000');
|
|
(include_once LIBRARY_PATH.'main/tpl.class.php') or die('Error: 0x0001');
|
|
(include_once LIBRARY_PATH.'main/main.function.php') or die('Error: 0x0002');
|
|
(include_once LIBRARY_PATH.'main/sites.php') or die('Error: 0x0003');
|
|
(include_once LIBRARY_PATH.'plugin/plugin.function.php') or die('Error: 0x0004');
|
|
(include_once LIBRARY_PATH.'main/password.function.php') or die('Error: 0x0005');
|
|
|
|
if (file_exists(INSTALL_PATH) && is_dir(INSTALL_PATH))
|
|
{
|
|
header('Location: install/');
|
|
exit();
|
|
}
|
|
|
|
if (isset($_GET['i']) && isset($include[$_GET['i']]) && file_exists(PICONTROL_PATH.$include[$_GET['i']]))
|
|
{
|
|
include_once PICONTROL_PATH.$include[$_GET['i']];
|
|
exit();
|
|
}
|
|
|
|
(include LIBRARY_PATH.'main/authentification.php') or die('Error: 0x0006');
|
|
|
|
if (urlIsPublic($_SERVER['REMOTE_ADDR']) && getConfig('main:access.external', 'false') == 'false')
|
|
{
|
|
echo '<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
|
|
<meta name="viewport" content="target-densitydpi=device-dpi, initial-scale=1.0, user-scalable=no" />
|
|
<title>Pi Control</title>
|
|
<style type="text/css">body{color:#333;background:#EEE;font-family:Arial,Helvetica,Verdana,sans-serif;font-size:13px;margin:10px;overflow:scroll;overflow-x:auto;padding:0}.box{background:#FFF;margin:0 auto;max-width:800px;border-radius:2px}.inner-header{display:inline-block;font-size:18px;font-weight:bold;padding:15px;color:#F44336}.inner{padding:0px 15px 15px 15px}</style>
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<div class="inner-header">'._t('Zugriffsfehler').'</div>
|
|
<div class="inner">'._t('Der Zugang steht nur im lokalem Netzwerk (LAN) zur Verfügung!').'</div>
|
|
</div>
|
|
</body>
|
|
</html>';
|
|
exit();
|
|
}
|
|
|
|
$tpl = new PiTpl;
|
|
$tpl->setTpl($tpl);
|
|
$tpl->setTplFolder(TEMPLATES_PATH);
|
|
$tpl->setDrawHeader(true);
|
|
$tpl->setDrawFooter(true, $config);
|
|
|
|
try
|
|
{
|
|
// Lade Content
|
|
if (isset($_GET['s']) && !isset($_GET['i']) && isset($site[$_GET['s']]) && file_exists(CONTENT_PATH.$site[$_GET['s']]))
|
|
include_once CONTENT_PATH.$site[$_GET['s']];
|
|
else
|
|
{
|
|
if (isset($_GET['s']) && (!isset($site[$_GET['s']]) || file_exists(CONTENT_PATH.$site[$_GET['s']]) === false))
|
|
{
|
|
$tpl->setHeaderTitle(_t('Fehler'));
|
|
$tpl->error(_t('Fehler'), _t('Leider existiert die angeforderte Seite nicht.'));
|
|
}
|
|
else
|
|
include_once CONTENT_PATH.'overview.php';
|
|
}
|
|
|
|
if ($tpl->tplDraw === false)
|
|
$tpl->draw();
|
|
}
|
|
catch(Exception $e)
|
|
{
|
|
$errorHandler[] = 'Fehler [TPL]: '.$e->getFile().':'.$e->getLine().' => '.$e->getMessage();
|
|
|
|
echo '<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
|
|
<meta name="viewport" content="target-densitydpi=device-dpi, initial-scale=1.0, user-scalable=no" />
|
|
<title>Pi Control</title>
|
|
<style type="text/css">body{color:#333;background:#EEE;font-family:Arial,Helvetica,Verdana,sans-serif;font-size:13px;margin:10px;overflow:scroll;overflow-x:auto;padding:0}.box{background:#FFF;margin:0 auto;max-width:800px;border-radius:2px}.inner-header{display:inline-block;font-size:18px;font-weight:bold;padding:15px;color:#F44336}.inner{padding:0px 15px 15px 15px}</style>
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<div class="inner-header">'._t('Fehler').'</div>
|
|
<div class="inner">'._t('Leider ist beim Aufbau der Seite ein Fehler aufgetreten!<br /><br />%s', implode("<br />\n", $errorHandler)).'</div>
|
|
<div class="inner">'._t('Bitte melde das Problem <a href="%s" target="_blank">hier</a>.', 'https://pi-control.de/?service=feedback').'</div>
|
|
</div>
|
|
</body>
|
|
</html>';
|
|
}
|
|
?>
|