Subversion Repositories Applications.bazar

Rev

Rev 419 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
30 ddelon 1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
8
// | This library is free software; you can redistribute it and/or                                        |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
10
// | License as published by the Free Software Foundation; either                                         |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
12
// |                                                                                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
16
// | Lesser General Public License for more details.                                                      |
17
// |                                                                                                      |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
19
// | License along with this library; if not, write to the Free Software                                  |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
419 jpm 22
// CVS : $Id: bazar.fonct.cal.php,v 1.29 2008-10-29 10:38:51 alexandre_tb Exp $
30 ddelon 23
/**
24
*
25
* Fonctions calendrier du module bazar
26
*
419 jpm 27
* TODO : ajouter la gestion du multilinguisme
28
*
30 ddelon 29
*@package bazar
30
//Auteur original :
31
*@author        David Delon <david.delon@clapas.net>
32
//Autres auteurs :
33
*@copyright     Tela-Botanica 2000-2004
419 jpm 34
*@version       $Revision: 1.29 $ $Date: 2008-10-29 10:38:51 $
30 ddelon 35
// +------------------------------------------------------------------------------------------------------+
36
*/
37
 
38
// +------------------------------------------------------------------------------------------------------+
39
// |                                            ENTETE du PROGRAMME                                       |
40
// +------------------------------------------------------------------------------------------------------+
225 neiluj 41
 
55 florian 42
require_once PAP_CHEMIN_RACINE.'api/pear/Calendar/Month/Weekdays.php';
43
require_once PAP_CHEMIN_RACINE.'api/pear/Calendar/Day.php';
44
require_once PAP_CHEMIN_RACINE.'api/pear/Calendar/Decorator.php';
30 ddelon 45
 
46
// +------------------------------------------------------------------------------------------------------+
47
// |                                           LISTE de FONCTIONS                                         |
48
// +------------------------------------------------------------------------------------------------------+
49
 
50
// Classe Utilitaire pour Calendrier
51
class DiaryEvent extends Calendar_Decorator {
205 jp_milcent 52
	var $entry = array();
53
	function DiaryEvent($calendar)
54
	{
30 ddelon 55
		Calendar_Decorator::Calendar_Decorator($calendar);
56
	}
205 jp_milcent 57
	function setEntry($entry)
58
	{
59
		$this->entry[] = $entry;
30 ddelon 60
 
61
	}
205 jp_milcent 62
	function getEntry()
63
	{
30 ddelon 64
		return $this->entry;
65
	}
66
}
67
 
68
 
