-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathindex.php
More file actions
27 lines (20 loc) · 670 Bytes
/
index.php
File metadata and controls
27 lines (20 loc) · 670 Bytes
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
<?php
/*
micro-MVC
File name: index.php
Description: This file contains the index (bootstrapping).
Coded by George Delaportas (G0D)
Copyright (C) 2015
Open Software License (OSL 3.0)
*/
// Enable: E_WARNING | E_PARSE (report typical errors), -1 (report all errors) / Disable: 0 (no error reporting)
error_reporting(0);
// Enable sessions
session_start();
// Include micro-MVC framework
require('framework/micro_mvc.php');
// Include the config loader
require('framework/misc/config_loader.php');
// Include the supervisor
require('framework/misc/supervisor.php');
?>