Subversion Repositories Applications.bazar

Rev

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