42 ddelon 69
// $type : calendrier
70
// $type : calendrier_appplette
258 alexandre_ 71
function GestionAffichageCalendrier($arguments = array(), $type = 'calendrier') {
290 alexandre_ 72
	$script = '';
258 alexandre_ 73
	// recuperation des arguments de l applette
74
	$balise = isset ($arguments[0]) ? $arguments[0] : '';
75
    $tab_arguments = $arguments;
335 alexandre_ 76
	if (is_string ($tab_arguments)) {
77
		$tab_arguments = substr($tab_arguments, 1);
78
	} else {
79
		unset($tab_arguments[0]);
80
	}
258 alexandre_ 81
	if (is_array($tab_arguments)) {
82
	    foreach($tab_arguments as $argument) {
83
	    	if ($argument != '') {
84
		    	$tab_parametres = explode('=', $argument, 2);
267 florian 85
		    	if (is_array($tab_parametres)) {
86
		    		$options[$tab_parametres[0]] =
87
		    		(isset($tab_parametres[1])? trim($tab_parametres[1], '"') : '') ;
88
		    	}
258 alexandre_ 89
	    	}
90
	    }
91
	}
92
 
93
    if (!isset($options['template'])) {
94
		$options['template'] = BAZ_CHEMIN_SQUELETTE.BAZ_SQUELETTE_DEFAUT;
95
	} else {
96
		if (file_exists(BAZ_CHEMIN_SQUELETTE.$options['template'])) {
97
			$options['template'] = BAZ_CHEMIN_SQUELETTE.$options['template'];
98
		}
99
	}
100
 
208 jp_milcent 101
	$retour = '';
225 neiluj 102
 
30 ddelon 103
	$url = $GLOBALS['_GEN_commun']['url'] ;
205 jp_milcent 104
	$db =& $GLOBALS['_GEN_commun']['pear_db'] ;
105
	$auth =& $GLOBALS['_GEN_commun']['pear_auth'] ;
30 ddelon 106
 
279 alexandre_ 107
	// Nettoyage de l'url de la query string
108
	$chaine_url = $url->getQueryString();
109
	$tab_params = explode('&amp;', $chaine_url);
110
	if (count($tab_params) == 0) {
111
		$tab_params = explode('&', $chaine_url);
112
	}
113
	foreach ($tab_params as $param) {
114
		$tab_parametre = explode('=', $param);
422 jpm 115
		// note d'Aurélien, si on nettoie l'URL on perd la vue en cours
116
		//$url->removeQueryString($tab_parametre[0]);
279 alexandre_ 117
	}
118
 
30 ddelon 119
	if (!isset($_GET['y'])) {
120
		$_GET['y'] = date('Y');
121
	}
122
 
123
	if (!isset($_GET['m'])) {
124
		$_GET['m'] = date('m');
125
	}
126
 
127
	// 	Construction Mois en Cours
128
	$month = new Calendar_Month_Weekdays($_GET['y'],$_GET['m']);
129
 
205 jp_milcent 130
	$curStamp = $month->getTimeStamp();
131
	$url->addQueryString('y', date('Y',$curStamp));
132
	$url->addQueryString('m', date('n',$curStamp));
133
	$url->addQueryString('d', date('j',$curStamp));
30 ddelon 134
	$cur = $url->getUrl();
279 alexandre_ 135
 
419 jpm 136
	// Gestion de l'affichage du filtre des natures d'évènements
137
	$cal_num_annonce = BAZ_NUM_ANNONCE_CALENDRIER;
138
	$ficnat_id = null;
139
	if (isset($_GET['ficnat']) && $_GET['ficnat'] != '*') {
140
		$ficnat_id = $_GET['ficnat'];
141
		$url->addQueryString('ficnat', $_GET['ficnat']);
142
		$cal_num_annonce = $_GET['ficnat'];
143
	}
144
 
279 alexandre_ 145
	// Gestion de l'affichage des titres des évènements
146
	if (isset($_GET['ctt']) && $_GET['ctt'] == '1') {
147
		$url->addQueryString('tt', '0');
148
		if (isset($_GET['tt']) && $_GET['tt'] == '0') {
149
			$url->addQueryString('tt', '1');
150
		}
151
		$tc_lien = $url->getUrl();
152
	} else {
153
		$url->addQueryString('tt', '0');
154
		if (isset($_GET['tt']) && $_GET['tt'] == '0') {
155
			$url->addQueryString('tt', '1');
156
		}
157
		$url->addQueryString('ctt', '1');
158
		$tc_lien = $url->getUrl();
159
	}
160
	$url->removeQueryString('ctt');
161
	$url->removeQueryString('tt');
162
	$tc_txt = 'Afficher les titres complets des évènements';
163
	if (isset($_GET['tt']) && $_GET['tt'] == '0') {
164
		$tc_txt = 'Tronquer les titres des évènements';
165
		$url->addQueryString('tt', $_GET['tt']);
166
	}
419 jpm 167
 
168
	//	Gestion des champs cachés pour le formulaire de filtre
169
	// Attention  à la position dans le fichier...
170
	$ficnat_chps_cache = $url->querystring;
171
	unset($ficnat_chps_cache['ficnat']);
30 ddelon 172
 
173
	// Navigation
174
	$prevStamp = $month->prevMonth(true);
205 jp_milcent 175
	$url->addQueryString('y', date('Y',$prevStamp));
176
	$url->addQueryString('m', date('n',$prevStamp));
177
	$url->addQueryString('d', date('j',$prevStamp));
30 ddelon 178
	$prev = $url->getUrl();
205 jp_milcent 179
 
30 ddelon 180
	$nextStamp = $month->nextMonth(true);
205 jp_milcent 181
	$url->addQueryString('y', date('Y',$nextStamp));
182
	$url->addQueryString('m', date('n',$nextStamp));
183
	$url->addQueryString('d', date('j',$nextStamp));
30 ddelon 184
	$next = $url->getUrl();
205 jp_milcent 185
 
279 alexandre_ 186
	// Suppression du paramêtre de troncage des titres
187
	$url->removeQueryString('tt');
188
 
205 jp_milcent 189
	$fr_month = array(	"1"=>BAZ_JANVIER,"2"=>BAZ_FEVRIER,"3"=>BAZ_MARS,"4"=>BAZ_AVRIL,"5"=>BAZ_MAI,"6"=>BAZ_JUIN,
190
						"7"=>BAZ_JUILLET,"8"=>BAZ_AOUT,"9"=>BAZ_SEPTEMBRE,"10"=>BAZ_OCTOBRE,"11"=>BAZ_NOVEMBRE,"12"=>BAZ_DECEMBRE);
30 ddelon 191
 
419 jpm 192
	// Récupération des infos sur les natures des fiches pour le filtre
193
	$requete_nature_fiche = 'SELECT DISTINCT bn_id_nature, bn_ce_i18n, bn_label_nature '.
194
							'FROM bazar_nature '.
195
							'WHERE bn_id_nature IN ('.BAZ_NUM_ANNONCE_CALENDRIER.') ';
196
	$resultat_nature_fiche = $db->query($requete_nature_fiche);
197
	(DB::isError($resultat_nature_fiche)) ? trigger_error(BOG_afficherErreurSql(__FILE__, __LINE__, $resultat_nature_fiche->getMessage(), $requete_nature_fiche), E_USER_WARNING) : '';
198
 
199
	// Ajout du javascript et des styles du bazar
200
	if (defined('PAP_VERSION')) { //si on est dans Papyrus
201
		GEN_stockerStyleExterne( 'bazar_interne', 'client/bazar/bazar.interne.css');
202
		GEN_stockerFichierScript('domLib', '/api/js/domtooltip/domLib.js');
203
		GEN_stockerFichierScript('domTT', '/api/js/domtooltip/domTT.js');
204
 
205
		// DomToolTip
206
		$script = 'var domTT_styleClass = "niceTitle";'."\n";
207
		$script .= 'function nicetitleDecorator(el) {'."\n";
208
		$script .= '	var result = el.title;'."\n";
209
		$script .= '	result = result.replace(new RegExp("\n", "g"), "<br />");'."\n";
210
		$script .= '	//if (el.href) {'."\n";
211
		$script .= '		//result += "<p>" + el.href + "<\/p>";'."\n";
212
		$script .= '	//}'."\n";
213
		$script .= '	return result;'."\n";
214
		$script .= '}'."\n";
215
		$script .= 'domTT_replaceTitles(nicetitleDecorator);'."\n";
216
		GEN_stockerCodeScript('var domTT_styleClass = "niceTitle";'."\n");
217
	}
218
 
279 alexandre_ 219
	// Titre
220
	if ($type == 'calendrier') {
419 jpm 221
		$retour .= '<div id="cal_entete">'."\n";
222
		$retour .= '<span class="cal_navigation">'."\n";
223
		$retour .= '<a id="cal_precedent_lien" href="'.$prev.'" title="Allez au mois précédent"><img id="cal_precedent_img" src="client/bazar/images/cal_precedent.png" alt="&lt;&lt;"/></a>'."\n";
224
		$retour .= '&nbsp;&nbsp;'."\n";
279 alexandre_ 225
		$retour .= '<span id="cal_encadre_mois_courrant"><a id="cal_mois_courrant" href="'.$cur.'">';
226
		$retour .= $fr_month[(date('n',$curStamp))];
227
		$retour .= '&nbsp;';
228
		$retour .= (date('Y',$curStamp));
419 jpm 229
		$retour .= '</a></span>'."\n";
230
		$retour .= '&nbsp;&nbsp;'."\n";
231
		$retour .= '<a id="cal_suivant_lien" href="'.$next.'" title="Allez au mois suivant"><img id="cal_suivant_img" src="client/bazar/images/cal_suivant.png" alt="&gt;&gt;"/></a>'."\n";
232
		$retour .= '</span>'."\n";
233
		$retour .= '<h1 id="cal_titre"><img id="cal_titre_img" src="client/bazar/images/cal_titre.png" alt="Calendrier"/></h1>'."\n";
234
		$retour .= '</div>'."\n";
279 alexandre_ 235
 
419 jpm 236
		$retour .= '<form action="'.$tc_lien.'" method="get">'."\n";
237
		$retour .= '<a href="'.$tc_lien.'">'.$tc_txt.'</a>'."\n";
238
		$retour .= '<fieldset>'."\n";
239
		$retour .= '<legend>'.'Filtrer : '.'</legend>'."\n";
240
		$retour .= '<select id="ficnat" name="ficnat" class="filtre_'.((!is_null($ficnat_id)) ? $ficnat_id: 'tous').'"  onchange="javascript:this.form.submit();">'."\n";
241
 
242
		$retour .= '<option id="filtre_tous" value="*" ';
243
		if (isset($_GET['ficnat']) && '*' == $_GET['ficnat']) {
244
			$retour .= 'selected="selected" ';
245
		}
246
		$retour .= '>'.'Tout afficher'.'</option>';
247
 
248
		while ($ligne_nature_fiche = $resultat_nature_fiche->fetchRow(DB_FETCHMODE_OBJECT)) {
249
			$opt = '<option class="filtre_'.$ligne_nature_fiche->bn_id_nature.'" value="'.$ligne_nature_fiche->bn_id_nature.'" ';
250
			if (isset($_GET['ficnat']) && $ligne_nature_fiche->bn_id_nature == $_GET['ficnat']) {
251
				$opt .= 'selected="selected" ';
252
			}
253
			$opt .= '>';
254
 
255
			$retour .= $opt.$ligne_nature_fiche->bn_label_nature.'</option>'."\n";
256
		}
257
 
258
		$retour .= '</select>'."\n";
259
		$retour .= '<input id="ficnat_ok" type="submit" value="'.'OK'.'" onload="javascript:this.setAttribute(\'style\', \'display:none;\')"/>'."\n";
260
		$script_ok = 	'if (document.getElementById(\'ficnat_ok\')) {'.
261
						'	document.getElementById(\'ficnat_ok\').style.display = \'none\';'.
262
						'}';
263
		$retour.= '<script type="text/javascript">//<![CDATA['."\n".$script_ok.'//]]></script>'."\n";
264
		foreach ($ficnat_chps_cache as $cle => $val) {
265
			$retour .= '<input id="'.$cle.'" name="'.$cle.'" type="hidden" value="'.$val.'" />'."\n";
266
		}
267
		$retour .= '</fieldset>'."\n";
268
		$retour .= '</form>'."\n";
269
 
279 alexandre_ 270
	} else {
271
		// Appel du template
272
		ob_start();
273
		include $options['template'];
274
		$retour .= ob_get_contents();
275
		ob_end_clean();
276
	}
42 ddelon 277
	// Vue Mois calendrier ou vue applette
278
 
279 alexandre_ 279
	if ((!isset($_GET['id_fiche']) && $type == 'calendrier') || ($type == 'calendrier_applette')){
290 alexandre_ 280
//		trigger_error('ICI', E_USER_NOTICE);
30 ddelon 281
		// Recherche evenement de la periode selectionnée
279 alexandre_ 282
		$ts_jour_fin_mois = $month->nextMonth('timestamp');
283
		$ts_jour_debut_mois = $month->thisMonth('timestamp');;
419 jpm 284
	    $requete_evenements = 	"SELECT DISTINCT bf_id_fiche, bf_titre, bf_lieu_evenement, ".
285
	    						"	DAY(bf_date_debut_evenement) AS bf_jour_debut_evenement, bf_date_debut_evenement, ".
286
	    						"	bf_date_fin_evenement, bf_description, bn_id_nature ".
185 jp_milcent 287
								"FROM bazar_fiche, bazar_nature ".
279 alexandre_ 288
								"WHERE bf_date_debut_evenement < '".date('Y-m-d', $ts_jour_fin_mois)."' ".
289
								"AND bf_date_fin_evenement >= '".date('Y-m-d', $ts_jour_debut_mois)."' ".
185 jp_milcent 290
								"AND bf_ce_nature = bn_id_nature ".
419 jpm 291
								"AND bn_id_nature IN (".$cal_num_annonce.") ".
263 alexandre_ 292
								"AND bf_statut_fiche = 1 ".
293
								"ORDER BY bf_jour_debut_evenement";
225 neiluj 294
 
30 ddelon 295
	   	$resultat_evenement = $db->query($requete_evenements);
225 neiluj 296
 
279 alexandre_ 297
	    (DB::isError($resultat_evenement)) ? trigger_error(BOG_afficherErreurSql(__FILE__, __LINE__, $resultat_evenement->getMessage(), $requete_evenements), E_USER_WARNING) : '';
298
 
299
		$selection = array();
300
		$evenements = array();
301
		$annee = date('Y', $curStamp);
302
		$mois = date('m', $curStamp);
303
		$tablo_jours = array();
30 ddelon 304
	    while ($ligne_evenements = $resultat_evenement->fetchRow(DB_FETCHMODE_OBJECT)) {
279 alexandre_ 305
			list($annee_debut, $mois_debut, $jour_debut) = explode('-', $ligne_evenements->bf_date_debut_evenement);
306
			list($annee_fin, $mois_fin, $jour_fin) = explode('-', $ligne_evenements->bf_date_fin_evenement);
30 ddelon 307
 
279 alexandre_ 308
			$Calendrier = new Calendar($annee_debut, $mois_debut, $jour_debut);
309
			$ts_jour_suivant = $Calendrier->thisDay('timestamp');
310
			$ts_jour_fin = mktime(0,0,0,$mois_fin, $jour_fin, $annee_fin);
30 ddelon 311
 
279 alexandre_ 312
	    	if ($ts_jour_suivant < $ts_jour_fin) {
313
				//echo "$ts_jour_suivant-";
314
				$naviguer = true;
315
				while ($naviguer) {
316
					// Si le jours suivant est inférieur à la date de fin, on continue...
317
					if ($ts_jour_suivant <= $ts_jour_fin) {
318
						// Si le jours suivant est inférieur à la date de fin du mois courrant, on continue...
319
						if ($ts_jour_suivant < $ts_jour_fin_mois) {
320
							$cle_j = date('Y-m-d', $ts_jour_suivant);
321
							if (!isset($tablo_jours[$cle_j])) {
322
								$tablo_jours[$cle_j]['Calendar_Day'] = new Calendar_Day(date('Y', $ts_jour_suivant),date('m', $ts_jour_suivant), date('d', $ts_jour_suivant));
323
								$tablo_jours[$cle_j]['Diary_Event'] = new DiaryEvent($tablo_jours[$cle_j]['Calendar_Day']);
324
							}
325
							$tablo_jours[$cle_j]['Diary_Event']->setEntry($ligne_evenements);
326
 
327
							$ts_jour_suivant = $Calendrier->nextDay('timestamp');
328
							//echo "ici$ts_jour_suivant-";
329
							$Calendrier->setTimestamp($ts_jour_suivant);
330
							//echo "la".$Calendrier->thisDay('timestamp')."-";
331
						} else {
332
							$naviguer = false;
333
						}
334
					} else {
335
						$naviguer = false;
336
					}
337
				}
338
	    	} else {
339
				$curday_ymd = $annee.$mois.$ligne_evenements->bf_jour_debut_evenement;
379 jp_milcent 340
				$cle_j = $annee.'-'.$mois.'-'.sprintf('%02s', $ligne_evenements->bf_jour_debut_evenement);
279 alexandre_ 341
				if (!isset($tablo_jours[$cle_j])) {
342
					$tablo_jours[$cle_j]['Calendar_Day'] = new Calendar_Day($annee, $mois, $ligne_evenements->bf_jour_debut_evenement);
343
					$tablo_jours[$cle_j]['Diary_Event'] = new DiaryEvent($tablo_jours[$cle_j]['Calendar_Day']);
344
				}
345
				$tablo_jours[$cle_j]['Diary_Event']->setEntry($ligne_evenements);
346
	    	}
30 ddelon 347
		}
279 alexandre_ 348
		// Add the decorator to the selection
349
		foreach ($tablo_jours as $jour) {
419 jpm 350
			$selection[] = $jour['Diary_Event'];
279 alexandre_ 351
		}
419 jpm 352
 
30 ddelon 353
		// Affichage Calendrier
354
		$month->build($selection);
279 alexandre_ 355
		if ($type == 'calendrier') {
356
			$retour.= '<table class="calendrier">'.
357
				'<colgroup>'.
358
					'<col class="cal_lundi"/>'.
359
					'<col class="cal_mardi"/>'.
360
					'<col class="cal_mercredi"/>'.
361
					'<col class="cal_jeudi"/>'.
362
					'<col class="cal_vendredi"/>'.
363
					'<col class="cal_samedi"/>'.
364
					'<col class="cal_dimanche"/>'.
365
				'</colgroup>'.
366
				'<thead>'.
367
			 	"<tr>
42 ddelon 368
 
369
			  <th> ". BAZ_LUNDI ."</th>
370
			  <th> ". BAZ_MARDI ."</th>
371
			  <th> ". BAZ_MERCREDI ."</th>
372
			  <th> ". BAZ_JEUDI ."</th>
373
			  <th> ". BAZ_VENDREDI ."</th>
374
			  <th> ". BAZ_SAMEDI ."</th>
375
			  <th> ". BAZ_DIMANCHE ."</th>
376
			 </tr>
279 alexandre_ 377
			 ".'</thead>'.'<tbody>';
378
		} else {
379
			$retour.= '<table class="calendrier_applette">'.
380
				'<colgroup>'.
381
					'<col class="cal_lundi"/>'.
382
					'<col class="cal_mardi"/>'.
383
					'<col class="cal_mercredi"/>'.
384
					'<col class="cal_jeudi"/>'.
385
					'<col class="cal_vendredi"/>'.
386
					'<col class="cal_samedi"/>'.
387
					'<col class="cal_dimanche"/>'.
388
				'</colgroup>'.
389
				'<thead>'.
390
			 "<tr>
42 ddelon 391
 
392
			  <th> ". BAZ_LUNDI_COURT ."</th>
393
			  <th> ". BAZ_MARDI_COURT ."</th>
394
			  <th> ". BAZ_MERCREDI_COURT ."</th>
395
			  <th> ". BAZ_JEUDI_COURT ."</th>
396
			  <th> ". BAZ_VENDREDI_COURT ."</th>
397
			  <th> ". BAZ_SAMEDI_COURT ."</th>
398
			  <th> ". BAZ_DIMANCHE_COURT ."</th>
399
			 </tr>
279 alexandre_ 400
			 ".'</thead>'.'<tbody>';
42 ddelon 401
		}
30 ddelon 402
 
403
		$todayStamp=time();
404
		$today_ymd=date('Ymd',$todayStamp);
279 alexandre_ 405
 
30 ddelon 406
		// Other month : mois
407
		while ($day = $month->fetch() ) {
279 alexandre_ 408
			$dayStamp = $day->thisDay(true);
409
			$day_ymd = date('Ymd',$dayStamp);
410
			if ( $day->isEmpty() ) {
411
				$class = "cal_ma other_month";
412
			} else {
413
				if (($day_ymd < $today_ymd)) {
414
					$class= "cal_mp previous_month";
415
				} else {
416
					 if ($day_ymd == $today_ymd) {
417
					 	$class= "cal_jc current_day";
418
					 } else {
419
						$class="cal_mc current_month";
420
					 }
30 ddelon 421
				}
279 alexandre_ 422
			}
30 ddelon 423
 
279 alexandre_ 424
			$url->addQueryString ('y', date('Y',$dayStamp));
425
			$url->addQueryString ('m', date('n',$dayStamp));
426
			$url->addQueryString ('d', date('j',$dayStamp));
427
			$link = $url->getUrl();
428
 
429
			// isFirst() to find start of week
430
			if ($day->isFirst()) {
431
				$retour.= ( "<tr>\n" );
432
			}
433
			if ($type == 'calendrier') {
434
				$retour.= "<td class=\"".$class."\">".'<span class="cal_j">'.$day->thisDay().'</span>'."\n";
435
				if ($day->isSelected() ) {
436
					$evenements = $day->getEntry();
437
					$evenements_nbre = count($evenements);
438
					$evenemt_xhtml = '';
439
					while ($ligne_evenement = array_pop($evenements)) {
440
						$id_fiches = array();
441
						$id_fiches[] = $ligne_evenement->bf_id_fiche;
42 ddelon 442
						$url->addQueryString ('id_fiches',$id_fiches);
30 ddelon 443
						$link = $url->getUrl();
279 alexandre_ 444
 
445
						if (!isset($_GET['tt']) || (isset($_GET['tt']) && $_GET['tt'] == '1')) {
446
							$titre_taille = strlen($ligne_evenement->bf_titre);
447
							$titre = ($titre_taille > 20)?substr($ligne_evenement->bf_titre, 0, 20).'...':$ligne_evenement->bf_titre;
448
						} else {
449
							$titre = $ligne_evenement->bf_titre;
450
						}
419 jpm 451
						$evenemt_xhtml .= '<li class="tooltip nature_'.$ligne_evenement->bn_id_nature.'" title="'.str_replace('"', '\'', $ligne_evenement->bf_titre).'"><a class="cal_evenemt" href="'.$link.'">'.$titre.'</a></li>'."\n";
42 ddelon 452
						$url->removeQueryString ('id_fiches');
30 ddelon 453
					}
279 alexandre_ 454
					if ($evenements_nbre > 0) {
455
						$retour .= '<ul class="cal_evenemt_liste">';
456
						$retour .= $evenemt_xhtml;
457
						$retour .= '</ul>';
458
					}
30 ddelon 459
				}
279 alexandre_ 460
			} else {
297 alexandre_ 461
				$lien_date= "<td class=\"".$class."\">".$day->thisDay();
279 alexandre_ 462
				if ($day->isSelected() ) {
419 jpm 463
					$evenements = $day->getEntry();
464
					$id_fiches = array();
465
					$info_fiches = null;
466
					while ($ligne_evenement = array_pop($evenements)) {
467
						$id_fiches[] = $ligne_evenement->bf_id_fiche;
468
						$info_fiches .= '&rArr; '.str_replace('"', '\'', $ligne_evenement->bf_titre)."\n";
279 alexandre_ 469
					}
419 jpm 470
					$url->addQueryString('id_fiches', $id_fiches);
279 alexandre_ 471
					$link = $url->getUrl();
419 jpm 472
					$lien_date = '<td class="'.$class.'"><a href="'.$link.'" class="tooltip" title="'.$info_fiches.'">'.$day->thisDay()."</a>\n";
473
					$url->removeQueryString('id_fiches');
279 alexandre_ 474
				}
419 jpm 475
				$retour .= $lien_date;
30 ddelon 476
			}
279 alexandre_ 477
			$retour.= ( "</td>\n" );
30 ddelon 478
 
279 alexandre_ 479
			// isLast() to find end of week
480
			if ( $day->isLast() ) {
481
				$retour.= ( "</tr>\n" );
482
			}
42 ddelon 483
		}
279 alexandre_ 484
			$retour.= "</tbody></table>";
485
	}
486
	$retour.= '<script type="text/javascript">//<![CDATA['."\n".$script.'//]]></script>'."\n";
487
	// Vue detail
488
 
489
	if ((isset($_GET['id_fiches']))) {
490
		// Ajout d'un titre pour la page avec la date
388 alexandre_ 491
		$jours = array ('dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi') ;
279 alexandre_ 492
		$mois = array ('janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre',
493
						'octobre', 'novembre', 'décembre') ;
494
		$timestamp = strtotime ($_GET['y'].'/'.$_GET['m'].'/'.$_GET['d']) ;
225 neiluj 495
 
279 alexandre_ 496
		$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_NAVIGATION'] = '';
497
		$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_TETE'] = '';
498
		$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_CORPS'] = '<h1>'.$jours[date('w', $timestamp)].
499
						' '.$_GET['d'].' '.$mois[$_GET['m']-1].' '.$_GET['y'].'</h1>' ;
422 jpm 500
		$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_CORPS'] .= baz_voir_fiches(1,$_GET['id_fiches'] );
297 alexandre_ 501
 
279 alexandre_ 502
		$GLOBALS['_GEN_commun']['info_menu'] = '';
297 alexandre_ 503
 
504
		// Un lien pour retourner au calendrier
505
		$url->removeQueryString('id_fiches');
506
		$url->removeQueryString('y');
507
		$url->removeQueryString('m');
508
		$url->removeQueryString('d');
509
		$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_PIED'] = '<div class="retour"><a href="'.$url->getURL().'">Retour au calendrier</a></div>';
279 alexandre_ 510
	}
511
 
512
	// Nettoyage de l'url
513
	$url->removeQueryString('id_fiches');
514
	$url->removeQueryString('y');
515
	$url->removeQueryString('m');
516
	$url->removeQueryString('d');
297 alexandre_ 517
 
518
 
279 alexandre_ 519
	return $retour;
520
}
30 ddelon 521
?>