Subversion Repositories Applications.bazar

Rev

Rev 114 | Rev 147 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 114 Rev 137
1
<?php
1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.1                                                                                      |
4
// | PHP version 4.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
7
// +------------------------------------------------------------------------------------------------------+
8
// | This library is free software; you can redistribute it and/or                                        |
8
// | This library is free software; you can redistribute it and/or                                        |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
10
// | License as published by the Free Software Foundation; either                                         |
10
// | License as published by the Free Software Foundation; either                                         |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
12
// |                                                                                                      |
12
// |                                                                                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
16
// | Lesser General Public License for more details.                                                      |
16
// | Lesser General Public License for more details.                                                      |
17
// |                                                                                                      |
17
// |                                                                                                      |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
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                                  |
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                            |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
21
// +------------------------------------------------------------------------------------------------------+
22
// CVS : $Id: bazar.fonct.cal.php,v 1.8 2006-04-10 13:51:11 alexandre_tb Exp $
22
// CVS : $Id: bazar.fonct.cal.php,v 1.9 2006-07-04 13:59:01 alexandre_tb Exp $
23
/**
23
/**
24
*
24
*
25
* Fonctions calendrier du module bazar
25
* Fonctions calendrier du module bazar
26
*
26
*
27
*@package bazar
27
*@package bazar
28
//Auteur original :
28
//Auteur original :
29
*@author        David Delon <david.delon@clapas.net>
29
*@author        David Delon <david.delon@clapas.net>
30
//Autres auteurs :
30
//Autres auteurs :
31
*@copyright     Tela-Botanica 2000-2004
31
*@copyright     Tela-Botanica 2000-2004
32
*@version       $Revision: 1.8 $ $Date: 2006-04-10 13:51:11 $
32
*@version       $Revision: 1.9 $ $Date: 2006-07-04 13:59:01 $
33
// +------------------------------------------------------------------------------------------------------+
33
// +------------------------------------------------------------------------------------------------------+
34
*/
34
*/
35
 
35
 
36
// +------------------------------------------------------------------------------------------------------+
36
// +------------------------------------------------------------------------------------------------------+
37
// |                                            ENTETE du PROGRAMME                                       |
37
// |                                            ENTETE du PROGRAMME                                       |
38
// +------------------------------------------------------------------------------------------------------+
38
// +------------------------------------------------------------------------------------------------------+
39
 
39
 
40
require_once PAP_CHEMIN_RACINE.'api/pear/Calendar/Month/Weekdays.php';
40
require_once PAP_CHEMIN_RACINE.'api/pear/Calendar/Month/Weekdays.php';
41
require_once PAP_CHEMIN_RACINE.'api/pear/Calendar/Day.php';
41
require_once PAP_CHEMIN_RACINE.'api/pear/Calendar/Day.php';
42
require_once PAP_CHEMIN_RACINE.'api/pear/Calendar/Decorator.php'; 
42
require_once PAP_CHEMIN_RACINE.'api/pear/Calendar/Decorator.php'; 
43
 
43
 
44
 
44
 
45
// +------------------------------------------------------------------------------------------------------+
45
// +------------------------------------------------------------------------------------------------------+
46
// |                                           LISTE de FONCTIONS                                         |
46
// |                                           LISTE de FONCTIONS                                         |
47
// +------------------------------------------------------------------------------------------------------+
47
// +------------------------------------------------------------------------------------------------------+
48
 
48
 
49
 
49
 
50
// Classe Utilitaire pour Calendrier
50
// Classe Utilitaire pour Calendrier
51
 
51
 
52
class DiaryEvent extends Calendar_Decorator {
52
class DiaryEvent extends Calendar_Decorator {
53
	var $entry=array();
53
	var $entry=array();
54
	function DiaryEvent($calendar) {
54
	function DiaryEvent($calendar) {
55
		Calendar_Decorator::Calendar_Decorator($calendar);
55
		Calendar_Decorator::Calendar_Decorator($calendar);
56
	}
56
	}
57
	function setEntry($entry) {
57
	function setEntry($entry) {
58
		$this->entry[]=$entry;
58
		$this->entry[]=$entry;
59
		
59
		
60
	}
60
	}
61
	function getEntry() {
61
	function getEntry() {
62
		return $this->entry;
62
		return $this->entry;
63
	}
63
	}
64
} 
64
} 
65
 
