Subversion Repositories Applications.bazar

Rev

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

Rev 205 Rev 208
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.13 2007-03-08 15:12:13 jp_milcent Exp $
22
// CVS : $Id: bazar.fonct.cal.php,v 1.14 2007-03-14 18:14:42 jp_milcent 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.13 $ $Date: 2007-03-08 15:12:13 $
32
*@version       $Revision: 1.14 $ $Date: 2007-03-14 18:14:42 $
33
// +------------------------------------------------------------------------------------------------------+
33
// +------------------------------------------------------------------------------------------------------+
34
*/
34
*/
35
 
35
 
36
// +------------------------------------------------------------------------------------------------------+
36
// +------------------------------------------------------------------------------------------------------+
37
// |                                            ENTETE du PROGRAMME                                       |
37
// |                                            ENTETE du PROGRAMME                                       |
38
// +------------------------------------------------------------------------------------------------------+
38
// +------------------------------------------------------------------------------------------------------+
39
require_once PAP_CHEMIN_RACINE.'api/pear/Calendar/Month/Weekdays.php';
39
require_once PAP_CHEMIN_RACINE.'api/pear/Calendar/Month/Weekdays.php';
40
require_once PAP_CHEMIN_RACINE.'api/pear/Calendar/Day.php';
40
require_once PAP_CHEMIN_RACINE.'api/pear/Calendar/Day.php';
41
require_once PAP_CHEMIN_RACINE.'api/pear/Calendar/Decorator.php'; 
41
require_once PAP_CHEMIN_RACINE.'api/pear/Calendar/Decorator.php'; 
42
 
42
 
43
// +------------------------------------------------------------------------------------------------------+
43
// +------------------------------------------------------------------------------------------------------+
44
// |                                           LISTE de FONCTIONS                                         |
44
// |                                           LISTE de FONCTIONS                                         |
45
// +------------------------------------------------------------------------------------------------------+
45
// +------------------------------------------------------------------------------------------------------+
46
 
46
 
47
// Classe Utilitaire pour Calendrier
47
// Classe Utilitaire pour Calendrier
48
class DiaryEvent extends Calendar_Decorator {
48
class DiaryEvent extends Calendar_Decorator {
49
	var $entry = array();
49
	var $entry = array();
50
	function DiaryEvent($calendar)
50
	function DiaryEvent($calendar)
51
	{
51
	{
52
		Calendar_Decorator::Calendar_Decorator($calendar);
52
		Calendar_Decorator::Calendar_Decorator($calendar);
53
	}
53
	}
54
	function setEntry($entry)
54
	function setEntry($entry)
55
	{
55
	{
56
		$this->entry[] = $entry;
56
		$this->entry[] = $entry;
57
		
57
		
58
	}
58
	}
59
	function getEntry()
59
	function getEntry()
60
	{
60
	{
61
		return $this->entry;
61
		return $this->entry;
62
	}
62
	}
63
} 
63
} 
64
 
64
 
65
 
65
 
