X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/bfa1501efa1a49893208c794ea262a075b13fc1d..cceda6a059b90c8e7e1319529f3fe686b16dfcf3:/www/www-header.php diff --git a/www/www-header.php b/www/www-header.php index 520d793..72a2e67 100644 --- a/www/www-header.php +++ b/www/www-header.php @@ -1,5 +1,5 @@ $e)); + + if (!isset($GLOBALS['twig'])) { + echo '

Exception

'; + echo '

' . $e->getMessage() . '

'; + exit(); + } + + render( + 'exception', + array( + 'exception' => $e, + 'debug' => $GLOBALS['phorkie']['cfg']['debug'] + ) + ); exit(); } ); require_once __DIR__ . '/../data/config.default.php'; -require_once 'VersionControl/Git.php'; -require_once 'Twig/Autoloader.php'; +if (file_exists(__DIR__ . '/../data/config.php')) { + require_once __DIR__ . '/../data/config.php'; +} +if ($GLOBALS['phorkie']['cfg']['setupcheck']) { + SetupCheck::run(); +} \Twig_Autoloader::register(); $loader = new \Twig_Loader_Filesystem($GLOBALS['phorkie']['cfg']['tpl']); @@ -39,9 +56,15 @@ $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']; + $vars['db'] = new Database(); + $template = $GLOBALS['twig']->loadTemplate($tplname . '.htm'); echo $template->render($vars); }