e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
1
|
<h3> Organisation </h3>
|
97d25235
Erwan Nanrocki
ajout d un titre ...
|
2
|
|
27f3beb9
Geoffrey Bontoux-Preud-Homme
Ajout de orga.php
|
3
|
<?php
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
4
|
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
5
6
|
$time = time();
|
27f3beb9
Geoffrey Bontoux-Preud-Homme
Ajout de orga.php
|
7
|
# e_ : est
|
e6faaa33
Geoffrey PREUD'HOMME
[Orga] Oublié ses...
|
8
9
10
|
session_start();
|
d70dd0a0
Geoffrey PREUD'HOMME
[Orga] Intégratio...
|
11
12
13
|
$e_connecte = isset($_SESSION["connected"]) && $_SESSION["connected"];
$e_admin = isset($_SESSION["admin"]) && $_SESSION["admin"];
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
14
|
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
15
|
if ($e_connecte) {
|
d70dd0a0
Geoffrey PREUD'HOMME
[Orga] Intégratio...
|
16
|
if ($e_admin) {
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
17
18
|
$droits = array('voir', 'voter', 'ajouter', 'proposer', 'annuler', 'supprimer', 'modifier', 'valider');
} else {
|
e6faaa33
Geoffrey PREUD'HOMME
[Orga] Oublié ses...
|
19
|
$droits = array('voir', 'voter', 'proposer');
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
20
21
22
23
24
|
}
} else {
$droits = array('voir');
}
|
3fde9691
Geoffrey PREUD'HOMME
[Orga] Interpréta...
|
25
|
$lastID = 0; // TODO Est-ce que cela mérite-t-il d'exister ?
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
26
27
28
|
class Evenement
{
|
3fde9691
Geoffrey PREUD'HOMME
[Orga] Interpréta...
|
29
30
31
|
// TODO Mettre tout en privé et utiliser __get et __set
public $id = 0;
public $creationTime = 0;
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
32
|
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
33
34
35
36
|
public $nom = "Sans nom";
public $description = "Sans description";
public $annule = false;
public $valide = false;
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
37
38
|
public $duree = 3600;
public $supprime = false;
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
39
40
|
public $dates = array();
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
41
|
public $datesVotes = array();
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
42
|
|
3fde9691
Geoffrey PREUD'HOMME
[Orga] Interpréta...
|
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
function __construct($id = 0) {
global $lastID;
if ($id == 0) { // Nouvel évènement
$lastID += 1;
$this->id = $lastID;
$this->creationTime = time();
} else { // Évènement existant : on charge
// TODO SQL Select
$this->id = $lastID + 1; // TODO DEBUG SQL Récupération id
if ($this->id > $lastID) {
$lastID = $this->id;
}
// TODO SQL Récupération du reste des propriétés
}
|
1d6e24f7
Geoffrey PREUD'HOMME
[Orga] Envoi des ...
|
57
58
59
60
61
62
|
}
public function sauvegarder() {
// TODO SQL
}
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
63
|
public function html() {
|
6884541c
Geoffrey PREUD'HOMME
[Orga] Ajout d'id...
|
64
|
$html = '<li id="ev_li_'.$this->id.'" class="ev_li list-group-item';
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
65
66
67
68
|
if ($this->annule) {
$html .= ' list-group-item-danger';
}
$html .= '">';
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
69
70
|
# Titre
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
71
|
$html .= '<h4 class="list-group-item-heading">'.$this->nom;
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
72
|
if ($this->p_annuler()) {
|
6884541c
Geoffrey PREUD'HOMME
[Orga] Ajout d'id...
|
73
|
$html .= ' <button type="button" class="ev_annuler btn btn-warning"><span class="glyphicon glyphicon glyphicon-remove"></span> Annuler</button>';
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
74
|
}
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
75
|
if ($this->p_supprimer()) {
|
6884541c
Geoffrey PREUD'HOMME
[Orga] Ajout d'id...
|
76
|
$html .= ' <button type="button" class="ev_supprimer btn btn-danger"><span class="glyphicon glyphicon glyphicon-trash"></span> Supprimer</button>';
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
77
|
}
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
78
|
$html .= '</h4>';
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
79
80
81
82
|
# Description
$html .= '<div class="panel panel-default">';
$html .= '<div class="panel-heading">';
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
83
|
$html .= '<h5 class="panel-title">Informations';
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
84
|
if ($this->p_modifier()) {
|
6884541c
Geoffrey PREUD'HOMME
[Orga] Ajout d'id...
|
85
|
$html .= ' <button type="button" class="ev_modifier btn btn-default"><span class="glyphicon glyphicon-pencil"></span> Modifier</button>';
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
86
|
}
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
87
|
$html .= '</h5>';
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
88
89
|
$html .= '</div>';
$html .= '<div class="panel-body">';
|
6884541c
Geoffrey PREUD'HOMME
[Orga] Ajout d'id...
|
90
|
$html .= '<p class="ev_description">';
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
91
92
93
94
|
$html .= nl2br(htmlspecialchars($this->description));
$html .= '</p>';
// $html .= '<hr/>';
$html .= '<p>';
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
95
96
97
|
$heures = floor($this->duree/3600);
$minutes = floor($this->duree%3600/60);
$secondes = floor($this->duree%3600%60);
|
fab2252b
Geoffrey PREUD'HOMME
[Orga] Réponse ad...
|
98
|
$html .= 'Durée : <span class="ev_duree">'.($heures > 0 ? '<span class="ev_duree_h">'.$heures.'</span> heure'.($heures > 1 ? 's' : '').' ' : '').($minutes > 0 ? '<span class="ev_duree_m">'.$minutes.'</span> minute'.($minutes > 1 ? 's' : '').' ' : '').($secondes > 0 ? '<span class="ev_duree_s">'.$secondes.'</span> seconde'.($secondes > 1 ? 's' : '').' ' : '').'</span><br/>';
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
99
|
if ($this->valide) {
|
6884541c
Geoffrey PREUD'HOMME
[Orga] Ajout d'id...
|
100
|
$html .= 'Date : le <span class="ev_date">'.date('j/m/o', $this->valide).' à '.date('H:i', $this->valide).'</span><br/>';
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
101
102
103
|
}
$html .= '</p>';
if ($this->annule) {
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
104
|
$html .= '<p><span class="label label-danger">Annulé</span></p>';
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
105
106
107
108
109
110
111
|
}
$html .= '</div>';
$html .= '</div>';
# Dates
if (!$this->valide && !$this->annule) {
|
3a23c07d
Geoffrey PREUD'HOMME
[Orga] Ajout d'év...
|
112
|
$html .= '<div class="ev_pos panel panel-default">';
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
113
|
$html .= '<div class="panel-heading">';
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
114
|
$html .= '<h5 class="panel-title">Dates possibles';
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
115
|
if ($this->p_proposer()) {
|
3a23c07d
Geoffrey PREUD'HOMME
[Orga] Ajout d'év...
|
116
|
$html .= ' <button type="button" class="ev_pos_proposer btn btn-default"><span class="glyphicon glyphicon-plus"></span> Proposer une date</button>';
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
117
|
}
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
118
|
$html .= '</h5>';
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
119
120
|
$html .= '</div>';
$html .= '<div class="panel-body">';
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
121
122
123
|
if ($this->p_voter()) {
$html .= '<p>Sélectionnez les dates qui vous conviennent.</p>';
}
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
124
125
|
$html .= '<div class="list-group">';
$time = time();
|
6884541c
Geoffrey PREUD'HOMME
[Orga] Ajout d'id...
|
126
|
foreach ($this->dates as $dateIndex => $date) { // TODO À faire fonctionner (après que le reste fonctionne)
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
127
128
129
130
|
$html .= '<a href="#"class="list-group-item';
if ($date < $time) {
$html .= ' disabled';
}
|
3a23c07d
Geoffrey PREUD'HOMME
[Orga] Ajout d'év...
|
131
|
$html .= '">Le <span class="ev_pos_date">'.date('j/m/o', $date).' à '.date('H:i', $date).'</span> (<span class="ev_pos_nb">'.$this->datesVotes[$dateIndex].'</span> <span class="glyphicon glyphicon-user"></span>)</a>';
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
132
|
}
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
133
134
|
$html .= '</div>';
if ($this->p_valider()) {
|
3a23c07d
Geoffrey PREUD'HOMME
[Orga] Ajout d'év...
|
135
|
$html .= '<p><button type="button" class="ev_pos_valider btn btn-primary"><span class="glyphicon glyphicon-ok"></span> Valider la date</button></p>';
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
136
137
138
139
140
141
142
143
|
}
$html .= '</div>';
$html .= '</div>';
}
$html .= '</li>';
return $html;
}
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
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
|
public function passe() {
global $time;
if ($this->valide) {
return $this->valide+$this->duree < $time;
} else {
return false;
}
}
# p_ : Il est possible de ...
function p_annuler() {
global $droits;
return in_array('annuler', $droits) && !$this->annule && !$this->passe();
}
function p_supprimer() {
global $droits;
return in_array('supprimer', $droits) && !$this->valide;
}
function p_modifier() {
global $droits;
return in_array('modifier', $droits);
}
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
170
171
172
173
174
|
function p_voter() {
global $droits;
return in_array('voter', $droits) && !$this->valide;
}
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
175
176
|
function p_proposer() {
global $droits;
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
177
|
return in_array('proposer', $droits) && !$this->valide;
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
178
179
180
181
|
}
function p_valider() {
global $droits;
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
182
|
# TODO Et si un nombre suffisant de personnes est ok avec la date la plus disponible
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
183
184
185
186
187
|
return in_array('valider', $droits) && !$this->valide;
}
}
|
3fde9691
Geoffrey PREUD'HOMME
[Orga] Interpréta...
|
188
189
|
# a_ : Récupérer depuis la base de donnée (ou pas)
function a_evenements() {
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
190
191
|
# DEBUG
$test1 = new Evenement;
|
fab2252b
Geoffrey PREUD'HOMME
[Orga] Réponse ad...
|
192
|
$test1->duree = 12345;
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
193
|
$test1->nom = 'Évènement de test n°1';
|
fab2252b
Geoffrey PREUD'HOMME
[Orga] Réponse ad...
|
194
|
$test1->description = 'Description de l\'évènement de test n°1';
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
195
196
197
|
$test1->valide = time();
$test2 = new Evenement;
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
198
|
$test2->nom = 'Évènement de test n°2';
|
fab2252b
Geoffrey PREUD'HOMME
[Orga] Réponse ad...
|
199
200
|
$test2->description = 'Description de l\'évènement de test n°2';
$test2->duree = 36000;
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
201
202
203
204
|
$test2->valide = time();
$test2->annule = true;
$test3 = new Evenement;
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
205
|
$test3->nom = 'Évènement de test n°3';
|
fab2252b
Geoffrey PREUD'HOMME
[Orga] Réponse ad...
|
206
|
$test3->description = 'Description de l\'évènement de test n°3';
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
207
208
209
210
211
212
213
214
|
$test3->dates[] = 1415482197;
$test3->datesVotes[] = 42;
$test3->dates[] = time();
$test3->datesVotes[] = 5;
$test3->dates[] = time()+365*24*3600;
$test3->datesVotes[] = 1;
$test4 = new Evenement;
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
215
|
$test4->nom = 'Évènement de test n°4';
|
fab2252b
Geoffrey PREUD'HOMME
[Orga] Réponse ad...
|
216
|
$test4->description = 'Description de l\'évènement de test n°4';
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
217
218
219
220
221
222
223
224
|
$test4->dates[] = time();
$test4->datesVotes[] = 5;
$test4->dates[] = time()+365*24*3600;
$test4->datesVotes[] = 1;
$test4->dates[] = time();
$test4->annule = true;
$test5 = new Evenement;
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
225
|
$test5->nom = 'Évènement de test n°5';
|
fab2252b
Geoffrey PREUD'HOMME
[Orga] Réponse ad...
|
226
|
$test5->description = 'Description de l\'évènement de test n°5';
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
227
228
229
230
231
|
$test5->dates[] = time();
$test5->datesVotes[] = 0;
$test5->supprime = true;
$test6 = new Evenement;
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
232
|
$test6->nom = 'Évènement de test n°6';
|
fab2252b
Geoffrey PREUD'HOMME
[Orga] Réponse ad...
|
233
|
$test6->description = 'Description de l\'évènement de test n°6';
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
234
235
236
237
238
|
$test6->valide = 1415452197;
return array($test1, $test2, $test3, $test4, $test5, $test6);
}
|
3fde9691
Geoffrey PREUD'HOMME
[Orga] Interpréta...
|
239
|
$evenements = a_evenements();
|
1d6e24f7
Geoffrey PREUD'HOMME
[Orga] Envoi des ...
|
240
|
|
3fde9691
Geoffrey PREUD'HOMME
[Orga] Interpréta...
|
241
242
243
244
245
246
247
248
|
function a_evenement($id) {
global $evenements;
foreach ($evenements as $evenement) {
if ($evenement->id == $id) {
return $evenement;
}
}
}
|
1d6e24f7
Geoffrey PREUD'HOMME
[Orga] Envoi des ...
|
249
|
|
3fde9691
Geoffrey PREUD'HOMME
[Orga] Interpréta...
|
250
|
# TRAITEMENT DES DONNEES POST
|
1d6e24f7
Geoffrey PREUD'HOMME
[Orga] Envoi des ...
|
251
|
|
3fde9691
Geoffrey PREUD'HOMME
[Orga] Interpréta...
|
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
|
function mauvaiseRequete($code = 0) {
echo '<div class="alert alert-danger" role="alert">Le serveur n\'a pas compris votre requête <small>(code d\'erreur n°'.$code.')</small>.</div>';
}
function bonneRequete($message = 'Action correctement effectuée.') {
echo '<div class="alert alert-success" role="alert">'.$message.'</div>';
}
if (isset($_POST['action'])) {
switch ($_POST['action']) {
case 'modifier':
if (isset($_POST['id']) && isset($_POST['description']) && isset($_POST['duree'])) {
if ($evenement = a_evenement($_POST['id'])) {
if (($duree = intval($_POST['duree'])) >= 0) {
$evenement->description = $_POST['description']; // TODO Protection nécessaire pour SQL
$evenement->duree = $duree;
bonneRequete('Élement correctement modifié.');
} else {
mauvaiseRequete(4);
}
} else {
mauvaiseRequete(3);
}
} else {
mauvaiseRequete(2);
}
break;
case 'annuler':
if (isset($_POST['id'])) {
if ($evenement = a_evenement($_POST['id'])) {
$evenement->annule = true;
bonneRequete('Évènement annulé.');
} else {
mauvaiseRequete(3);
}
} else {
mauvaiseRequete(2);
}
break;
case 'supprimer':
if (isset($_POST['id'])) {
if ($evenement = a_evenement($_POST['id'])) {
$evenement->supprime = true;
bonneRequete('Évènement supprimé.');
} else {
mauvaiseRequete(3);
}
} else {
mauvaiseRequete(2);
}
break;
default:
mauvaiseRequete(1);
break;
}
|
1d6e24f7
Geoffrey PREUD'HOMME
[Orga] Envoi des ...
|
311
312
313
314
315
|
}
# AFFICHAGE DE LA PAGE
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
316
|
# Tri des évènements
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
317
318
319
320
|
$evenementsPlanifies = array();
$evenementsAPlanifier = array();
$evenementsPasses = array();
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
321
322
323
324
325
326
327
328
329
330
331
332
|
foreach ($evenements as $evenement) {
if (!$evenement->supprime) {
if ($evenement->valide) {
if ($evenement->passe()) {
$evenementsPasses[] = $evenement;
} else {
$evenementsPlanifies[] = $evenement;
}
} else {
$evenementsAPlanifier[] = $evenement;
}
}
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
333
334
|
}
|
3fde9691
Geoffrey PREUD'HOMME
[Orga] Interpréta...
|
335
|
# Affichage
|
27f3beb9
Geoffrey Bontoux-Preud-Homme
Ajout de orga.php
|
336
|
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
337
338
339
340
341
342
343
344
345
|
if (!$e_connecte) {
?>
<div class="alert alert-warning" role="alert">Connectez-vous afin de pouvoir agir sur les évènements.</div>
<?php
}
?>
<?php
if (in_array('voir', $droits)) {
?>
|
6884541c
Geoffrey PREUD'HOMME
[Orga] Ajout d'id...
|
346
347
|
<h3>Évènements plannifiés <?php if (in_array('ajouter', $droits)) { ?><button id="ev_ajouter_fixe" type="button" class="btn btn-primary"><span class="glyphicon glyphicon-plus"></span> Ajouter un évènement avec une date fixée</button><?php } ?></h3>
<ul id="ev_ul_planifies" class="list-group">
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
348
|
<?php
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
349
350
351
|
foreach ($evenementsPlanifies as $evenement) {
echo $evenement->html();
}
|
27f3beb9
Geoffrey Bontoux-Preud-Homme
Ajout de orga.php
|
352
|
?>
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
353
354
|
</ul>
|
27f3beb9
Geoffrey Bontoux-Preud-Homme
Ajout de orga.php
|
355
|
|
6884541c
Geoffrey PREUD'HOMME
[Orga] Ajout d'id...
|
356
357
|
<h3>Évènements à plannifier <?php if (in_array('ajouter', $droits)) { ?><button id="ev_ajouter_choix" type="button" class="btn btn-primary"><span class="glyphicon glyphicon-plus"></span> Ajouter un évènement avec une date à choisir</button><?php } ?></h3>
<ul id="ev_ul_aplanifier" class="list-group">
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
358
|
<?php
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
359
360
361
|
foreach ($evenementsAPlanifier as $evenement) {
echo $evenement->html();
}
|
f84e30e3
Geoffrey PREUD'HOMME
[Orga] Retravail
|
362
363
364
365
|
?>
</ul>
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
366
|
<h3>Évènements passés</h3>
|
6884541c
Geoffrey PREUD'HOMME
[Orga] Ajout d'id...
|
367
|
<ul id="ev_ul_passes" class="list-group">
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
368
|
<?php
|
5f2f48c7
Geoffrey PREUD'HOMME
[Orga] Modificati...
|
369
370
371
372
|
foreach ($evenementsPasses as $evenement) {
echo $evenement->html();
}
?>
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
373
374
|
</ul>
|
fab2252b
Geoffrey PREUD'HOMME
[Orga] Réponse ad...
|
375
|
<script type="text/javascript" src="js/orga.js"></script>
|
3a23c07d
Geoffrey PREUD'HOMME
[Orga] Ajout d'év...
|
376
|
|
e4f5453d
Geoffrey PREUD'HOMME
[Orga] Meilleure ...
|
377
378
379
380
381
382
383
|
<?php
} else {
?>
<div class="alert alert-danger" role="alert">Vous ne pouvez pas voir les évènements.</div>
<?php
}
?>
|