65
 
66
 
66
 
67
// $type : calendrier
67
// $type : calendrier
68
// $type : calendrier_appplette
68
// $type : calendrier_appplette
69
 
69
 
70
function GestionAffichageCalendrier($type='calendrier') {
70
function GestionAffichageCalendrier($type='calendrier') {
71
	
71
	
72
	
72
	
73
	$retour='';
73
	$retour='';
74
 
74
 
75
	$url = $GLOBALS['_GEN_commun']['url'] ;
75
	$url = $GLOBALS['_GEN_commun']['url'] ;
76
	$db = &$GLOBALS['_GEN_commun']['pear_db'] ;
76
	$db = &$GLOBALS['_GEN_commun']['pear_db'] ;
77
	$auth = &$GLOBALS['_GEN_commun']['pear_auth'] ;
77
	$auth = &$GLOBALS['_GEN_commun']['pear_auth'] ;
78
	
78
	
79
	if (!isset($_GET['y'])) { 
79
	if (!isset($_GET['y'])) { 
80
		$_GET['y'] = date('Y');
80
		$_GET['y'] = date('Y');
81
	}
81
	}
82
	
82
	
83
	if (!isset($_GET['m'])) { 
83
	if (!isset($_GET['m'])) { 
84
		$_GET['m'] = date('m');
84
		$_GET['m'] = date('m');
85
	}
85
	}
86
	
86
	
87
	
87
	
88
	// 	Construction Mois en Cours 
88
	// 	Construction Mois en Cours 
89
	$month = new Calendar_Month_Weekdays($_GET['y'],$_GET['m']);
89
	$month = new Calendar_Month_Weekdays($_GET['y'],$_GET['m']);
90
 
90
 
91
	$curStamp=$month->getTimeStamp();
91
	$curStamp=$month->getTimeStamp();
92
	$url->addQueryString ('y', date('Y',$curStamp));
92
	$url->addQueryString ('y', date('Y',$curStamp));
93
	$url->addQueryString ('m', date('n',$curStamp));
93
	$url->addQueryString ('m', date('n',$curStamp));
94
	$url->addQueryString ('d', date('j',$curStamp));
94
	$url->addQueryString ('d', date('j',$curStamp));
95
	$cur = $url->getUrl();
95
	$cur = $url->getUrl();
96
	
96
	
97
	// Navigation 
97
	// Navigation 
98
	$prevStamp = $month->prevMonth(true);
98
	$prevStamp = $month->prevMonth(true);
99
	$url->addQueryString ('y', date('Y',$prevStamp));
99
	$url->addQueryString ('y', date('Y',$prevStamp));
100
	$url->addQueryString ('m', date('n',$prevStamp));
100
	$url->addQueryString ('m', date('n',$prevStamp));
101
	$url->addQueryString ('d', date('j',$prevStamp));
101
	$url->addQueryString ('d', date('j',$prevStamp));
102
	$prev = $url->getUrl();
102
	$prev = $url->getUrl();
103
	$nextStamp = $month->nextMonth(true);
103
	$nextStamp = $month->nextMonth(true);
104
	$url->addQueryString ('y', date('Y',$nextStamp));
104
	$url->addQueryString ('y', date('Y',$nextStamp));
105
	$url->addQueryString ('m', date('n',$nextStamp));
105
	$url->addQueryString ('m', date('n',$nextStamp));
106
	$url->addQueryString ('d', date('j',$nextStamp));
106
	$url->addQueryString ('d', date('j',$nextStamp));
107
	$next = $url->getUrl();
107
	$next = $url->getUrl();
108
 
108
 
109
	$fr_month=array("1"=>BAZ_JANVIER,"2"=>BAZ_FEVRIER,"3"=>BAZ_MARS,"4"=>BAZ_AVRIL,"5"=>BAZ_MAI,"6"=>BAZ_JUIN,"7"=>BAZ_JUILLET,"8"=>BAZ_AOUT,"9"=>BAZ_SEPTEMBRE,"10"=>BAZ_OCTOBRE,"11"=>BAZ_NOVEMBRE,"12"=>BAZ_DECEMBRE);
109
	$fr_month=array("1"=>BAZ_JANVIER,"2"=>BAZ_FEVRIER,"3"=>BAZ_MARS,"4"=>BAZ_AVRIL,"5"=>BAZ_MAI,"6"=>BAZ_JUIN,"7"=>BAZ_JUILLET,"8"=>BAZ_AOUT,"9"=>BAZ_SEPTEMBRE,"10"=>BAZ_OCTOBRE,"11"=>BAZ_NOVEMBRE,"12"=>BAZ_DECEMBRE);
110
 
110
 
111
	$retour.= "<div class=\"navi\">";
111
	$retour.= "<div class=\"navi\">";
112
	$retour.= "<a href=\"".$prev."\"> &lt;&lt; </a>"; 
112
	$retour.= "<a href=\"".$prev."\"> &lt;&lt; </a>"; 
113
 
113
 
114
	$retour.= "&nbsp;&nbsp;";
114
	$retour.= "&nbsp;&nbsp;";
115
	$retour.= "<a href=\"".$cur;
115
	$retour.= "<a href=\"".$cur;
116
	$retour.= "\"> ";
116
	$retour.= "\"> ";
117
	$retour.= $fr_month[(date('n',$curStamp))]; 
117
	$retour.= $fr_month[(date('n',$curStamp))]; 
118
	$retour.= "&nbsp;";
118
	$retour.= "&nbsp;";
119
	$retour.= (date('Y',$curStamp));
119
	$retour.= (date('Y',$curStamp));
120
	$retour.= "</a>";
120
	$retour.= "</a>";
121
	$retour.= "&nbsp;&nbsp;";
121
	$retour.= "&nbsp;&nbsp;";
122
	$retour.= "<a href=\"".$next."\"> &gt;&gt; </a>";
122
	$retour.= "<a href=\"".$next."\"> &gt;&gt; </a>";
123
 
123
 
124
	$retour.= "</div>";
124
	$retour.= "</div>";
125
 
125
 
126
	$retour.="<br></br>";
126
	$retour.="<br></br>";
127
 
127
 
128
	// Vue Mois calendrier ou vue applette
128
	// Vue Mois calendrier ou vue applette
129
		
129
		
130
	if ((!isset($_GET['id_fiche']) && ($type=='calendrier')) || ($type=='calendrier_applette')){
130
	if ((!isset($_GET['id_fiche']) && ($type=='calendrier')) || ($type=='calendrier_applette')){
131
			
131
			
132
		// Recherche evenement de la periode selectionnée 
132
		// Recherche evenement de la periode selectionnée 
133
		
133
		
134
	 	// TODO : Selectionner element du mois en cours 
134
	 	// TODO : Selectionner element du mois en cours 
135
	 	
135
	 	
136
	    $requete_evenements = "SELECT DISTINCT bf_id_fiche, bf_titre, bf_lieu_evenement, day(bf_date_debut_evenement) as bf_jour_debut_evenement , bf_date_fin_evenement, bf_description FROM bazar_fiche, bazar_nature where year(bf_date_debut_evenement) =".
136
	    $requete_evenements = "SELECT DISTINCT bf_id_fiche, bf_titre, bf_lieu_evenement, day(bf_date_debut_evenement) as bf_jour_debut_evenement , bf_date_fin_evenement, bf_description FROM bazar_fiche, bazar_nature where year(bf_date_debut_evenement) =".
137
	    						date('Y',$curStamp)." and month(bf_date_debut_evenement)=".
137
	    						date('Y',$curStamp)." and month(bf_date_debut_evenement)=".
138
	    						date('m',$curStamp)." and bf_ce_nature=bn_id_nature and bn_id_nature='3'";
138
	    						date('m',$curStamp)." and bf_ce_nature=bn_id_nature and bn_id_nature='".BAZ_NUM_ANNONCE_CALENDRIER."'";
139
	            
139
	            
140
	            
140
	            
141
	   	$resultat_evenement = $db->query($requete_evenements);
141
	   	$resultat_evenement = $db->query($requete_evenements);
142
	   	
142
	   	
143
	    (DB::isError($resultat_evenement))
143
	    (DB::isError($resultat_evenement))
144
	    ? die(BOG_afficherErreurSql(__FILE__, __LINE__, $resultat_evenement->getMessage(), $requete_evenements))
144
	    ? die(BOG_afficherErreurSql(__FILE__, __LINE__, $resultat_evenement->getMessage(), $requete_evenements))
145
	    : '';
145
	    : '';
146
	
146
	
147
		$calcom="";
147
		$calcom="";
148
		
148
		
149
		$selection=array();
149
		$selection=array();
150
		$evenements=array();
150
		$evenements=array();
151
		 
151
		 
152
		$prev_curday_ymd=0;
152
		$prev_curday_ymd=0;
153
		
153
		
154
	    while ($ligne_evenements = $resultat_evenement->fetchRow(DB_FETCHMODE_OBJECT)) {
154
	    while ($ligne_evenements = $resultat_evenement->fetchRow(DB_FETCHMODE_OBJECT)) {
155
	    	
155
	    	
156
			$curday_ymd=date('Ym',$curStamp).$ligne_evenements->bf_jour_debut_evenement;
156
			$curday_ymd=date('Ym',$curStamp).$ligne_evenements->bf_jour_debut_evenement;
157
			if ($curday_ymd!=$prev_curday_ymd) {
157
			if ($curday_ymd!=$prev_curday_ymd) {
158
				$Day = new Calendar_Day(date('Y',$curStamp),date('m',$curStamp), $ligne_evenements->bf_jour_debut_evenement);
158
				$Day = new Calendar_Day(date('Y',$curStamp),date('m',$curStamp), $ligne_evenements->bf_jour_debut_evenement);
159
				$DiaryEvent = new DiaryEvent($Day);
159
				$DiaryEvent = new DiaryEvent($Day);
160
				$prev_curday_ymd=$curday_ymd;
160
				$prev_curday_ymd=$curday_ymd;
161
			}
161
			}
162
			
162
			
163
			$DiaryEvent->setEntry($ligne_evenements);
163
			$DiaryEvent->setEntry($ligne_evenements);
164
			
164
			
165
			// Add the decorator to the selection
165
			// Add the decorator to the selection
166
			$selection[] = $DiaryEvent;
166
			$selection[] = $DiaryEvent;
167
				
167
				
168
		}
168
		}
169
			
169
			
170
		// Affichage Calendrier
170
		// Affichage Calendrier
171
		
171
		
172
		
172
		
173
		$month->build($selection);
173
		$month->build($selection);
174
	
174
	
175
		if ($type=='calendrier') {
175
		if ($type=='calendrier') {
176
			$retour.= "<table class=\"calendar\">
176
			$retour.= "<table class=\"calendar\">
177
			 <tr>
177
			 <tr>
178
			
178
			
179
			  <th> ". BAZ_LUNDI ."</th>
179
			  <th> ". BAZ_LUNDI ."</th>
180
			  <th> ". BAZ_MARDI ."</th>
180
			  <th> ". BAZ_MARDI ."</th>
181
			  <th> ". BAZ_MERCREDI ."</th>
181
			  <th> ". BAZ_MERCREDI ."</th>
182
			  <th> ". BAZ_JEUDI ."</th>
182
			  <th> ". BAZ_JEUDI ."</th>
183
			  <th> ". BAZ_VENDREDI ."</th>
183
			  <th> ". BAZ_VENDREDI ."</th>
184
			  <th> ". BAZ_SAMEDI ."</th>
184
			  <th> ". BAZ_SAMEDI ."</th>
185
			  <th> ". BAZ_DIMANCHE ."</th>
185
			  <th> ". BAZ_DIMANCHE ."</th>
186
			 </tr>
186
			 </tr>
187
			 ";
187
			 ";
188
		}
188
		}
189
		else {
189
		else {
190
			$retour.= "<table class=\"calendar\">
190
			$retour.= "<table class=\"calendar\">
191
			 <tr>
191
			 <tr>
192
			
192
			
193
			  <th> ". BAZ_LUNDI_COURT ."</th>
193
			  <th> ". BAZ_LUNDI_COURT ."</th>
194
			  <th> ". BAZ_MARDI_COURT ."</th>
194
			  <th> ". BAZ_MARDI_COURT ."</th>
195
			  <th> ". BAZ_MERCREDI_COURT ."</th>
195
			  <th> ". BAZ_MERCREDI_COURT ."</th>
196
			  <th> ". BAZ_JEUDI_COURT ."</th>
196
			  <th> ". BAZ_JEUDI_COURT ."</th>
197
			  <th> ". BAZ_VENDREDI_COURT ."</th>
197
			  <th> ". BAZ_VENDREDI_COURT ."</th>
198
			  <th> ". BAZ_SAMEDI_COURT ."</th>
198
			  <th> ". BAZ_SAMEDI_COURT ."</th>
199
			  <th> ". BAZ_DIMANCHE_COURT ."</th>
199
			  <th> ". BAZ_DIMANCHE_COURT ."</th>
200
			 </tr>
200
			 </tr>
201
			 ";
201
			 ";
202
		}
202
		}
203
		
203
		
204
			
204
			
205
		$todayStamp=time();
205
		$todayStamp=time();
206
		
206
		
207
		$today_ymd=date('Ymd',$todayStamp);
207
		$today_ymd=date('Ymd',$todayStamp);
208
	
208
	
209
		// Other month : mois 
209
		// Other month : mois 
210
		//
210
		//
211
		
211
		
212
		while ($day = $month->fetch() ) {
212
		while ($day = $month->fetch() ) {
213
				
213
				
214
				$dayStamp = $day->thisDay(true);
214
				$dayStamp = $day->thisDay(true);
215
				$day_ymd=date('Ymd',$dayStamp);
215
				$day_ymd=date('Ymd',$dayStamp);
216
				
216
				
217
				if ( $day->isEmpty() ) {
217
				if ( $day->isEmpty() ) {
218
						$class = "other_month";
218
						$class = "other_month";
219
				}
219
				}
220
				else {
220
				else {
221
					if (($day_ymd < $today_ymd)) {
221
					if (($day_ymd < $today_ymd)) {
222
						$class= "previous_month";
222
						$class= "previous_month";
223
					}
223
					}
224
					else {
224
					else {
225
						 if ($day_ymd == $today_ymd) {
225
						 if ($day_ymd == $today_ymd) {
226
						 	$class= "current_day";
226
						 	$class= "current_day";
227
						 }
227
						 }
228
						 else {
228
						 else {
229
							$class="current_month";
229
							$class="current_month";
230
						 }
230
						 }
231
					}
231
					}
232
				}
232
				}
233
				
233
				
234
				$url->addQueryString ('y', date('Y',$dayStamp));
234
				$url->addQueryString ('y', date('Y',$dayStamp));
235
				$url->addQueryString ('m', date('n',$dayStamp));
235
				$url->addQueryString ('m', date('n',$dayStamp));
236
				$url->addQueryString ('d', date('j',$dayStamp));
236
				$url->addQueryString ('d', date('j',$dayStamp));
237
				
237
				
238
				$link = $url->getUrl();
238
				$link = $url->getUrl();
239
			
239
			
240
				// isFirst() to find start of week
240
				// isFirst() to find start of week
241
				if ($day->isFirst())
241
				if ($day->isFirst())
242
					$retour.= ( "<tr>\n" );
242
					$retour.= ( "<tr>\n" );
243
				
243
				
244
				//$retour.= ( "<td class=\"".$class."\"><a href=\"".$link."\">".$day->thisDay()."</a>\n" );
244
				//$retour.= ( "<td class=\"".$class."\"><a href=\"".$link."\">".$day->thisDay()."</a>\n" );
245
				
245
				
246
				if ($type=='calendrier') {
246
				if ($type=='calendrier') {
247
					$retour.= "<td class=\"".$class."\">".$day->thisDay()."\n";
247
					$retour.= "<td class=\"".$class."\">".$day->thisDay()."\n";
248
					if ($day->isSelected() ) {
248
					if ($day->isSelected() ) {
249
						$evenements=$day->getEntry();
249
						$evenements=$day->getEntry();
250
						while ($ligne_evenement=array_pop($evenements)) {
250
						while ($ligne_evenement=array_pop($evenements)) {
251
							$id_fiches=array();
251
							$id_fiches=array();
252
							$id_fiches[]=$ligne_evenement->bf_id_fiche;
252
							$id_fiches[]=$ligne_evenement->bf_id_fiche;
253
							$url->addQueryString ('id_fiches',$id_fiches);
253
							$url->addQueryString ('id_fiches',$id_fiches);
254
							$link = $url->getUrl();
254
							$link = $url->getUrl();
255
							$retour.= "<a href=\"".$link."\">".$ligne_evenement->bf_titre."</a>\n";
255
							$retour.= "<a href=\"".$link."\">".$ligne_evenement->bf_titre."</a>\n";
256
							$url->removeQueryString ('id_fiches');
256
							$url->removeQueryString ('id_fiches');
257
						}
257
						}
258
					}
258
					}
259
				}
259
				}
260
				else {
260
				else {
261
					$lien_date= "<td class=\"".$class."\">".$day->thisDay()."\n";
261
					$lien_date= "<td class=\"".$class."\">".$day->thisDay()."\n";
262
					if ($day->isSelected() ) {
262
					if ($day->isSelected() ) {
263
						$evenements=$day->getEntry();
263
						$evenements=$day->getEntry();
264
						$id_fiches=array();
264
						$id_fiches=array();
265
						while ($ligne_evenement=array_pop($evenements)) {
265
						while ($ligne_evenement=array_pop($evenements)) {
266
							$id_fiches[]=$ligne_evenement->bf_id_fiche;
266
							$id_fiches[]=$ligne_evenement->bf_id_fiche;
267
						}
267
						}
268
						$url->addQueryString ('id_fiches',$id_fiches);
268
						$url->addQueryString ('id_fiches',$id_fiches);
269
						$link = $url->getUrl();
269
						$link = $url->getUrl();
270
						$lien_date= "<td class=\"".$class."\"><a href=\"".$link."\">".$day->thisDay()."</a>\n";
270
						$lien_date= "<td class=\"".$class."\"><a href=\"".$link."\">".$day->thisDay()."</a>\n";
271
						$url->removeQueryString ('id_fiches');
271
						$url->removeQueryString ('id_fiches');
272
					}
272
					}
273
					$retour.=$lien_date;
273
					$retour.=$lien_date;
274
				}
274
				}
275
				
275
				
276
				$retour.= ( "</td>\n" );
276
				$retour.= ( "</td>\n" );
277
				
277
				
278
				// isLast() to find end of week
278
				// isLast() to find end of week
279
				if ( $day->isLast() )
279
				if ( $day->isLast() )
280
					$retour.= ( "</tr>\n" );
280
					$retour.= ( "</tr>\n" );
281
			}
281
			}
282
		
282
		
283
			$retour.= "</table>";
283
			$retour.= "</table>";
284
			
284
			
285
			
285
			
286
		}
286
		}
287
		
287
		
288
		// Vue detail
288
		// Vue detail
289
		
289
		
290
		if ((isset($_GET['id_fiches']))) {
290
		if ((isset($_GET['id_fiches']))) {
291
				// Ajout des styles du bazar
291
				// Ajout des styles du bazar
292
				if (defined('PAP_VERSION')) { //si on est dans Papyrus
292
				if (defined('PAP_VERSION')) { //si on est dans Papyrus
293
					GEN_stockerStyleExterne( 'bazar_interne', 'client/bazar/bazar.interne.css');
293
					GEN_stockerStyleExterne( 'bazar_interne', 'client/bazar/bazar.interne.css');
294
				}
294
				}
295
			
295
			
296
				// Ajout d'un titre pour la page avec la date
296
				// Ajout d'un titre pour la page avec la date
297
				$jours = array ('lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi', 'dimanche') ;
297
				$jours = array ('lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi', 'dimanche') ;
298
				$mois = array ('janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre',
298
				$mois = array ('janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre',
299
								'octobre', 'novembre', 'décembre') ;
299
								'octobre', 'novembre', 'décembre') ;
300
				$timestamp = strtotime ($_GET['y'].'/'.$_GET['m'].'/'.$_GET['d']) ;
300
				$timestamp = strtotime ($_GET['y'].'/'.$_GET['m'].'/'.$_GET['d']) ;
301
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_CORPS'] = '<h1>'.$jours[date('w', $timestamp)].
301
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_CORPS'] = '<h1>'.$jours[date('w', $timestamp)].
302
								' '.$_GET['d'].' '.$mois[$_GET['m']].' '.$_GET['y'].'</h1>' ;
302
								' '.$_GET['d'].' '.$mois[$_GET['m']].' '.$_GET['y'].'</h1>' ;
303
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_CORPS'] .= baz_voir_fiches(0,$_GET['id_fiches'] );
303
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_CORPS'] .= baz_voir_fiches(0,$_GET['id_fiches'] );
304
		}
304
		}
305
			
305
			
306
		return $retour;
306
		return $retour;
307
		
307
		
308
	}
308
	}
309
 
309
 
310
?>
310
?>