blob: 72a2e670578149cc5ac97d6430bb5390550b4c38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
<?php
namespace phorkie;
set_include_path(
__DIR__ . '/../src/'
. PATH_SEPARATOR . get_include_path()
);
spl_autoload_register(
function ($class) {
$file = str_replace(array('\\', '_'), '/', $class) . '.php';
$hdl = @fopen($file, 'r', true);
if ($hdl !== false) {
fclose($hdl);
require $file;
}
}
);
set_exception_handler(
function ($e) {
if ($e instanceof Exception) {
header('HTTP/1.0 ' . $e->httpStatusCode);
} else {
header('HTTP/1.0 500 Internal server error');
}
if (!isset($GLOBALS['twig'])) {
echo '<h1>Exception</h1>';
echo '<p>' . $e->getMessage() . '</p>';
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'];
$vars['db'] = new Database();
$template = $GLOBALS['twig']->loadTemplate($tplname . '.htm');
echo $template->render($vars);
}
function redirect($target)
{
header('Location: ' . $target);
exit();
}
?>
|