X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/add0708f631532b284b11d5507c5efefce36b7c1..83a87530ac660a7d71f3d86ef93dc896d878696f:/www/www-header.php diff --git a/www/www-header.php b/www/www-header.php index f381872..1d59b1c 100644 --- a/www/www-header.php +++ b/www/www-header.php @@ -1,5 +1,7 @@ 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) +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); @@ -71,4 +110,4 @@ function redirect($target) header('Location: ' . $target); exit(); } -?> \ No newline at end of file +?>