-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
44 lines (37 loc) · 1.2 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
<?php
/*
=======================================================================
= Plaintech index.php =
= Created by Plaintech on november 2013 =
= for more info go to www.plaintech.co.uk =
= Copyright olaf jwz niks van Dinesh =
=======================================================================
*/
#################################################
# Default settings
#################################################
// error reporting #USE ONLY FOR TEST PURPOSES!!!
error_reporting(E_ALL);
ini_set('display_errors', 1);
//Memory limit
ini_set('memory_limit', '100M');
//Tijdzone
date_default_timezone_set('Europe/Amsterdam');
#################################################
# includes
#################################################
require 'lib/Bootstrap.php';
require 'lib/baseController.php';
require 'lib/baseModel.php';
require 'lib/baseView.php';
require 'config.php';
require 'lib/session.php';
//database
require 'lib/database.php';
require 'lib/database1.php';
require 'lib/databaseRole.php';
#################################################
# Bootstrap inladen a.k.a Router jwz
#################################################
$app = new Bootstrap();
?>