66
// $type : calendrier
66
// $type : calendrier
67
// $type : calendrier_appplette
67
// $type : calendrier_appplette
68
function GestionAffichageCalendrier($type = 'calendrier') {
68
function GestionAffichageCalendrier($type = 'calendrier') {
69
	
69
	
70
	$retour='';
70
	$retour = '';
71
	
71
	
72
	$url = $GLOBALS['_GEN_commun']['url'] ;
72
	$url = $GLOBALS['_GEN_commun']['url'] ;
73
	$db =& $GLOBALS['_GEN_commun']['pear_db'] ;
73
	$db =& $GLOBALS['_GEN_commun']['pear_db'] ;
74
	$auth =& $GLOBALS['_GEN_commun']['pear_auth'] ;
74
	$auth =& $GLOBALS['_GEN_commun']['pear_auth'] ;
75
	
75
	
76
	// Nettoyage de l'url de la query string
76
	// Nettoyage de l'url de la query string
77
	$chaine_url = $url->getQueryString();
77
	$chaine_url = $url->getQueryString();
78
	$tab_params = explode('&amp;', $chaine_url);
78
	$tab_params = explode('&amp;', $chaine_url);
79
	if (count($tab_params) == 0) {
79
	if (count($tab_params) == 0) {
80
		$tab_params = explode('&', $chaine_url);
80
		$tab_params = explode('&', $chaine_url);
81
	}
81
	}
82
	foreach ($tab_params as $param) {
82
	foreach ($tab_params as $param) {
83
		$tab_parametre = explode('=', $param);
83
		$tab_parametre = explode('=', $param);
84
		$url->removeQueryString($tab_parametre[0]);
84
		$url->removeQueryString($tab_parametre[0]);
85
	}
85
	}
86
	
86
	
87
	if (!isset($_GET['y'])) { 
87
	if (!isset($_GET['y'])) { 
88
		$_GET['y'] = date('Y');
88
		$_GET['y'] = date('Y');
89
	}
89
	}
90
	
90
	
91
	if (!isset($_GET['m'])) { 
91
	if (!isset($_GET['m'])) { 
92
		$_GET['m'] = date('m');
92
		$_GET['m'] = date('m');
93
	}
93
	}
94
	
94
	
95
	// 	Construction Mois en Cours 
95
	// 	Construction Mois en Cours 
96
	$month = new Calendar_Month_Weekdays($_GET['y'],$_GET['m']);
96
	$month = new Calendar_Month_Weekdays($_GET['y'],$_GET['m']);
97
 
97
 
98
	$curStamp = $month->getTimeStamp();
98
	$curStamp = $month->getTimeStamp();
99
	$url->addQueryString('y', date('Y',$curStamp));
99
	$url->addQueryString('y', date('Y',$curStamp));
100
	$url->addQueryString('m', date('n',$curStamp));
100
	$url->addQueryString('m', date('n',$curStamp));
101
	$url->addQueryString('d', date('j',$curStamp));
101
	$url->addQueryString('d', date('j',$curStamp));
102
	$cur = $url->getUrl();
102
	$cur = $url->getUrl();
103
	
103
	
104
	// Navigation 
104
	// Navigation 
105
	$prevStamp = $month->prevMonth(true);
105
	$prevStamp = $month->prevMonth(true);
106
	$url->addQueryString('y', date('Y',$prevStamp));
106
	$url->addQueryString('y', date('Y',$prevStamp));
107
	$url->addQueryString('m', date('n',$prevStamp));
107
	$url->addQueryString('m', date('n',$prevStamp));
108
	$url->addQueryString('d', date('j',$prevStamp));
108
	$url->addQueryString('d', date('j',$prevStamp));
109
	$prev = $url->getUrl();
109
	$prev = $url->getUrl();
110
	
110
	
111
	$nextStamp = $month->nextMonth(true);
111
	$nextStamp = $month->nextMonth(true);
112
	$url->addQueryString('y', date('Y',$nextStamp));
112
	$url->addQueryString('y', date('Y',$nextStamp));
113
	$url->addQueryString('m', date('n',$nextStamp));
113
	$url->addQueryString('m', date('n',$nextStamp));
114
	$url->addQueryString('d', date('j',$nextStamp));
114
	$url->addQueryString('d', date('j',$nextStamp));
115
	$next = $url->getUrl();
115
	$next = $url->getUrl();
116
	
116
	
117
	$fr_month = array(	"1"=>BAZ_JANVIER,"2"=>BAZ_FEVRIER,"3"=>BAZ_MARS,"4"=>BAZ_AVRIL,"5"=>BAZ_MAI,"6"=>BAZ_JUIN,
117
	$fr_month = array(	"1"=>BAZ_JANVIER,"2"=>BAZ_FEVRIER,"3"=>BAZ_MARS,"4"=>BAZ_AVRIL,"5"=>BAZ_MAI,"6"=>BAZ_JUIN,
118
						"7"=>BAZ_JUILLET,"8"=>BAZ_AOUT,"9"=>BAZ_SEPTEMBRE,"10"=>BAZ_OCTOBRE,"11"=>BAZ_NOVEMBRE,"12"=>BAZ_DECEMBRE);
118
						"7"=>BAZ_JUILLET,"8"=>BAZ_AOUT,"9"=>BAZ_SEPTEMBRE,"10"=>BAZ_OCTOBRE,"11"=>BAZ_NOVEMBRE,"12"=>BAZ_DECEMBRE);
-
 
119
 
-
 
120
	// Titre
-
 
121
	if ($type=='calendrier') {
-
 
122
		// Ajout des styles du bazar
-
 
123
		if (defined('PAP_VERSION')) { //si on est dans Papyrus
-
 
124
			GEN_stockerStyleExterne( 'bazar_interne', 'client/bazar/bazar.interne.css');
-
 
125
		}
-
 
126
		$retour .= '<div id="cal_entete">';
-
 
127
		$retour .= '<span class="cal_navigation">';	
-
 
128
		$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>'; 
-
 
129
		$retour .= '&nbsp;&nbsp;';
-
 
130
		$retour .= '<span id="cal_encadre_mois_courrant"><a id="cal_mois_courrant" href="'.$cur.'">';
-
 
131
		$retour .= $fr_month[(date('n',$curStamp))]; 
-
 
132
		$retour .= '&nbsp;';
-
 
133
		$retour .= (date('Y',$curStamp));
-
 
134
		$retour .= '</a></span>';
-
 
135
		$retour .= '&nbsp;&nbsp;';
-
 
136
		$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>';
-
 
137
		$retour .= '</span>';
-
 
138
		$retour .= '<h1 id="cal_titre"><img id="cal_titre_img" src="client/bazar/images/cal_titre.png" alt="Calendrier"/></h1>';
-
 
139
		$retour .= '</div>';
119
 
140
	} else {
120
	$retour.= "<div class=\"navi\">";
141
		$retour.= "<div class=\"navi\">";
121
	$retour.= "<a href=\"".$prev."\"> &lt;&lt; </a>"; 
-
 
122
 
142
		$retour.= "<a href=\"".$prev."\"> &lt;&lt; </a>"; 
123
	$retour.= "&nbsp;&nbsp;";
143
		$retour.= "&nbsp;&nbsp;";
124
	$retour.= "<a href=\"".$cur;
144
		$retour.= "<a href=\"".$cur;
125
	$retour.= "\"> ";
145
		$retour.= "\"> ";
126
	$retour.= $fr_month[(date('n',$curStamp))]; 
146
		$retour.= $fr_month[(date('n',$curStamp))]; 
127
	$retour.= "&nbsp;";
147
		$retour.= "&nbsp;";
128
	$retour.= (date('Y',$curStamp));
148
		$retour.= (date('Y',$curStamp));
129
	$retour.= "</a>";
149
		$retour.= "</a>";
130
	$retour.= "&nbsp;&nbsp;";
150
		$retour.= "&nbsp;&nbsp;";
131
	$retour.= "<a href=\"".$next."\"> &gt;&gt; </a>";
-
 
132
 
151
		$retour.= "<a href=\"".$next."\"> &gt;&gt; </a>";
133
	$retour.= "</div>";
-
 
134
 
-
 
135
	$retour.="<br></br>";
152
		$retour.= "</div>";
136
 
153
	}
137
	// Vue Mois calendrier ou vue applette
154
	// Vue Mois calendrier ou vue applette
138
		
155
		
139
	if ((!isset($_GET['id_fiche']) && ($type=='calendrier')) || ($type=='calendrier_applette')){
156
	if ((!isset($_GET['id_fiche']) && ($type=='calendrier')) || ($type=='calendrier_applette')){
140
			
157
			
141
		// Recherche evenement de la periode selectionnée 
158
		// Recherche evenement de la periode selectionnée 
142
		$ts_jour_fin_mois = $month->nextMonth('timestamp');
159
		$ts_jour_fin_mois = $month->nextMonth('timestamp');
143
		$ts_jour_debut_mois = $month->thisMonth('timestamp');; 
160
		$ts_jour_debut_mois = $month->thisMonth('timestamp');; 
144
	    $requete_evenements = 	"SELECT DISTINCT bf_id_fiche, bf_titre, bf_lieu_evenement, DAY(bf_date_debut_evenement) AS bf_jour_debut_evenement, bf_date_debut_evenement, bf_date_fin_evenement, bf_description ".
161
	    $requete_evenements = 	"SELECT DISTINCT bf_id_fiche, bf_titre, bf_lieu_evenement, DAY(bf_date_debut_evenement) AS bf_jour_debut_evenement, bf_date_debut_evenement, bf_date_fin_evenement, bf_description ".
145
								"FROM bazar_fiche, bazar_nature ".
162
								"FROM bazar_fiche, bazar_nature ".
146
								"WHERE bf_date_debut_evenement < '".date('Y-m-d', $ts_jour_fin_mois)."' ".
163
								"WHERE bf_date_debut_evenement < '".date('Y-m-d', $ts_jour_fin_mois)."' ".
147
								"AND bf_date_fin_evenement >= '".date('Y-m-d', $ts_jour_debut_mois)."' ".
164
								"AND bf_date_fin_evenement >= '".date('Y-m-d', $ts_jour_debut_mois)."' ".
148
								"AND bf_ce_nature = bn_id_nature ".
165
								"AND bf_ce_nature = bn_id_nature ".
149
								"AND bn_id_nature IN (".BAZ_NUM_ANNONCE_CALENDRIER.")";
166
								"AND bn_id_nature IN (".BAZ_NUM_ANNONCE_CALENDRIER.")";
150
	   	$resultat_evenement = $db->query($requete_evenements);
167
	   	$resultat_evenement = $db->query($requete_evenements);
151
	    (DB::isError($resultat_evenement))
168
	    (DB::isError($resultat_evenement))
152
	    ? die(BOG_afficherErreurSql(__FILE__, __LINE__, $resultat_evenement->getMessage(), $requete_evenements))
169
	    ? die(BOG_afficherErreurSql(__FILE__, __LINE__, $resultat_evenement->getMessage(), $requete_evenements))
153
	    : '';
170
	    : '';
154
 
171
 
155
		$selection = array();
172
		$selection = array();
156
		$evenements = array();
173
		$evenements = array();
157
		$annee = date('Y', $curStamp);
174
		$annee = date('Y', $curStamp);
158
		$mois = date('m', $curStamp);
175
		$mois = date('m', $curStamp);
159
		$tablo_jours = array();
176
		$tablo_jours = array();
160
	    while ($ligne_evenements = $resultat_evenement->fetchRow(DB_FETCHMODE_OBJECT)) {
177
	    while ($ligne_evenements = $resultat_evenement->fetchRow(DB_FETCHMODE_OBJECT)) {
161
			list($annee_debut, $mois_debut, $jour_debut) = explode('-', $ligne_evenements->bf_date_debut_evenement);
178
			list($annee_debut, $mois_debut, $jour_debut) = explode('-', $ligne_evenements->bf_date_debut_evenement);
162
			list($annee_fin, $mois_fin, $jour_fin) = explode('-', $ligne_evenements->bf_date_fin_evenement);
179
			list($annee_fin, $mois_fin, $jour_fin) = explode('-', $ligne_evenements->bf_date_fin_evenement);
163
			
180
			
164
			$Calendrier = new Calendar($annee_debut, $mois_debut, $jour_debut);
181
			$Calendrier = new Calendar($annee_debut, $mois_debut, $jour_debut);
165
			$ts_jour_suivant = $Calendrier->thisDay('timestamp');
182
			$ts_jour_suivant = $Calendrier->thisDay('timestamp');
166
			$ts_jour_fin = mktime(0,0,0,$mois_fin, $jour_fin, $annee_fin);
183
			$ts_jour_fin = mktime(0,0,0,$mois_fin, $jour_fin, $annee_fin);
167
			
184
			
168
	    	if ($ts_jour_suivant < $ts_jour_fin) {
185
	    	if ($ts_jour_suivant < $ts_jour_fin) {
169
				//echo "$ts_jour_suivant-";
186
				//echo "$ts_jour_suivant-";
170
				$naviguer = true;
187
				$naviguer = true;
171
				while ($naviguer) {
188
				while ($naviguer) {
172
					// Si le jours suivant est inférieur à la date de fin, on continue...
189
					// Si le jours suivant est inférieur à la date de fin, on continue...
173
					if ($ts_jour_suivant <= $ts_jour_fin) {
190
					if ($ts_jour_suivant <= $ts_jour_fin) {
174
						// Si le jours suivant est inférieur à la date de fin du mois courrant, on continue...
191
						// Si le jours suivant est inférieur à la date de fin du mois courrant, on continue...
175
						if ($ts_jour_suivant < $ts_jour_fin_mois) {
192
						if ($ts_jour_suivant < $ts_jour_fin_mois) {
176
							$cle_j = date('Y-m-d', $ts_jour_suivant);
193
							$cle_j = date('Y-m-d', $ts_jour_suivant);
177
							if (!isset($tablo_jours[$cle_j])) {
194
							if (!isset($tablo_jours[$cle_j])) {
178
								$tablo_jours[$cle_j]['Calendar_Day'] = new Calendar_Day(date('Y', $ts_jour_suivant),date('m', $ts_jour_suivant), date('d', $ts_jour_suivant));
195
								$tablo_jours[$cle_j]['Calendar_Day'] = new Calendar_Day(date('Y', $ts_jour_suivant),date('m', $ts_jour_suivant), date('d', $ts_jour_suivant));
179
								$tablo_jours[$cle_j]['Diary_Event'] = new DiaryEvent($tablo_jours[$cle_j]['Calendar_Day']);
196
								$tablo_jours[$cle_j]['Diary_Event'] = new DiaryEvent($tablo_jours[$cle_j]['Calendar_Day']);
180
							}
197
							}
181
							$tablo_jours[$cle_j]['Diary_Event']->setEntry($ligne_evenements);
198
							$tablo_jours[$cle_j]['Diary_Event']->setEntry($ligne_evenements);
182
							
199
							
183
							$ts_jour_suivant = $Calendrier->nextDay('timestamp');
200
							$ts_jour_suivant = $Calendrier->nextDay('timestamp');
184
							//echo "ici$ts_jour_suivant-";
201
							//echo "ici$ts_jour_suivant-";
185
							$Calendrier->setTimestamp($ts_jour_suivant);
202
							$Calendrier->setTimestamp($ts_jour_suivant);
186
							//echo "la".$Calendrier->thisDay('timestamp')."-";
203
							//echo "la".$Calendrier->thisDay('timestamp')."-";
187
						} else {
204
						} else {
188
							$naviguer = false;
205
							$naviguer = false;
189
						}
206
						}
190
					} else {
207
					} else {
191
						$naviguer = false;
208
						$naviguer = false;
192
					}
209
					}
193
				}
210
				}
194
	    	} else { 
211
	    	} else { 
195
				$curday_ymd = $annee.$mois.$ligne_evenements->bf_jour_debut_evenement;
212
				$curday_ymd = $annee.$mois.$ligne_evenements->bf_jour_debut_evenement;
196
				$cle_j = $annee.'-'.$mois.'-'.$ligne_evenements->bf_jour_debut_evenement;
213
				$cle_j = $annee.'-'.$mois.'-'.$ligne_evenements->bf_jour_debut_evenement;
197
				if (!isset($tablo_jours[$cle_j])) {
214
				if (!isset($tablo_jours[$cle_j])) {
198
					$tablo_jours[$cle_j]['Calendar_Day'] = new Calendar_Day($annee, $mois, $ligne_evenements->bf_jour_debut_evenement);
215
					$tablo_jours[$cle_j]['Calendar_Day'] = new Calendar_Day($annee, $mois, $ligne_evenements->bf_jour_debut_evenement);
199
					$tablo_jours[$cle_j]['Diary_Event'] = new DiaryEvent($tablo_jours[$cle_j]['Calendar_Day']);
216
					$tablo_jours[$cle_j]['Diary_Event'] = new DiaryEvent($tablo_jours[$cle_j]['Calendar_Day']);
200
				}
217
				}
201
				$tablo_jours[$cle_j]['Diary_Event']->setEntry($ligne_evenements);
218
				$tablo_jours[$cle_j]['Diary_Event']->setEntry($ligne_evenements);
202
	    	}
219
	    	}
203
		}
220
		}
204
		// Add the decorator to the selection
221
		// Add the decorator to the selection
205
		foreach ($tablo_jours as $jour) {
222
		foreach ($tablo_jours as $jour) {
206
			$selection[] = $jour['Diary_Event'];				
223
			$selection[] = $jour['Diary_Event'];				
207
		}
224
		}
208
		
225
		
209
//		$calcom = "";
226
//		$calcom = "";
210
//		$selection = array();
227
//		$selection = array();
211
//		$evenements = array();		 
228
//		$evenements = array();		 
212
//		$prev_curday_ymd=0;		
229
//		$prev_curday_ymd=0;		
213
//	    while ($ligne_evenements = $resultat_evenement->fetchRow(DB_FETCHMODE_OBJECT)) {
230
//	    while ($ligne_evenements = $resultat_evenement->fetchRow(DB_FETCHMODE_OBJECT)) {
214
//	    	
231
//	    	
215
//			$curday_ymd=date('Ym',$curStamp).$ligne_evenements->bf_jour_debut_evenement;
232
//			$curday_ymd=date('Ym',$curStamp).$ligne_evenements->bf_jour_debut_evenement;
216
//			if ($curday_ymd!=$prev_curday_ymd) {
233
//			if ($curday_ymd!=$prev_curday_ymd) {
217
//				$Day = new Calendar_Day(date('Y',$curStamp),date('m',$curStamp), $ligne_evenements->bf_jour_debut_evenement);
234
//				$Day = new Calendar_Day(date('Y',$curStamp),date('m',$curStamp), $ligne_evenements->bf_jour_debut_evenement);
218
//				$DiaryEvent = new DiaryEvent($Day);
235
//				$DiaryEvent = new DiaryEvent($Day);
219
//				$prev_curday_ymd=$curday_ymd;
236
//				$prev_curday_ymd=$curday_ymd;
220
//			}
237
//			}
221
//			$DiaryEvent->setEntry($ligne_evenements);
238
//			$DiaryEvent->setEntry($ligne_evenements);
222
//			
239
//			
223
//			// Add the decorator to the selection
240
//			// Add the decorator to the selection
224
//			$selection[] = $DiaryEvent;				
241
//			$selection[] = $DiaryEvent;				
225
//		}
242
//		}
226
			
243
			
227
		// Affichage Calendrier
244
		// Affichage Calendrier
228
		$month->build($selection);
245
		$month->build($selection);
229
		if ($type=='calendrier') {
246
		if ($type == 'calendrier') {
230
			$retour.= "<table class=\"calendar\">
247
			$retour.= '<table class="calendrier">'.
-
 
248
				'<thead>'.
231
			 <tr>
249
			 	"<tr>
232
			
250
			
233
			  <th> ". BAZ_LUNDI ."</th>
251
			  <th> ". BAZ_LUNDI ."</th>
234
			  <th> ". BAZ_MARDI ."</th>
252
			  <th> ". BAZ_MARDI ."</th>
235
			  <th> ". BAZ_MERCREDI ."</th>
253
			  <th> ". BAZ_MERCREDI ."</th>
236
			  <th> ". BAZ_JEUDI ."</th>
254
			  <th> ". BAZ_JEUDI ."</th>
237
			  <th> ". BAZ_VENDREDI ."</th>
255
			  <th> ". BAZ_VENDREDI ."</th>
238
			  <th> ". BAZ_SAMEDI ."</th>
256
			  <th> ". BAZ_SAMEDI ."</th>
239
			  <th> ". BAZ_DIMANCHE ."</th>
257
			  <th> ". BAZ_DIMANCHE ."</th>
240
			 </tr>
258
			 </tr>
241
			 ";
259
			 ".'</thead>';
242
		}
260
		}
243
		else {
261
		else {
244
			$retour.= "<table class=\"calendar\">
262
			$retour.= '<table class="calendrier_applette">'.
-
 
263
				'<thead>'."
245
			 <tr>
264
			 <tr>
246
			
265
			
247
			  <th> ". BAZ_LUNDI_COURT ."</th>
266
			  <th> ". BAZ_LUNDI_COURT ."</th>
248
			  <th> ". BAZ_MARDI_COURT ."</th>
267
			  <th> ". BAZ_MARDI_COURT ."</th>
249
			  <th> ". BAZ_MERCREDI_COURT ."</th>
268
			  <th> ". BAZ_MERCREDI_COURT ."</th>
250
			  <th> ". BAZ_JEUDI_COURT ."</th>
269
			  <th> ". BAZ_JEUDI_COURT ."</th>
251
			  <th> ". BAZ_VENDREDI_COURT ."</th>
270
			  <th> ". BAZ_VENDREDI_COURT ."</th>
252
			  <th> ". BAZ_SAMEDI_COURT ."</th>
271
			  <th> ". BAZ_SAMEDI_COURT ."</th>
253
			  <th> ". BAZ_DIMANCHE_COURT ."</th>
272
			  <th> ". BAZ_DIMANCHE_COURT ."</th>
254
			 </tr>
273
			 </tr>
255
			 ";
274
			 ".'</thead>'.'<tbody>';
256
		}
275
		}
257
		
276
		
258
			
277
			
259
		$todayStamp=time();
278
		$todayStamp=time();
260
		
279
		
261
		$today_ymd=date('Ymd',$todayStamp);
280
		$today_ymd=date('Ymd',$todayStamp);
262
	
281
	
263
		// Other month : mois 
282
		// Other month : mois 
264
		//
283
		//
265
		
284
		
266
		while ($day = $month->fetch() ) {
285
		while ($day = $month->fetch() ) {
267
				
286
				
268
				$dayStamp = $day->thisDay(true);
287
				$dayStamp = $day->thisDay(true);
269
				$day_ymd=date('Ymd',$dayStamp);
288
				$day_ymd=date('Ymd',$dayStamp);
270
				
289
				
271
				if ( $day->isEmpty() ) {
290
				if ( $day->isEmpty() ) {
272
						$class = "other_month";
291
						$class = "cal_ma";
273
				}
292
				}
274
				else {
293
				else {
275
					if (($day_ymd < $today_ymd)) {
294
					if (($day_ymd < $today_ymd)) {
276
						$class= "previous_month";
295
						$class= "cal_mp";
277
					}
296
					}
278
					else {
297
					else {
279
						 if ($day_ymd == $today_ymd) {
298
						 if ($day_ymd == $today_ymd) {
280
						 	$class= "current_day";
299
						 	$class= "cal_jc";
281
						 }
300
						 }
282
						 else {
301
						 else {
283
							$class="current_month";
302
							$class="cal_mc";
284
						 }
303
						 }
285
					}
304
					}
286
				}
305
				}
287
				
306
				
288
				$url->addQueryString ('y', date('Y',$dayStamp));
307
				$url->addQueryString ('y', date('Y',$dayStamp));
289
				$url->addQueryString ('m', date('n',$dayStamp));
308
				$url->addQueryString ('m', date('n',$dayStamp));
290
				$url->addQueryString ('d', date('j',$dayStamp));
309
				$url->addQueryString ('d', date('j',$dayStamp));
291
				
-
 
292
				$link = $url->getUrl();
310
				$link = $url->getUrl();
293
			
311
			
294
				// isFirst() to find start of week
312
				// isFirst() to find start of week
295
				if ($day->isFirst())
313
				if ($day->isFirst()) {
296
					$retour.= ( "<tr>\n" );
314
					$retour.= ( "<tr>\n" );
297
				
-
 
298
				//$retour.= ( "<td class=\"".$class."\"><a href=\"".$link."\">".$day->thisDay()."</a>\n" );
-
 
299
				
315
				}
300
				if ($type=='calendrier') {
316
				if ($type == 'calendrier') {
301
					$retour.= "<td class=\"".$class."\">".$day->thisDay()."\n";
317
					$retour.= "<td class=\"".$class."\">".'<span class="cal_j">'.$day->thisDay().'</span>'."\n";
302
					if ($day->isSelected() ) {
318
					if ($day->isSelected() ) {
303
						$evenements=$day->getEntry();
319
						$evenements = $day->getEntry();
-
 
320
						$evenements_nbre = count($evenements);
-
 
321
						$evenemt_xhtml = '';
304
						while ($ligne_evenement=array_pop($evenements)) {
322
						while ($ligne_evenement = array_pop($evenements)) {
305
							$id_fiches=array();
323
							$id_fiches = array();
306
							$id_fiches[]=$ligne_evenement->bf_id_fiche;
324
							$id_fiches[] = $ligne_evenement->bf_id_fiche;
307
							$url->addQueryString ('id_fiches',$id_fiches);
325
							$url->addQueryString ('id_fiches',$id_fiches);
308
							$link = $url->getUrl();
326
							$link = $url->getUrl();
309
							$retour.= "<a href=\"".$link."\">".$ligne_evenement->bf_titre."</a>\n";
327
							$evenemt_xhtml .= '<li><a class="cal_evenemt" href="'.$link.'" title="'.$ligne_evenement->bf_titre.'">'.substr($ligne_evenement->bf_titre, 0, 20).'...</a></li>'."\n";
310
							$url->removeQueryString ('id_fiches');
328
							$url->removeQueryString ('id_fiches');
311
						}
329
						}
-
 
330
						if ($evenements_nbre > 0) {
-
 
331
							$retour .= '<ul class="cal_evenemt_liste">';
-
 
332
							$retour .= $evenemt_xhtml;
-
 
333
							$retour .= '</ul>';
-
 
334
						}
312
					}
335
					}
313
				}
-
 
314
				else {
336
				} else {
315
					$lien_date= "<td class=\"".$class."\">".$day->thisDay()."\n";
337
					$lien_date= "<td class=\"".$class."\">".$day->thisDay()."\n";
316
					if ($day->isSelected() ) {
338
					if ($day->isSelected() ) {
317
						$evenements=$day->getEntry();
339
						$evenements=$day->getEntry();
318
						$id_fiches=array();
340
						$id_fiches=array();
319
						while ($ligne_evenement=array_pop($evenements)) {
341
						while ($ligne_evenement=array_pop($evenements)) {
320
							$id_fiches[]=$ligne_evenement->bf_id_fiche;
342
							$id_fiches[]=$ligne_evenement->bf_id_fiche;
321
						}
343
						}
322
						$url->addQueryString ('id_fiches',$id_fiches);
344
						$url->addQueryString ('id_fiches',$id_fiches);
323
						$link = $url->getUrl();
345
						$link = $url->getUrl();
324
						$lien_date= "<td class=\"".$class."\"><a href=\"".$link."\">".$day->thisDay()."</a>\n";
346
						$lien_date= "<td class=\"".$class."\"><a href=\"".$link."\">".$day->thisDay()."</a>\n";
325
						$url->removeQueryString ('id_fiches');
347
						$url->removeQueryString ('id_fiches');
326
					}
348
					}
327
					$retour.=$lien_date;
349
					$retour.=$lien_date;
328
				}
350
				}
329
				
351
				
330
				$retour.= ( "</td>\n" );
352
				$retour.= ( "</td>\n" );
331
				
353
				
332
				// isLast() to find end of week
354
				// isLast() to find end of week
333
				if ( $day->isLast() )
355
				if ( $day->isLast() )
334
					$retour.= ( "</tr>\n" );
356
					$retour.= ( "</tr>\n" );
335
			}
357
			}
336
		
358
		
337
			$retour.= "</table>";
359
			$retour.= "</tbody></table>";
338
			
360
			
339
			
361
			
340
		}
362
		}
341
		
363
		
342
		// Vue detail
364
		// Vue detail
343
		
365
		
344
		if ((isset($_GET['id_fiches']))) {
366
		if ((isset($_GET['id_fiches']))) {
345
				// Ajout des styles du bazar
-
 
346
				if (defined('PAP_VERSION')) { //si on est dans Papyrus
-
 
347
					//GEN_stockerStyleExterne( 'bazar_interne', 'client/bazar/bazar.interne.css');
-
 
348
				}
-
 
349
			
-
 
350
				// Ajout d'un titre pour la page avec la date
367
				// Ajout d'un titre pour la page avec la date
351
				$jours = array ('lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi', 'dimanche') ;
368
				$jours = array ('lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi', 'dimanche') ;
352
				$mois = array ('janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre',
369
				$mois = array ('janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre',
353
								'octobre', 'novembre', 'décembre') ;
370
								'octobre', 'novembre', 'décembre') ;
354
				$timestamp = strtotime ($_GET['y'].'/'.$_GET['m'].'/'.$_GET['d']) ;
371
				$timestamp = strtotime ($_GET['y'].'/'.$_GET['m'].'/'.$_GET['d']) ;
355
				
372
				
356
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_NAVIGATION'] = '';
373
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_NAVIGATION'] = '';
357
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_TETE'] = '';
374
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_TETE'] = '';
358
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_CORPS'] = '<h1>'.$jours[date('w', $timestamp)].
375
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_CORPS'] = '<h1>'.$jours[date('w', $timestamp)].
359
								' '.$_GET['d'].' '.$mois[$_GET['m']-1].' '.$_GET['y'].'</h1>' ;
376
								' '.$_GET['d'].' '.$mois[$_GET['m']-1].' '.$_GET['y'].'</h1>' ;
360
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_CORPS'] .= baz_voir_fiches(0,$_GET['id_fiches'] );
377
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_CORPS'] .= baz_voir_fiches(0,$_GET['id_fiches'] );
361
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_PIED'] = '';
378
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_PIED'] = '';
362
				$GLOBALS['_GEN_commun']['info_menu'] = '';
379
				$GLOBALS['_GEN_commun']['info_menu'] = '';
363
		}
380
		}
364
 
381
 
365
		// Nettoyage de l'url
382
		// Nettoyage de l'url
366
		$url->removeQueryString('id_fiches');
383
		$url->removeQueryString('id_fiches');
367
		$url->removeQueryString('y');
384
		$url->removeQueryString('y');
368
		$url->removeQueryString('m');
385
		$url->removeQueryString('m');
369
		$url->removeQueryString('d');
386
		$url->removeQueryString('d');
370
			
387
			
371
		return $retour;
388
		return $retour;
372
	}
389
	}
373
?>
390
?>