httpStatusCode); } else { header('HTTP/1.0 500 Internal server error'); } 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'; 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']); $twig = new \Twig_Environment( $loader, array( //'cache' => '/path/to/compilation_cache', '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']; $template = $GLOBALS['twig']->loadTemplate($tplname . '.htm'); echo $template->render($vars); } function redirect($target) { header('Location: ' . $target); exit(); } ?>