httpStatusCode); } else { header('HTTP/1.0 500 Internal server error'); } if (!isset($GLOBALS['twig'])) { echo '

Exception

'; echo '

' . $e->getMessage() . '

'; echo "\n"; 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'; } // 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']); $twig = new \Twig_Environment( $loader, array( //'cache' => '/path/to/compilation_cache', 'debug' => true ) ); $twig->addFunction('ntext', new \Twig_Function_Function('\phorkie\ntext')); function ntext($value, $singular, $plural) { if (abs($value) == 1) { return sprintf($singular, $value); } return sprintf($plural, $value); } //$twig->addExtension(new \Twig_Extension_Debug()); if (!isset($noSecurityCheck) || $noSecurityCheck !== true) { require __DIR__ . '/www-security.php'; } function render($tplname, $vars = array()) { $vars['baseurl'] = '/'; if (!empty($GLOBALS['phorkie']['cfg']['baseurl'])) { $vars['baseurl'] = $GLOBALS['phorkie']['cfg']['baseurl']; } $vars['css'] = $GLOBALS['phorkie']['cfg']['css']; $vars['iconpng'] = $GLOBALS['phorkie']['cfg']['iconpng']; $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(); if (!isset($vars['htmlhelper'])) { $vars['htmlhelper'] = new HtmlHelper(); } $template = $GLOBALS['twig']->loadTemplate($tplname . '.htm'); echo $template->render($vars); } function redirect($target) { header('Location: ' . $target); exit(); } ?>