X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/1dbeb12332ae24ea782b557636fff0cc59805f12..5935a357efd7be14481b21560347f70116891e16:/www/www-header.php diff --git a/www/www-header.php b/www/www-header.php index 0a3b562..5785a3e 100644 --- a/www/www-header.php +++ b/www/www-header.php @@ -1,5 +1,6 @@ Exception'; + echo '

' . $e->getMessage() . '

'; + exit(); + } + render( 'exception', array( @@ -36,8 +44,15 @@ require_once __DIR__ . '/../data/config.default.php'; if (file_exists(__DIR__ . '/../data/config.php')) { require_once __DIR__ . '/../data/config.php'; } -require_once 'VersionControl/Git.php'; -require_once 'Twig/Autoloader.php'; +if ($GLOBALS['phorkie']['cfg']['setupcheck']) { + SetupCheck::run(); +} + +// Set/Get git commit session variables +$_SESSION['ipaddr'] = $_SERVER['REMOTE_ADDR']; +if (!isset($_SESSION['name'])) { $_SESSION['name'] = $GLOBALS['phorkie']['auth']['anonymousName']; } +if (!isset($_SESSION['email'])) { $_SESSION['email'] = $GLOBALS['phorkie']['auth']['anonymousEmail']; } + \Twig_Autoloader::register(); $loader = new \Twig_Loader_Filesystem($GLOBALS['phorkie']['cfg']['tpl']); @@ -48,10 +63,20 @@ $twig = new \Twig_Environment( 'debug' => true ) ); +//$twig->addExtension(new \Twig_Extension_Debug()); function render($tplname, $vars) { $vars['css'] = $GLOBALS['phorkie']['cfg']['css']; + $vars['title'] = $GLOBALS['phorkie']['cfg']['title']; + $vars['topbar'] = $GLOBALS['phorkie']['cfg']['topbar']; + if (isset($_SESSION['identity'])) { + $vars['identity'] = $_SESSION['identity']; + $vars['name'] = $_SESSION['name']; + $vars['email'] = $_SESSION['email']; + } + $vars['db'] = new Database(); + $template = $GLOBALS['twig']->loadTemplate($tplname . '.htm'); echo $template->render($vars); } @@ -60,4 +85,4 @@ function redirect($target) header('Location: ' . $target); exit(); } -?> \ No newline at end of file +?>