-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
97 lines (62 loc) · 1.95 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
// Enregistrement de la racine du site
define('ROOT', __DIR__);
define('SERVER_URL', "/Randofacile");
// define('SERVER_URL', $_SERVER["SERVER_NAME"]);
define('DEFAULT_CONTROLLER', "Accueil");
define('DEFAULT_ACTION', "read");
// Auto Chargement des class
require_once(__DIR__.'/autoload.php');
// Session
session_start();
//Panier
require_once __DIR__.'/controller/PanierController.php';
$lePanier = PanierController::GetPanier();
$_SESSION['panier_liste'] = $lePanier->GetAffichagePanier();
$_SESSION['panier_nbArticles'] = $lePanier->GetNbrProduits();
if($_SESSION['panier_nbArticles'] > 0){ $_SESSION['panier_nbArticlesVisible'] = ""; } else{ $_SESSION['panier_nbArticlesVisible'] = "d-none"; }
/*
====================================
Récupération des paramètres de l'URL
====================================
*/
// Page par défaut
if(!isset($_GET['controller'])){
$controller = DEFAULT_CONTROLLER;
$action = DEFAULT_ACTION;
}else{ // Autre page
$controller = $_GET['controller'];
$action = $_GET['action'];
}
// Tebleau de parametres
$params = array();
foreach($_GET as $key => $value){
if(($key != "controller") && ($key != "action")){
$params[$key] = $value;
}
}
// Complement du nom du fichier controller (NomController)
$controller .= "Controller";
/*
===================
Appel du controller
===================
*/
$filePath = __DIR__.'/controller/'.$controller.'.php';
if(file_exists($filePath)){
//Le controller existe
//Inclut le fichier de class du controller
require_once(__DIR__.'/controller/'.$controller.'.php');
if(method_exists($controller, $action)){
//La methode existe
//Execution de l'action
$controller::$action($params);
}else{
require_once(__DIR__.'/controller/ErreurController.php');
ErreurController::read404();
}
}else{
require_once(__DIR__.'/controller/ErreurController.php');
ErreurController::read404();
}
?>