aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-01-10 01:30:38 -0500
committerThedro Neely <thedroneely@gmail.com>2019-01-10 01:30:38 -0500
commitfa4892488fced6c26cb2cef7481fa0b48e7c641b (patch)
treeb350e43b350ec4edf7197282a351024549434741 /bootstrap
parentd8c7137c1a30fb56db99cb48c06f24d472dd21a4 (diff)
downloadthedroneely.com-fa4892488fced6c26cb2cef7481fa0b48e7c641b.tar.gz
thedroneely.com-fa4892488fced6c26cb2cef7481fa0b48e7c641b.tar.bz2
thedroneely.com-fa4892488fced6c26cb2cef7481fa0b48e7c641b.zip
bootstrap/Bootstrap: Allow bootstrap to facilitate more than one entry point
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/Bootstrap.php14
1 files changed, 10 insertions, 4 deletions
diff --git a/bootstrap/Bootstrap.php b/bootstrap/Bootstrap.php
index 665bdc6..39e6c08 100644
--- a/bootstrap/Bootstrap.php
+++ b/bootstrap/Bootstrap.php
@@ -1,10 +1,16 @@
<?php
-/* composer autoloader */
-require '../vendor/autoload.php';
+/* composer autoload */
+require $_SERVER['DOCUMENT_ROOT'] . '/..' . '/vendor/autoload.php';;
/* source config file */
-$config = include '../AppConfig.php';
+$config = include $_SERVER['DOCUMENT_ROOT'] . '/..' . '/AppConfig.php';;
-/* database query setup */
+/* connect database */
$contact['database'] = new QueryBuilder(Connection::make($config['database']));
+
+/* create new router */
+$router = new Router;
+
+/* create navigator */
+$navigation = new Navigation();