aboutsummaryrefslogtreecommitdiff
path: root/lib/bootstrap.php
diff options
context:
space:
mode:
authorMaZderMind2014-11-09 20:28:50 +0100
committerMaZderMind2014-11-09 20:28:50 +0100
commitb5cd8aa32cf2e9c83ec457fbb0a235cdec8e37cd (patch)
tree5efcab448905e9af7441239a1ecbfd3cf6869c85 /lib/bootstrap.php
parent21cb56374ff92578e447e8aadafb1aba2d56e5e0 (diff)
move init-code into bootstrap-file
Diffstat (limited to 'lib/bootstrap.php')
-rw-r--r--lib/bootstrap.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/bootstrap.php b/lib/bootstrap.php
new file mode 100644
index 0000000..297144b
--- /dev/null
+++ b/lib/bootstrap.php
@@ -0,0 +1,10 @@
+<?php
+
+require_once('lib/PhpTemplate.php');
+require_once('lib/helper.php');
+require_once('lib/config.php');
+
+$tpl = new PhpTemplate('template/page.phtml');
+$tpl->set(array(
+ 'baseurl' => baseurl(),
+));