-
Notifications
You must be signed in to change notification settings - Fork 2
/
month.php
571 lines (542 loc) · 24.5 KB
/
month.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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
<?php
/**
* month.php
* Interface d'accueil avec affichage par mois
* Ce script fait partie de l'application GRR
* Dernière modification : $Date: 2010-03-03 14:41:34 $
* @author Laurent Delineau <[email protected]>
* @copyright Copyright 2003-2008 Laurent Delineau
* @link http://www.gnu.org/licenses/licenses.html
* @package root
* @version $Id: month.php,v 1.19 2010-03-03 14:41:34 grr Exp $
* @filesource
*
* This file is part of GRR.
*
* GRR is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* GRR is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GRR; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* $Log: month.php,v $
* Revision 1.19 2010-03-03 14:41:34 grr
* *** empty log message ***
*
* Revision 1.18 2009-12-02 20:11:07 grr
* *** empty log message ***
*
* Revision 1.17 2009-09-29 18:02:57 grr
* *** empty log message ***
*
* Revision 1.16 2009-04-14 12:59:17 grr
* *** empty log message ***
*
* Revision 1.15 2009-04-09 14:52:31 grr
* *** empty log message ***
*
* Revision 1.14 2009-02-27 22:05:03 grr
* *** empty log message ***
*
* Revision 1.13 2009-01-20 07:19:17 grr
* *** empty log message ***
*
* Revision 1.12 2008-11-16 22:00:59 grr
* *** empty log message ***
*
* Revision 1.11 2008-11-14 07:29:09 grr
* *** empty log message ***
*
* Revision 1.10 2008-11-13 21:32:51 grr
* *** empty log message ***
*
* Revision 1.9 2008-11-11 22:01:14 grr
* *** empty log message ***
*
* Revision 1.8 2008-11-10 08:17:34 grr
* *** empty log message ***
*
* Revision 1.7 2008-11-10 07:06:39 grr
* *** empty log message ***
*
*
*/
include "include/connect.inc.php";
include "include/config.inc.php";
include "include/misc.inc.php";
include "include/functions.inc.php";
include "include/$dbsys.inc.php";
include "include/mincals.inc.php";
include "include/mrbs_sql.inc.php";
$grr_script_name = "month.php";
#Settings
require_once("./include/settings.inc.php");
#Chargement des valeurs de la table settings
if (!loadSettings())
die("Erreur chargement settings");
#Fonction relative à la session
require_once("./include/session.inc.php");
#Si il n'y a pas de session crée et que l'identification est requise, on déconnecte l'utilisateur.
if ((!grr_resumeSession())and (getSettingValue("authentification_obli")==1))
{
header("Location: ./logout.php?auto=1&url=$url");
die();
};
// Construction des identifiants de la ressource $room, du domaine $area, du site $id_site
Definition_ressource_domaine_site();
// Récupération des données concernant l'affichage du planning du domaine
get_planning_area_values($area);
// Paramètres langage
include "include/language.inc.php";
// On affiche le lien "format imprimable" en bas de la page
$affiche_pview = '1';
if (!isset($_GET['pview'])) $_GET['pview'] = 0; else $_GET['pview'] = 1;
if ($_GET['pview'] == 1)
$class_image = "print_image";
else
$class_image = "image";
// calcul de l'accès à la ressource en fonction du niveau de l'utilisateur
$verif_acces_ressource = verif_acces_ressource(getUserName(), $room);
// Calcul du niveau d'accès aux fiche de réservation détaillées des ressources
$acces_fiche_reservation = verif_acces_fiche_reservation(getUserName(), $room);
// calcul du test si l'utilisateur a la possibilité d'effectuer une réservation, compte tenu
// des limitations éventuelles de la ressources et du nombre de réservations déjà effectuées.
$UserRoomMaxBooking = UserRoomMaxBooking(getUserName(), $room, 1);
// calcul du niverau de droit de réservation
$authGetUserLevel = authGetUserLevel(getUserName(),-1);
// Determine si un visiteur peut réserver une ressource
$auth_visiteur = auth_visiteur(getUserName(),$room);
#Paramètres par défaut
if (empty($debug_flag)) $debug_flag = 0;
if (empty($month) || empty($year) || !checkdate($month, 1, $year))
{
$month = date("m");
$year = date("Y");
}
if (!isset($day)) $day = 1;
#Renseigne la session de l'utilisateur, sans identification ou avec identification.
if ((getSettingValue("authentification_obli")==0) and (getUserName()==''))
{
$type_session = "no_session";
}
else
{
$type_session = "with_session";
}
#Récupération des informations relatives au serveur.
$back = '';
if (isset($_SERVER['HTTP_REFERER'])) $back = my_htmlspecialcharacters($_SERVER['HTTP_REFERER']);
#Renseigne les droits de l'utilisateur, si les droits sont insufisants, l'utilisateur est avertit.
if (check_begin_end_bookings($day, $month, $year))
{
showNoBookings($day, $month, $year, $area,$back,$type_session );
exit();
}
if(((authGetUserLevel(getUserName(),-1) < 1) and (getSettingValue("authentification_obli")==1)) or !$verif_acces_ressource)
{
showAccessDenied($day, $month, $year, $area,$back);
exit();
}
if(authUserAccesArea(getUserName(), $area)==0)
{
showAccessDenied($day, $month, $year, $area,$back);
exit();
}
#Fonction de comparaison, retourne "<" "=" ou ">"
function cmp3($a, $b)
{
if ($a < $b) return "< ";
if ($a == $b) return "= ";
return "> ";
}
// On vérifie une fois par jour si le délai de confirmation des réservations est dépassé
// Si oui, les réservations concernées sont supprimées et un mail automatique est envoyé.
// On vérifie une fois par jour que les ressources ont été rendue en fin de réservation
// Si non, une notification email est envoyée
if (getSettingValue("verif_reservation_auto")==0) {
verify_confirm_reservation();
verify_retard_reservation();
}
#Affiche les informations dans l'header
print_header($day, $month, $year, $area, $type_session, "no_admin", $room);
#Heure de dénut du mois, cela ne sert à rien de reprndre les valeur morningstarts/eveningends
$month_start = mktime(0, 0, 0, $month, 1, $year);
#Dans quel colonne l'affichage commence: 0 veut dire $weekstarts
$weekday_start = (date("w", $month_start) - $weekstarts + 7) % 7;
$days_in_month = date("t", $month_start);
$month_end = mktime(23, 59, 59, $month, $days_in_month, $year);
if ($enable_periods=='y') {
$resolution = 60;
$morningstarts = 12;
$eveningends = 12;
$eveningends_minutes = count($periods_name)-1;
}
// Si format imprimable ($_GET['pview'] = 1), on n'affiche pas cette partie
if ($_GET['pview'] != 1) {
#Table avec areas, rooms, minicals.
echo "<table width=\"100%\" cellspacing=\"15\"><tr>";
$this_area_name = "";
$this_room_name = "";
if (isset($_SESSION['default_list_type']) or (getSettingValue("authentification_obli")==1))
$area_list_format = $_SESSION['default_list_type'];
else
$area_list_format = getSettingValue("area_list_format");
# Sélection des sites, domaines et ressources
if ($area_list_format != "list") {
# Sélection sous la forme de listes déroulantes
echo "<td>\n";
echo make_site_select_html($type_month_all.'.php',$id_site,$year,$month,$day,getUserName());
echo make_area_select_html($type_month_all.'.php',$id_site, $area, $year, $month, $day, getUserName());
echo make_room_select_html('month',$area, $room, $year, $month, $day);
echo "</td>\n";
} else {
# Sélection sous la forme de listes
echo "<td>\n";
echo make_site_list_html($type_month_all.'.php',$id_site,$year,$month,$day,getUserName());
echo "</td><td>";
echo make_area_list_html($type_month_all.'.php',$id_site, $area, $year, $month, $day, getUserName());
echo "</td>\n<td>\n";
// Faut-il forcer le mode liste déroulante pour le domaine sélectionné ?
if ($area) {
$sql = "select filter_empty_resources from ".TABLE_PREFIX."_area where id='".protect_data_sql($area)."'";
$row = grr_sql_row(grr_sql_query($sql), 0);
if ($row[0] == 1) {
echo make_room_select_html('month',$area, $room, $year, $month, $day);
} else {
make_room_list_html('month.php', $area, $room, $year, $month, $day);
}
} else {
make_room_list_html('month.php', $area, $room, $year, $month, $day);
}
echo "</td>\n\n";
}
#Affiche le calendrier des mois
minicals($year, $month, $day, $area, $room, 'month');
echo "</tr></table>\n";
}
$this_area_name = grr_sql_query1("select area_name from ".TABLE_PREFIX."_area where id=$area");
$this_room_name = grr_sql_query1("select room_name from ".TABLE_PREFIX."_room where id=$room");
$this_room_name_des = grr_sql_query1("select description from ".TABLE_PREFIX."_room where id=$room");
$this_statut_room = grr_sql_query1("select statut_room from ".TABLE_PREFIX."_room where id=$room");
$this_moderate_room = grr_sql_query1("select moderate from ".TABLE_PREFIX."_room where id=$room");
$this_delais_option_reservation = grr_sql_query1("select delais_option_reservation from ".TABLE_PREFIX."_room where id=$room");
$this_area_comment = grr_sql_query1("select comment_room from ".TABLE_PREFIX."_room where id=$room");
$this_area_show_comment = grr_sql_query1("select show_comment from ".TABLE_PREFIX."_room where id=$room");
#O,n arrête si il n'y a pas de room dans cet area
if ($room <= 0)
{
echo "<h1>".get_vocab("no_rooms_for_area")."</h1>";
include "include/trailer.inc.php";
exit;
}
#Affiche le mois, l'année, la room et l'area
if (($this_room_name_des) and ($this_room_name_des!="-1"))
$this_room_name_des = " (".$this_room_name_des.")";
else
$this_room_name_des = "";
echo "<div class=\"titre_planning\">" . ucfirst(utf8_strftime("%B %Y", $month_start))
. "<br />".ucfirst($this_area_name)." - $this_room_name $this_room_name_des\n";
if (verif_display_fiche_ressource(getUserName(), $room) and $_GET['pview'] != 1)
echo "<a href='javascript:centrerpopup(\"view_room.php?id_room=$room\",600,480,\"scrollbars=yes,statusbar=no,resizable=yes\")' title=\"".get_vocab("fiche_ressource")."\">
<img src=\"img_grr/details.png\" alt=\"détails\" class=\"".$class_image."\" /></a>";
if (authGetUserLevel(getUserName(),$room) > 2 and $_GET['pview'] != 1)
echo "<a href='admin_edit_room.php?room=$room'><img src=\"img_grr/editor.png\" alt=\"configuration\" title=\"".get_vocab("Configurer la ressource")."\" width=\"30\" height=\"30\" class=\"".$class_image."\" /></a>";
// La ressource est-elle empruntée ?
affiche_ressource_empruntee($room);
if ($this_statut_room == "0")
echo "<br /><span class=\"texte_ress_tempo_indispo\">".get_vocab("ressource_temporairement_indisponible")."</span>";
if ($this_moderate_room == "1")
echo "<br /><span class=\"texte_ress_moderee\">".get_vocab("reservations_moderees")."</span>";
echo "</div>";
if ($this_area_show_comment == "y" and $_GET['pview'] != 1 and ($this_area_comment!="") and ($this_area_comment!=-1))
echo "<div style=\"text-align:center;\">".$this_area_comment."</div>";
# Show Go to month before and after links
#y? are year and month of the previous month.
#t? are year and month of the next month.
$i= mktime(0,0,0,$month-1,1,$year);
$yy = date("Y",$i);
$ym = date("n",$i);
$i= mktime(0,0,0,$month+1,1,$year);
$ty = date("Y",$i);
$tm = date("n",$i);
// Si format imprimable ($_GET['pview'] = 1), on n'affiche pas cette partie
if ($_GET['pview'] != 1) {
echo "<table width=\"100%\"><tr><td>
<a href=\"month.php?year=$yy&month=$ym&room=$room\">
<< ".get_vocab("monthbefore")."</a></td>
<td> </td>
<td align=\"right\"><a href=\"month.php?year=$ty&month=$tm&room=$room\">
".get_vocab("monthafter")." >></a></td></tr></table>";
}
if ($debug_flag)
echo "<p>DEBUG: month=$month year=$year start=$weekday_start range=$month_start:$month_end\n";
#Remplace l'espace pour qu'il n'y ai pas de problèmes
$all_day = preg_replace("/ /", " ", get_vocab("all_day"));
#Récupérer toutes les réservations pour le mois de la room affichée
# row[0] = Début de réservation
# row[1] = Fin de réservation
# row[2] = ID de la réservation
# row[3] = Nom de la réservation
# row[4] = Bénéficiaire de la réservation
# row[5] = Description complète
# row[6] = type
# row[7] = modération
# row[8] = Bénéficiaire extérier
$sql = "SELECT start_time, end_time, id, name, beneficiaire, description, type, moderate, beneficiaire_ext
FROM ".TABLE_PREFIX."_entry
WHERE room_id=$room
AND start_time <= $month_end AND end_time > $month_start
ORDER by 1";
# Contruit un array des informations de chaques jours dans le mois
# Ces informations sont sauvegardées:
# d[monthday]["id"][] = ID de chaque réservation, pour le lien
# d[monthday]["data"][] = Début et fin pour chaque réservation
$res = grr_sql_query($sql);
if (! $res)
echo grr_sql_error();
else for ($i = 0; ($row = grr_sql_row($res, $i)); $i++)
{
if ($debug_flag)
echo "<br />DEBUG: result $i, id $row[2], starts $row[0], ends $row[1]\n";
#Remplir tous les jours ou cette réservation s'opère
// début de la première réservation trouvée
$t = max((int)$row[0], $month_start);
// fin de la première réservation trouvée
$end_t = min((int)$row[1], $month_end);
// numéro du jour de la première réservation
$day_num = date("j", $t);
// On fixe le début de la journée ($midnight)
if ($enable_periods == 'y')
$midnight = mktime(12,0,0,$month,$day_num,$year);
else
$midnight = mktime(0, 0, 0, $month, $day_num, $year);
while ($t < $end_t)
{
if ($debug_flag) echo "<br />DEBUG: Entry $row[2] day $day_num\n";
$d[$day_num]["id"][] = $row[2];
// Info-bulle
if (getSettingValue("display_info_bulle") == 1)
$d[$day_num]["who"][] = get_vocab("reservee au nom de").affiche_nom_prenom_email($row[4],$row[8],"nomail");
else if (getSettingValue("display_info_bulle") == 2)
$d[$day_num]["who"][] = $row[5];
else
$d[$day_num]["who"][] = "";
$d[$day_num]["who1"][] = affichage_lien_resa_planning($row[3],$row[2]);
$d[$day_num]["color"][] = $row[6];
$d[$day_num]["description"][] = affichage_resa_planning($row[5],$row[2]);
$d[$day_num]["moderation"][] = $row[7];
// On incrémente de 24 h = 86400 secondes
$midnight_tonight = $midnight + 86400;
#Début et fin pour tous les jours
#9 cas: Début < = ou > minuit
# Fin < = ou > minuit
#Utiliser ~ (pas -) pour séparer l'heure de début et de fin (MSIE)
if ($enable_periods == 'y') {
$start_str = preg_replace("/ /", " ", period_time_string($row[0]));
$end_str = preg_replace("/ /", " ", period_time_string($row[1], -1));
switch (cmp3($row[0], $midnight) . cmp3($row[1], $midnight_tonight))
{
case "> < ": # Starts after midnight, ends before midnight
case "= < ": # Starts at midnight, ends before midnight
if ($start_str == $end_str)
$d[$day_num]["data"][] = $start_str;
else
$d[$day_num]["data"][] = $start_str . "~" . $end_str;
break;
case "> = ": # Starts after midnight, ends at midnight
$d[$day_num]["data"][] = $start_str . "~24:00";
break;
case "> > ": # Starts after midnight, continues tomorrow
$d[$day_num]["data"][] = $start_str . "~====>";
break;
case "= = ": # Starts at midnight, ends at midnight
$d[$day_num]["data"][] = $all_day;
break;
case "= > ": # Starts at midnight, continues tomorrow
$d[$day_num]["data"][] = $all_day . "====>";
break;
case "< < ": # Starts before today, ends before midnight
$d[$day_num]["data"][] = "<====~" . $end_str;
break;
case "< = ": # Starts before today, ends at midnight
$d[$day_num]["data"][] = "<====" . $all_day;
break;
case "< > ": # Starts before today, continues tomorrow
$d[$day_num]["data"][] = "<====" . $all_day . "====>";
break;
}
} else {
switch (cmp3($row[0], $midnight) . cmp3($row[1], $midnight_tonight))
{
case "> < ": #Début après minuit, fin avant minuit
case "= < ": #Début à minuit, fin avant minuit
$d[$day_num]["data"][] = date(hour_min_format(), $row[0]) . "~" . date(hour_min_format(), $row[1]);
break;
case "> = ": #Début après minuit, fin à minuit
$d[$day_num]["data"][] = date(hour_min_format(), $row[0]) . "~24:00";
break;
case "> > ": #Début après minuit, continue le lendemain
$d[$day_num]["data"][] = date(hour_min_format(), $row[0]) . "~====>";
break;
case "= = ": #Début à minuit, fin à minuit
$d[$day_num]["data"][] = $all_day;
break;
case "= > ": #Début à minuit, continue le lendemain
$d[$day_num]["data"][] = $all_day . "====>";
break;
case "< < ": #Début avant aujourdhui, fin avant minuit
$d[$day_num]["data"][] = "<====~" . date(hour_min_format(), $row[1]);
break;
case "< = ": #Début avant aujourd'hui', fin à minuit
$d[$day_num]["data"][] = "<====" . $all_day;
break;
case "< > ": #Début avant aujourd'hui', continue le lendemain
$d[$day_num]["data"][] = "<====" . $all_day . "====>";
break;
}
}
#Seulement si l'heure de fin est pares minuit, on continue le jour prochain.
if ($row[1] <= $midnight_tonight) break;
$day_num++;
$t = $midnight = $midnight_tonight;
}
}
if ($debug_flag)
{
echo "<p>DEBUG: Array of month day data:<p><pre>\n";
for ($i = 1; $i <= $days_in_month; $i++)
{
if (isset($d[$i]["id"]))
{
$n = count($d[$i]["id"]);
echo "Day $i has $n entries:\n";
for ($j = 0; $j < $n; $j++)
echo " ID: " . $d[$i]["id"][$j] .
" Data: " . $d[$i]["data"][$j] . "\n";
}
}
echo "</pre>\n";
}
echo "<table border=\"2\" width=\"100%\">\n<tr>";
#Affichage des jours en entête
for ($weekcol = 0; $weekcol < 7; $weekcol++)
{
$num_week_day = ($weekcol + $weekstarts)%7;
if ($display_day[$num_week_day] == 1) // on n'affiche pas tous les jours de la semaine
echo "<th style=\"width:14%;\">" . day_name(($weekcol + $weekstarts)%7) . "</th>";
}
echo "</tr>\n";
#Ne pas tenir compte des jours avant le début du mois
$weekcol = 0;
if ($weekcol != $weekday_start) {
echo "<tr>";
for ($weekcol = 0; $weekcol < $weekday_start; $weekcol++)
{
$num_week_day = ($weekcol + $weekstarts)%7;
if ($display_day[$num_week_day] == 1) // on n'affiche pas tous les jours de la semaine
echo "<td class=\"cell_month_o\"> </td>\n";
}
}
#Afficher le jour du mois
for ($cday = 1; $cday <= $days_in_month; $cday++)
{
$num_week_day = ($weekcol + $weekstarts)%7;
$t=mktime(0,0,0,$month,$cday,$year);
$name_day = ucfirst(utf8_strftime("%d", $t));
$jour_cycle = grr_sql_query1("SELECT Jours FROM ".TABLE_PREFIX."_calendrier_jours_cycle WHERE DAY='$t'");
if ($weekcol == 0) echo "<tr>\n";
if ($display_day[$num_week_day] == 1) {// début condition "on n'affiche pas tous les jours de la semaine"
echo "<td valign=\"top\" class=\"cell_month\">\n<div class=\"monthday\"><a title=\"".my_htmlspecialcharacters(get_vocab("see_all_the_rooms_for_the_day"))."\" href=\"day.php?year=$year&month=$month&day=$cday&area=$area\">".$name_day;
if (getSettingValue("jours_cycles_actif") == "Oui" and intval($jour_cycle)>-1)
if (intval($jour_cycle)>0)
echo " - ".get_vocab("rep_type_6")." ".$jour_cycle;
else
echo " - ".$jour_cycle;
echo "</a></div>\n";
if (est_hors_reservation(mktime(0,0,0,$month,$cday,$year),$area)) {
echo "<div class=\"empty_cell\">";
echo "<img src=\"img_grr/stop.png\" alt=\"".get_vocab("reservation_impossible")."\" title=\"".get_vocab("reservation_impossible")."\" width=\"16\" height=\"16\" class=\"".$class_image."\" />";
echo "</div>\n";
} else {
# Anything to display for this day?
if (isset($d[$cday]["id"][0])) {
$n = count($d[$cday]["id"]);
#Affiche l'heure de début et de fin, 2 par lignes avec lien pour voie la reservation
#Si il y en a plus que 123, on affiche "..." après le 11ème
for ($i = 0; $i < $n; $i++) {
if ($i == 11 && $n > 12) {
echo " ...\n";
break;
}
echo "\n<table width='100%' border='0'><tr>\n";
tdcell($d[$cday]["color"][$i]);
echo "<span class=\"small_planning\">";
echo $d[$cday]["data"][$i]
. "<br />";
// si la réservation est à modérer, on le signale
if ((isset($d[$cday]["moderation"][$i])) and ($d[$cday]["moderation"][$i]==1))
echo " <img src=\"img_grr/flag_moderation.png\" alt=\"".get_vocab("en_attente_moderation")."\" title=\"".get_vocab("en_attente_moderation")."\" class=\"image\" /> \n";
if ($acces_fiche_reservation)
echo "<a title=\"".my_htmlspecialcharacters($d[$cday]["who"][$i])."\" href=\"view_entry.php?id=" . $d[$cday]["id"][$i]
. "&day=$cday&month=$month&year=$year&page=month\">"
. $d[$cday]["who1"][$i]
. "</a>";
else
echo $d[$cday]["who1"][$i];
if ($d[$cday]["description"][$i]!= "")
echo "<br /><i>(".$d[$cday]["description"][$i].")</i>";
echo "</span></td></tr></table>";
}
}
// Possibilité de faire une nouvelle réservation
$date_now=time();
$hour = date("H",$date_now); // Heure actuelle
$date_booking = mktime(24, 0, 0, $month, $cday, $year); // minuit
if ((($authGetUserLevel > 1) or ($auth_visiteur == 1))
and ($UserRoomMaxBooking != 0)
and verif_booking_date(getUserName(), -1, $room, $date_booking, $date_now, $enable_periods)
and verif_delais_max_resa_room(getUserName(), $room, $date_booking)
and verif_delais_min_resa_room(getUserName(), $room, $date_booking)
and plages_libre_semaine_ressource($room, $month, $cday, $year)
and (($this_statut_room == "1") or
(($this_statut_room == "0") and (authGetUserLevel(getUserName(),$room) > 2) ))
and $_GET['pview'] != 1) {
echo "<div class=\"empty_cell\">";
if ($enable_periods == 'y')
echo "<a href=\"edit_entry.php?room=".$room."&period=&year=$year&month=$month&day=$cday&page=month\" title=\"".get_vocab("cliquez_pour_effectuer_une_reservation")."\"><img src=\"img_grr/new.png\" alt=\"".get_vocab("add")."\" class=\"".$class_image."\" /></a>";
else
echo "<a href=\"edit_entry.php?room=".$room."&hour=$hour&minute=0&year=$year&month=$month&day=$cday&page=month\" title=\"".get_vocab("cliquez_pour_effectuer_une_reservation")."\"><img src=\"img_grr/new.png\" alt=\"".get_vocab("add")."\" class=\"".$class_image."\" /></a>";
echo "</div>";
} else {
echo " ";
}
}
echo "</td>\n";
} // fin condition "on n'affiche pas tous les jours de la semaine"
if (++$weekcol == 7) {
$weekcol = 0;
echo "</tr>";
}
}
#Ne tiens pas en compte les journées après le dernier jour du mois
if ($weekcol > 0) for (; $weekcol < 7; $weekcol++)
{
$num_week_day = ($weekcol + $weekstarts)%7;
if ($display_day[$num_week_day] == 1) // on n'affiche pas tous les jours de la semaine
echo "<td class=\"cell_month_o\" > </td>\n";
}
echo "</tr></table>\n";
show_colour_key($area);
// Affichage d'un message pop-up
affiche_pop_up(get_vocab("message_records"),"user");
include "include/trailer.inc.php";
?>