-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
72 lines (69 loc) · 1.54 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
<?php
/* Landing Page
* File: index.php
* Objet: Récupère les paramètres passé en $_GET et redirige le traffic
*/
require 'controleur/index.php';
try {
if (isset($_GET))
{
if ($_GET['action'] == 'article')
{
if (isset($_GET['id']))
{
$idBillet = intval($_GET['id']);
if ($idBillet != 0)
{
billet($idBillet);
}
else
throw new Exception("Identifiant de billet non valide");
}
else
{
throw new Exception("Identifiant de billet non défini");
}
}
elseif ($_GET['admin'] == 'news')
{
if (isset($_POST['id']))
{
$id = intval($_POST['id']);
if($_GET['update'] == 'article')
{ // Update ou créer un nouvelle news
$titre = htmlspecialchars($_POST['titre']);
$contenu = nl2br(htmlspecialchars($_POST['contenu']));
$datemodification = htmlspecialchars($_POST['datemodification']);
updateArticle($id, $titre, $contenu, $datemodification);
}
if ($_GET['create'] == 'article')
{
$titre = htmlspecialchars($_POST['titre']);
$contenu = nl2br(htmlspecialchars($_POST['contenu']));
$datecreation = htmlspecialchars($_POST['date']);
var_dump($_POST);
saveArticle($titre, $contenu, $datecreation);
}
elseif ($id == 0)
{
newArticle();
}
elseif ($id != 0)
{
editArticle($id);
}
}
else //Pas d'id fournie. Affichage de la list des news
{
adminNews();
}
}
else
{ // aucune action définie : affichage de l'accueil
accueil();
}
}
}
catch (Exception $e) {
erreur($e->getMessage());
}