-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathindex.php
32 lines (25 loc) · 1007 Bytes
/
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
<?php
/**
* Fichier de lancement du MVC, Il appel le var.init et le gabarit HTML
* @author Jonathan Martel
* @version 1.0
* @update 2019-01-21
* @license Creative Commons BY-NC 3.0 (Licence Creative Commons Attribution - Pas d’utilisation commerciale 3.0 non transposé)
* @license http://creativecommons.org/licenses/by-nc/3.0/deed.fr
*
*/
/***************************************************/
/** Fichier de configuration, contient les define et l'autoloader **/
/***************************************************/
require_once('./dataconf.php');
require_once("./config.php");
/***************************************************/
/** Initialisation des variables **/
/***************************************************/
require_once("./var.init.php");
/***************************************************/
/** Démarrage du controleur **/
/***************************************************/
$oCtl = new Controler();
$oCtl->gerer();
?>