-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
27 lines (24 loc) · 981 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
<?php
/**
* Fichier de lancement du MVC, Il appel le var.init et le gabarit HTML
* @author Jonathan Martel
* @version 1.0
* @update 2013-03-11
* @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 l'autoloader **/
/***************************************************/
require_once("./config.php");
/***************************************************/
/** Initialisation des variables **/
/***************************************************/
require_once("./var.init.php");
/***************************************************/
/** Démarrage du controleur **/
/***************************************************/
$oCtl = new Controler();
$oCtl->gerer();
?>