forked from ikkez/fabulog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
71 lines (57 loc) · 1.63 KB
/
index.php
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
<?php
/**
* __ _ _
* / _| __ _| |__ _ _| | ___ __ _
* | |_ / _` | '_ \| | | | |/ _ \ / _` |
* | _| (_| | |_) | |_| | | (_) | (_| |
* |_| \__,_|_.__/ \__,_|_|\___/ \__, |
* |___/
*
* fabulog - your fabulous blogware
*
* Copyright (c) 2017 by ikkez
* Christian Knuth <[email protected]>
* https://github.com/ikkez/fabulog/
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
*/
require('vendor/autoload.php');
/** @var \Base $f3 */
$f3 = \Base::instance();
$f3->set('APP_VERSION', '0.3.1');
$f3->BITMASK = ENT_COMPAT|ENT_SUBSTITUTE;
//ini_set('display_errors', 1);
//error_reporting(-1);
$f3->config('app/config.ini');
// preflight system check
$preErr = Setup::instance()->preflight();
if (!empty($preErr)) {
header('Content-Type: text;');
die(implode("\n",$preErr));
}
## DB Setup
$cfg = Config::instance();
if ($cfg->ACTIVE_DB)
$f3->set('DB', Storage::instance()->get($cfg->ACTIVE_DB));
else {
$f3->error(500,'Sorry, but there is no active DB setup.');
}
$f3->set('CONFIG', $cfg);
$f3->set('FLASH', \Flash::instance());
$tmpl = \Template::instance();
$tmpl->extend('image','\Template\Tags\Image::render');
$tmpl->extend('pagebrowser','\Pagination::renderTag');
// Handles all <form> data
$tmpl->extend('input','\Template\Tags\Input::render');
$tmpl->extend('select','\Template\Tags\Select::render');
\Assets::instance();
$f3->config('app/routes.ini');
///////////////
// backend //
///////////////
if (\Controller\Auth::isLoggedIn()) {
$f3->config('app/routes_admin.ini');
}
$f3->run();