-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgestion.php
425 lines (377 loc) · 22.3 KB
/
gestion.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
<?php
session_start();
include 'header.php';
if(!empty($_SESSION["mode"]))
{}
else
{
$_SESSION["mode"] = "clair";
}
if(isset($_SESSION['admin']) AND $_SESSION['admin'] == 1)
{
if(isset($_GET['tri']) AND isset($_GET['tri_user']))
{
$tri = htmlspecialchars($_GET['tri']);
$tri_user = htmlspecialchars($_GET['tri_user']);
}
else
{
header('Location: gestion.php?tri=id&tri_user=id');
}
if(isset($_POST['envoi']))
{
if(isset($_POST['id']) AND !empty($_POST['id']))
{
$id = intval($_POST['id']);
$reqactu = $bdd->prepare('SELECT * FROM utilisateurs WHERE id = ?');
$reqactu->execute(array($id));
$actuExist = $reqactu->rowCount();
if($actuExist == 1)
{
if(isset($_POST['admin']))
{
if($_POST['admin'] == "on")
{
$admin = 1;
}
else
{
$admin = 0;
}
}
else
{
$admin = 0;
}
if(isset($_POST['auteur_actu']))
{
if($_POST['auteur_actu'] == "on")
{
$auteur_actu = 1;
}
else
{
$auteur_actu = 0;
}
}
else
{
$auteur_actu = 0;
}
if(isset($_POST['auteur_doc']))
{
if($_POST['auteur_doc'] == "on")
{
$auteur_doc = 1;
}
else
{
$auteur_doc = 0;
}
}
else
{
$auteur_doc = 0;
}
$req = $bdd->prepare('UPDATE utilisateurs SET admin = :admin, auteur_actu = :auteur_actu, auteur_doc = :auteur_doc WHERE id = :id');
$req->execute(array(
'admin' => $admin,
'auteur_actu' => $auteur_actu,
'auteur_doc' => $auteur_doc,
'id' => $id
));
$req->closeCursor();
$victory = "Utilisateur bien modifié !";
}
else
{
$erreur = "Pas d'id valide !";
}
}
else
{
$erreur = "Pas d'id valide !";
}
}
?>
<!DOCTYPE HTML>
<!--
Editorial by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>DVKBuntu - Gestion</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<?php
if($_SESSION['mode'] == "sombre")
{?>
<link rel="stylesheet" href="assets/css/main.css" />
<?php }
else
{ ?>
<link rel="stylesheet" href="assets/css/main_clair.css" />
<?php } ?>
<link rel="icon" type="image/png" href="images/LogoGenerale.png" />
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Main -->
<div id="main">
<div class="inner">
<!-- Header -->
<header id="header">
<a href="index.php" class="logo"><strong>DVKBuntu</strong></a>
<ul class="icons">
<li><a href="mode.php?id=12" style="color: yellow; background-color: black;">Mode malvoyant : </a> <a href="mode.php?id=12" style="color:#000000" alt="Changer les contrastes"><i class="fas fa-low-vision fa-lg" id="icone_oeil"></i></a></li>
<li><a href="https://twitter.com/handyopensource" class="icons-header" alt="Twitter"><i class="fab fa-twitter-square fa-lg"></i></a></li>
<li><a href="https://www.facebook.com/Handyopensource" class="icons-header" alt="Facebbok"><i class="fab fa-facebook fa-lg"></i></a></li>
<li><a href="https://discord.gg/zG7g8cU" class="icons-header" alt="discord"><i class="fab fa-discord fa-lg"></i></a></li>
<li><a href="https://www.forum.dvkbuntu.org/" class="icons-header" alt="Le forum"><i class="far fa-comments fa-lg"></i></a></li>
<li><a href="#contact" class="icons-header" alt="Email"><i class="far fa-envelope fa-lg"></i></a></li>
<li> <a href="donnation.php" class="icons-header" alt="Email" class="icons"><i class="fas fa-hand-holding-usd fa-lg"></i></a></li>
</ul>
</header>
<!-- Content -->
<section>
<header class="main">
<h1>Gestion</h1>
<strong>
<font color="red">
<?php if(isset($erreur))
{
echo $erreur;
} ?>
</font>
<font color="green">
<?php if(isset($victory))
{
echo $victory;
} ?>
</font>
</strong>
<br/>
<br/>
</header>
<h2>Actualités :</h2>
<table>
<tr>
<th><a href="gestion.php?tri=id&tri_user=<?php echo $tri_user; ?>">ID</a></th>
<th><a href="gestion.php?tri=auteur&tri_user=<?php echo $tri_user; ?>">Auteur</a></th>
<th><a href="gestion.php?tri=titre&tri_user=<?php echo $tri_user; ?>">Titre</a></th>
<th>Description</th>
<th>Image</th>
<th>Valider</th>
<th>Supprimer</th>
</tr>
<?php
if($tri == "auteur")
{
$reponse = $bdd->query('SELECT * FROM actualites ORDER BY auteur');
}
elseif($tri == "titre")
{
$reponse = $bdd->query('SELECT * FROM actualites ORDER BY titre');
}
else
{
$reponse = $bdd->query('SELECT * FROM actualites ORDER BY id');
}
$actuExist = $reponse->rowCount();
if($actuExist == 0)
{
echo "Aucune actualité pour le moment. Revenez plus tard!";
}
else
{
// On affiche chaque entrée une à une
while ($donnees = $reponse->fetch())
{ ?>
<tr>
<form method="post">
<td><input type="hidden" name="id" value="<?php echo $donnees['id']; ?>"/><?php echo $donnees['id']; ?></td>
<td><?php echo $donnees['auteur']; ?></td>
<td><input type="text" value="<?php echo $donnees['titre']; ?>" name="titre" readOnly/></td>
<td><textarea name="description" maxlength="5000" readOnly><?php echo $donnees['description']; ?></textarea></td>
<td><img alt="" src="images/actus/<?php echo $donnees['image']; ?>" width="60px" height="40px" /></td>
<?php if($donnees['valider'] == 1)
{ ?>
<td><button class="button-modifier"><a href="modifier_actu.php?id=<?php echo $donnees['id']; ?>">Modifier</a></button></td>
<?php } else { ?>
<td><button class="button-valider"><a href="valider_actu.php?id=<?php echo $donnees['id']; ?>">Valider</a></button></td>
<?php } ?>
<td><button type="submit" class="button-supprimer"><a href="suppression_actu.php?id=<?php echo $donnees['id']; ?>" style="color: red;">Supprimer</a></button></td>
</form>
</tr>
<?php
}
}
$reponse->closeCursor(); // Termine le traitement de la requête
?>
</table>
<br/>
<hr class="major" />
<h2>Documentation :</h2>
<table>
<tr>
<th><a href="gestion.php?tri=id&tri_user=<?php echo $tri_user; ?>">ID</a></th>
<th><a href="gestion.php?tri=auteur&tri_user=<?php echo $tri_user; ?>">Auteur</a></th>
<th><a href="gestion.php?tri=titre&tri_user=<?php echo $tri_user; ?>">Titre</a></th>
<th>Description</th>
<th>Image</th>
<th>Valider</th>
<th>Supprimer</th>
</tr>
<?php
if($tri == "auteur")
{
$reponse = $bdd->query('SELECT * FROM documents ORDER BY auteur');
}
elseif($tri == "titre")
{
$reponse = $bdd->query('SELECT * FROM documents ORDER BY titre');
}
else
{
$reponse = $bdd->query('SELECT * FROM documents ORDER BY id');
}
$docExist = $reponse->rowCount();
if($docExist == 0)
{
echo "Aucune documentation pour le moment. Revenez plus tard!";
}
else
{
// On affiche chaque entrée une à une
while ($donnees = $reponse->fetch())
{ ?>
<tr>
<form method="post">
<td><input type="hidden" name="id" value="<?php echo $donnees['id']; ?>"/><?php echo $donnees['id']; ?></td>
<td><?php echo $donnees['auteur']; ?></td>
<td><input type="text" size="5" value="<?php echo $donnees['titre']; ?>" name="titre" readOnly/></td>
<td><textarea name="description" maxlength="5000" cols="6" readOnly><?php echo $donnees['description']; ?></textarea></td>
<?php if(!empty($donnees['image']))
{ ?>
<td><img alt="" src="images/docs/<?php echo $donnees['image']; ?>" width="60px" height="40px" /></td>
<?php } else { ?>
<td>/</td>
<?php } ?>
<?php if($donnees['valider'] == 1)
{ ?>
<td><button class="button-modifier"><a href="modifier_doc.php?id=<?php echo $donnees['id']; ?>">Modifier</a></button></td>
<?php } else { ?>
<td><button class="button-valider"><a href="valider_doc.php?id=<?php echo $donnees['id']; ?>">Valider</a></button></td>
<?php } ?>
<td><button type="submit" class="button-supprimer"><a href="suppression_doc.php?id=<?php echo $donnees['id']; ?>" style="color: red;">Supprimer</a></button></td>
</form>
</tr>
<?php
}
}
$reponse->closeCursor(); // Termine le traitement de la requête
?>
</table>
<hr class="major" />
<h2>Utilisateurs :</h2>
<table>
<tr>
<th><a href="gestion.php?tri=<?php echo $tri; ?>&tri_user=id">ID</a></th>
<th><a href="gestion.php?tri=<?php echo $tri; ?>&tri_user=nom">Nom</a></th>
<th><a href="gestion.php?tri=<?php echo $tri; ?>&tri_user=email">Email</a></th>
<th><a href="gestion.php?tri=<?php echo $tri; ?>&tri_user=admin">Admin</a></th>
<th><a href="gestion.php?tri=<?php echo $tri; ?>&tri_user=auteur_actu">Auteur : Actu</a></th>
<th><a href="gestion.php?tri=<?php echo $tri; ?>&tri_user=auteur_doc">Auteur : Doc</a></th>
<th>Enregistrer</th>
<th>Supprimer</th>
</tr>
<?php
if($tri_user == "nom")
{
$reponse = $bdd->query('SELECT * FROM utilisateurs ORDER BY nom');
}
elseif($tri_user == "email")
{
$reponse = $bdd->query('SELECT * FROM utilisateurs ORDER BY email');
}
elseif($tri_user == "admin")
{
$reponse = $bdd->query('SELECT * FROM utilisateurs ORDER BY admin DESC');
}
elseif($tri_user == "auteur_actu")
{
$reponse = $bdd->query('SELECT * FROM utilisateurs ORDER BY auteur_actu DESC');
}
elseif($tri_user == "auteur_doc")
{
$reponse = $bdd->query('SELECT * FROM utilisateurs ORDER BY auteur_doc DESC');
}
else
{
$reponse = $bdd->query('SELECT * FROM utilisateurs ORDER BY id DESC');
}
$userExist = $reponse->rowCount();
if($userExist == 0)
{
echo "Aucun utilisateur pour le moment. Revenez plus tard!";
}
else
{
// On affiche chaque entrée une à une
while ($donnees = $reponse->fetch())
{ ?>
<tr>
<form method="post">
<td><input type="hidden" name="id" value="<?php echo $donnees['id']; ?>"/><?php echo $donnees['id']; ?></td>
<td><?php echo $donnees['nom']; ?></td>
<td><input type="text" value="<?php echo $donnees['email']; ?>" readonly /></td>
<td><input type="checkbox" id="admin" name="admin" <?php if($donnees['admin'] == 1) { echo "checked"; } ?>> <label for="admin">Admin</label></td>
<td><input type="checkbox" id="auteur_actu" name="auteur_actu" <?php if($donnees['auteur_actu'] == 1) { echo "checked"; } ?>> <label for="auteur_actu">Actu</label></td>
<td><input type="checkbox" id="auteur_doc" name="auteur_doc" <?php if($donnees['auteur_doc'] == 1) { echo "checked"; } ?>><label for="auteur_doc">Doc</label></td>
<td><button type="submit" class="button" name="envoi">Enregistrer</button></td>
<td><button class="button-supprimer"><a href="suppression_user.php?id=<?php echo $donnees['id']; ?>" style="color: red;">Supprimer</a></button></td>
</form>
</tr>
<?php
}
}
$reponse->closeCursor(); // Termine le traitement de la requête
?>
</table>
</section>
</div>
</div>
<?php include 'sidebar.html'; ?>
</div>
<!--Bottom menu -->
<div class="navbar-bottom">
<a href="mode.php?id=12" alt="Changer les contrastes"><i class="fas fa-low-vision fa-lg"></i></a>
 
<a href="https://twitter.com/handyopensource" class="icons" alt="Twitter"><i class="fab fa-twitter-square fa-lg"></i></a>
<a href="https://www.facebook.com/Handyopensource" class="icons" alt="Facebbok"><i class="fab fa-facebook fa-lg"></i></a>
<a href="https://discord.gg/zG7g8cU" class="icons" alt="discord"><i class="fab fa-discord fa-lg"></i></a>
<a href="https://www.forum.dvkbuntu.org/" class="icons" alt="Le forum"><i class="far fa-comments fa-lg"></i></a>
<a href="contact.php" class="icons" alt="Email"><i class="far fa-envelope fa-lg"></i></a>
<a href="donnation.php" class="icons" alt="Email" class="icons"><i class="fas fa-hand-holding-usd fa-lg"></i></a>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>
<?php }
elseif(isset($_COOKIE['id']) AND isset($_COOKIE['email']) AND isset($_COOKIE['confirmcookie']))
{
header('Location: cookie.php');
}
else
{
header('Location: erreur.php');
}
?>