-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
28 lines (24 loc) · 969 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
<?php
/**
* Fichier de lancement du MVC, Il appel le fichier de configuration.php et le fichier d'initialisation des GET/POST initialisation.php
* @author Jonathan Martel
* @version 1.1
* @update 2016-01-22 : Adaptation du code aux standards de codage du département de TIM
* @license MIT
* @license http://opensource.org/licenses/MIT
*
*/
/***************************************************/
/** Fichier de configuration, contient l'autoloader **/
/***************************************************/
require_once("./configuration.php");
/***************************************************/
/** Initialisation des variables **/
/***************************************************/
require_once("./initialisation.php");
/***************************************************/
/** Démarrage du controleur **/
/***************************************************/
$oCtl = new Controleur();
$oCtl->gerer();
?>