Subversion Repositories Applications.bazar

Rev

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

Rev 209 Rev 213
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.15 2007-03-16 12:40:25 jp_milcent Exp $
22
// CVS : $Id: bazar.fonct.cal.php,v 1.16 2007-03-22 14:29:27 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.15 $ $Date: 2007-03-16 12:40:25 $
32
*@version       $Revision: 1.16 $ $Date: 2007-03-22 14:29:27 $
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
	// Gestion de l'affichage des titres des évènements
104
	// Gestion de l'affichage des titres des évènements
105
	if (isset($_GET['ctt']) && $_GET['ctt'] == '1') {
105
	if (isset($_GET['ctt']) && $_GET['ctt'] == '1') {
106
		$url->addQueryString('tt', '0');
106
		$url->addQueryString('tt', '0');
107
		if ($_GET['tt'] == '0') {
107
		if ($_GET['tt'] == '0') {
108
			$url->addQueryString('tt', '1');
108
			$url->addQueryString('tt', '1');
109
		}
109
		}
110
		$tc_lien = $url->getUrl();
110
		$tc_lien = $url->getUrl();
111
	} else {
111
	} else {
112
		$url->addQueryString('tt', '0');
112
		$url->addQueryString('tt', '0');
113
		if ($_GET['tt'] == '0') {
113
		if ($_GET['tt'] == '0') {
114
			$url->addQueryString('tt', '1');
114
			$url->addQueryString('tt', '1');
115
		}
115
		}
116
		$url->addQueryString('ctt', '1');
116
		$url->addQueryString('ctt', '1');
117
		$tc_lien = $url->getUrl();
117
		$tc_lien = $url->getUrl();
118
	}
118
	}
119
	$url->removeQueryString('ctt');
119
	$url->removeQueryString('ctt');
120
	$url->removeQueryString('tt');
120
	$url->removeQueryString('tt');
121
	$tc_txt = 'Afficher les titres complets des évènements';
121
	$tc_txt = 'Afficher les titres complets des évènements';
122
	if (isset($_GET['tt'])) {
122
	if (isset($_GET['tt'])) {
123
		if ($_GET['tt'] == '0') {
123
		if ($_GET['tt'] == '0') {
124
			$tc_txt = 'Tronquer les titres des évènements';
124
			$tc_txt = 'Tronquer les titres des évènements';
125
			$url->addQueryString('tt', $_GET['tt']);
125
			$url->addQueryString('tt', $_GET['tt']);
126
		}
126
		}
127
	}
127
	}
128
	
128
	
129
	// Navigation 
129
	// Navigation 
130
	$prevStamp = $month->prevMonth(true);
130
	$prevStamp = $month->prevMonth(true);
131
	$url->addQueryString('y', date('Y',$prevStamp));
131
	$url->addQueryString('y', date('Y',$prevStamp));
132
	$url->addQueryString('m', date('n',$prevStamp));
132
	$url->addQueryString('m', date('n',$prevStamp));
133
	$url->addQueryString('d', date('j',$prevStamp));
133
	$url->addQueryString('d', date('j',$prevStamp));
134
	$prev = $url->getUrl();
134
	$prev = $url->getUrl();
135
	
135
	
136
	$nextStamp = $month->nextMonth(true);
136
	$nextStamp = $month->nextMonth(true);
137
	$url->addQueryString('y', date('Y',$nextStamp));
137
	$url->addQueryString('y', date('Y',$nextStamp));
138
	$url->addQueryString('m', date('n',$nextStamp));
138
	$url->addQueryString('m', date('n',$nextStamp));
139
	$url->addQueryString('d', date('j',$nextStamp));
139
	$url->addQueryString('d', date('j',$nextStamp));
140
	$next = $url->getUrl();
140
	$next = $url->getUrl();
141
	
141
	
142
	// Suppression du paramêtre de troncage des titres
142
	// Suppression du paramêtre de troncage des titres
143
	$url->removeQueryString('tt');
143
	$url->removeQueryString('tt');
144
	
144
	
145
	$fr_month = array(	"1"=>BAZ_JANVIER,"2"=>BAZ_FEVRIER,"3"=>BAZ_MARS,"4"=>BAZ_AVRIL,"5"=>BAZ_MAI,"6"=>BAZ_JUIN,
145
	$fr_month = array(	"1"=>BAZ_JANVIER,"2"=>BAZ_FEVRIER,"3"=>BAZ_MARS,"4"=>BAZ_AVRIL,"5"=>BAZ_MAI,"6"=>BAZ_JUIN,
146
						"7"=>BAZ_JUILLET,"8"=>BAZ_AOUT,"9"=>BAZ_SEPTEMBRE,"10"=>BAZ_OCTOBRE,"11"=>BAZ_NOVEMBRE,"12"=>BAZ_DECEMBRE);
146
						"7"=>BAZ_JUILLET,"8"=>BAZ_AOUT,"9"=>BAZ_SEPTEMBRE,"10"=>BAZ_OCTOBRE,"11"=>BAZ_NOVEMBRE,"12"=>BAZ_DECEMBRE);
147
 
147
 
148
	// Titre
148
	// Titre
149
	if ($type=='calendrier') {
149
	if ($type=='calendrier') {
150
		// Ajout des styles du bazar
150
		// Ajout des styles du bazar
151
		if (defined('PAP_VERSION')) { //si on est dans Papyrus
151
		if (defined('PAP_VERSION')) { //si on est dans Papyrus
152
			GEN_stockerStyleExterne( 'bazar_interne', 'client/bazar/bazar.interne.css');
152
			GEN_stockerStyleExterne( 'bazar_interne', 'client/bazar/bazar.interne.css');
153
			GEN_stockerFichierScript('domLib', '/api/js/domtooltip/domLib.js');
153
			GEN_stockerFichierScript('domLib', '/api/js/domtooltip/domLib.js');
154
			GEN_stockerFichierScript('domTT', '/api/js/domtooltip/domTT.js');
154
			GEN_stockerFichierScript('domTT', '/api/js/domtooltip/domTT.js');
155
			// DomToolTip
155
			// DomToolTip
156
			$script = 'var domTT_styleClass = "niceTitle";'."\n";
156
			$script = 'var domTT_styleClass = "niceTitle";'."\n";
157
			$script .= 'function nicetitleDecorator(el) {'."\n";
157
			$script .= 'function nicetitleDecorator(el) {'."\n";
158
			$script .= '	var result = el.title;'."\n";
158
			$script .= '	var result = el.title;'."\n";
159
			$script .= '	result = result.replace(new RegExp("\n", "g"), "<br />");'."\n";
159
			$script .= '	result = result.replace(new RegExp("\n", "g"), "<br />");'."\n";
160
			$script .= '	if (el.href) {'."\n";
160
			$script .= '	if (el.href) {'."\n";
161
			$script .= '		result += "<p>" + el.href + "</p>";'."\n";
161
			$script .= '		result += "<p>" + el.href + "</p>";'."\n";
162
			$script .= '	}'."\n";
162
			$script .= '	}'."\n";
163
			$script .= '	return result;'."\n";
163
			$script .= '	return result;'."\n";
164
			$script .= '}'."\n";
164
			$script .= '}'."\n";
165
			$script .= 'domTT_replaceTitles(nicetitleDecorator);'."\n";
165
			$script .= 'domTT_replaceTitles(nicetitleDecorator);'."\n";
166
			GEN_stockerCodeScript('var domTT_styleClass = "niceTitle";'."\n");
166
			GEN_stockerCodeScript('var domTT_styleClass = "niceTitle";'."\n");
167
		}
167
		}
168
		$retour .= '<div id="cal_entete">';
168
		$retour .= '<div id="cal_entete">';
169
		$retour .= '<span class="cal_navigation">';	
169
		$retour .= '<span class="cal_navigation">';	
170
		$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>'; 
170
		$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>'; 
171
		$retour .= '&nbsp;&nbsp;';
171
		$retour .= '&nbsp;&nbsp;';
172
		$retour .= '<span id="cal_encadre_mois_courrant"><a id="cal_mois_courrant" href="'.$cur.'">';
172
		$retour .= '<span id="cal_encadre_mois_courrant"><a id="cal_mois_courrant" href="'.$cur.'">';
173
		$retour .= $fr_month[(date('n',$curStamp))]; 
173
		$retour .= $fr_month[(date('n',$curStamp))]; 
174
		$retour .= '&nbsp;';
174
		$retour .= '&nbsp;';
175
		$retour .= (date('Y',$curStamp));
175
		$retour .= (date('Y',$curStamp));
176
		$retour .= '</a></span>';
176
		$retour .= '</a></span>';
177
		$retour .= '&nbsp;&nbsp;';
177
		$retour .= '&nbsp;&nbsp;';
178
		$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>';
178
		$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>';
179
		$retour .= '</span>';
179
		$retour .= '</span>';
180
		$retour .= '<h1 id="cal_titre"><img id="cal_titre_img" src="client/bazar/images/cal_titre.png" alt="Calendrier"/></h1>';
180
		$retour .= '<h1 id="cal_titre"><img id="cal_titre_img" src="client/bazar/images/cal_titre.png" alt="Calendrier"/></h1>';
181
		$retour .= '</div>';
181
		$retour .= '</div>';
182
		
182
		
183
		$retour .= '<p>'.'<a href="'.$tc_lien.'">'.$tc_txt.'</a>'.'</p>';
183
		$retour .= '<p>'.'<a href="'.$tc_lien.'">'.$tc_txt.'</a>'.'</p>';
184
	} else {
184
	} else {
185
		$retour.= "<div class=\"navi\">";
185
		$retour.= "<div class=\"navi\">";
186
		$retour.= "<a href=\"".$prev."\"> &lt;&lt; </a>"; 
186
		$retour.= "<a href=\"".$prev."\"> &lt;&lt; </a>"; 
187
		$retour.= "&nbsp;&nbsp;";
187
		$retour.= "&nbsp;&nbsp;";
188
		$retour.= "<a href=\"".$cur;
188
		$retour.= "<a href=\"".$cur;
189
		$retour.= "\"> ";
189
		$retour.= "\"> ";
190
		$retour.= $fr_month[(date('n',$curStamp))]; 
190
		$retour.= $fr_month[(date('n',$curStamp))]; 
191
		$retour.= "&nbsp;";
191
		$retour.= "&nbsp;";
192
		$retour.= (date('Y',$curStamp));
192
		$retour.= (date('Y',$curStamp));
193
		$retour.= "</a>";
193
		$retour.= "</a>";
194
		$retour.= "&nbsp;&nbsp;";
194
		$retour.= "&nbsp;&nbsp;";
195
		$retour.= "<a href=\"".$next."\"> &gt;&gt; </a>";
195
		$retour.= "<a href=\"".$next."\"> &gt;&gt; </a>";
196
		$retour.= "</div>";
196
		$retour.= "</div>";
197
	}
197
	}
198
	// Vue Mois calendrier ou vue applette
198
	// Vue Mois calendrier ou vue applette
199
		
199
		
200
	if ((!isset($_GET['id_fiche']) && ($type=='calendrier')) || ($type=='calendrier_applette')){
200
	if ((!isset($_GET['id_fiche']) && ($type=='calendrier')) || ($type=='calendrier_applette')){
201
			
201
			
202
		// Recherche evenement de la periode selectionnée 
202
		// Recherche evenement de la periode selectionnée 
203
		$ts_jour_fin_mois = $month->nextMonth('timestamp');
203
		$ts_jour_fin_mois = $month->nextMonth('timestamp');
204
		$ts_jour_debut_mois = $month->thisMonth('timestamp');; 
204
		$ts_jour_debut_mois = $month->thisMonth('timestamp');; 
205
	    $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 ".
205
	    $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 ".
206
								"FROM bazar_fiche, bazar_nature ".
206
								"FROM bazar_fiche, bazar_nature ".
207
								"WHERE bf_date_debut_evenement < '".date('Y-m-d', $ts_jour_fin_mois)."' ".
207
								"WHERE bf_date_debut_evenement < '".date('Y-m-d', $ts_jour_fin_mois)."' ".
208
								"AND bf_date_fin_evenement >= '".date('Y-m-d', $ts_jour_debut_mois)."' ".
208
								"AND bf_date_fin_evenement >= '".date('Y-m-d', $ts_jour_debut_mois)."' ".
209
								"AND bf_ce_nature = bn_id_nature ".
209
								"AND bf_ce_nature = bn_id_nature ".
210
								"AND bn_id_nature IN (".BAZ_NUM_ANNONCE_CALENDRIER.")";
210
								"AND bn_id_nature IN (".BAZ_NUM_ANNONCE_CALENDRIER.") ".
-
 
211
								"AND bf_statut_fiche = 1";
211
	   	$resultat_evenement = $db->query($requete_evenements);
212
	   	$resultat_evenement = $db->query($requete_evenements);
212
	    (DB::isError($resultat_evenement))
213
	    (DB::isError($resultat_evenement))
213
	    ? die(BOG_afficherErreurSql(__FILE__, __LINE__, $resultat_evenement->getMessage(), $requete_evenements))
214
	    ? die(BOG_afficherErreurSql(__FILE__, __LINE__, $resultat_evenement->getMessage(), $requete_evenements))
214
	    : '';
215
	    : '';
215
 
216
 
216
		$selection = array();
217
		$selection = array();
217
		$evenements = array();
218
		$evenements = array();
218
		$annee = date('Y', $curStamp);
219
		$annee = date('Y', $curStamp);
219
		$mois = date('m', $curStamp);
220
		$mois = date('m', $curStamp);
220
		$tablo_jours = array();
221
		$tablo_jours = array();
221
	    while ($ligne_evenements = $resultat_evenement->fetchRow(DB_FETCHMODE_OBJECT)) {
222
	    while ($ligne_evenements = $resultat_evenement->fetchRow(DB_FETCHMODE_OBJECT)) {
222
			list($annee_debut, $mois_debut, $jour_debut) = explode('-', $ligne_evenements->bf_date_debut_evenement);
223
			list($annee_debut, $mois_debut, $jour_debut) = explode('-', $ligne_evenements->bf_date_debut_evenement);
223
			list($annee_fin, $mois_fin, $jour_fin) = explode('-', $ligne_evenements->bf_date_fin_evenement);
224
			list($annee_fin, $mois_fin, $jour_fin) = explode('-', $ligne_evenements->bf_date_fin_evenement);
224
			
225
			
225
			$Calendrier = new Calendar($annee_debut, $mois_debut, $jour_debut);
226
			$Calendrier = new Calendar($annee_debut, $mois_debut, $jour_debut);
226
			$ts_jour_suivant = $Calendrier->thisDay('timestamp');
227
			$ts_jour_suivant = $Calendrier->thisDay('timestamp');
227
			$ts_jour_fin = mktime(0,0,0,$mois_fin, $jour_fin, $annee_fin);
228
			$ts_jour_fin = mktime(0,0,0,$mois_fin, $jour_fin, $annee_fin);
228
			
229
			
229
	    	if ($ts_jour_suivant < $ts_jour_fin) {
230
	    	if ($ts_jour_suivant < $ts_jour_fin) {
230
				//echo "$ts_jour_suivant-";
231
				//echo "$ts_jour_suivant-";
231
				$naviguer = true;
232
				$naviguer = true;
232
				while ($naviguer) {
233
				while ($naviguer) {
233
					// Si le jours suivant est inférieur à la date de fin, on continue...
234
					// Si le jours suivant est inférieur à la date de fin, on continue...
234
					if ($ts_jour_suivant <= $ts_jour_fin) {
235
					if ($ts_jour_suivant <= $ts_jour_fin) {
235
						// Si le jours suivant est inférieur à la date de fin du mois courrant, on continue...
236
						// Si le jours suivant est inférieur à la date de fin du mois courrant, on continue...
236
						if ($ts_jour_suivant < $ts_jour_fin_mois) {
237
						if ($ts_jour_suivant < $ts_jour_fin_mois) {
237
							$cle_j = date('Y-m-d', $ts_jour_suivant);
238
							$cle_j = date('Y-m-d', $ts_jour_suivant);
238
							if (!isset($tablo_jours[$cle_j])) {
239
							if (!isset($tablo_jours[$cle_j])) {
239
								$tablo_jours[$cle_j]['Calendar_Day'] = new Calendar_Day(date('Y', $ts_jour_suivant),date('m', $ts_jour_suivant), date('d', $ts_jour_suivant));
240
								$tablo_jours[$cle_j]['Calendar_Day'] = new Calendar_Day(date('Y', $ts_jour_suivant),date('m', $ts_jour_suivant), date('d', $ts_jour_suivant));
240
								$tablo_jours[$cle_j]['Diary_Event'] = new DiaryEvent($tablo_jours[$cle_j]['Calendar_Day']);
241
								$tablo_jours[$cle_j]['Diary_Event'] = new DiaryEvent($tablo_jours[$cle_j]['Calendar_Day']);
241
							}
242
							}
242
							$tablo_jours[$cle_j]['Diary_Event']->setEntry($ligne_evenements);
243
							$tablo_jours[$cle_j]['Diary_Event']->setEntry($ligne_evenements);
243
							
244
							
244
							$ts_jour_suivant = $Calendrier->nextDay('timestamp');
245
							$ts_jour_suivant = $Calendrier->nextDay('timestamp');
245
							//echo "ici$ts_jour_suivant-";
246
							//echo "ici$ts_jour_suivant-";
246
							$Calendrier->setTimestamp($ts_jour_suivant);
247
							$Calendrier->setTimestamp($ts_jour_suivant);
247
							//echo "la".$Calendrier->thisDay('timestamp')."-";
248
							//echo "la".$Calendrier->thisDay('timestamp')."-";
248
						} else {
249
						} else {
249
							$naviguer = false;
250
							$naviguer = false;
250
						}
251
						}
251
					} else {
252
					} else {
252
						$naviguer = false;
253
						$naviguer = false;
253
					}
254
					}
254
				}
255
				}
255
	    	} else { 
256
	    	} else { 
256
				$curday_ymd = $annee.$mois.$ligne_evenements->bf_jour_debut_evenement;
257
				$curday_ymd = $annee.$mois.$ligne_evenements->bf_jour_debut_evenement;
257
				$cle_j = $annee.'-'.$mois.'-'.$ligne_evenements->bf_jour_debut_evenement;
258
				$cle_j = $annee.'-'.$mois.'-'.$ligne_evenements->bf_jour_debut_evenement;
258
				if (!isset($tablo_jours[$cle_j])) {
259
				if (!isset($tablo_jours[$cle_j])) {
259
					$tablo_jours[$cle_j]['Calendar_Day'] = new Calendar_Day($annee, $mois, $ligne_evenements->bf_jour_debut_evenement);
260
					$tablo_jours[$cle_j]['Calendar_Day'] = new Calendar_Day($annee, $mois, $ligne_evenements->bf_jour_debut_evenement);
260
					$tablo_jours[$cle_j]['Diary_Event'] = new DiaryEvent($tablo_jours[$cle_j]['Calendar_Day']);
261
					$tablo_jours[$cle_j]['Diary_Event'] = new DiaryEvent($tablo_jours[$cle_j]['Calendar_Day']);
261
				}
262
				}
262
				$tablo_jours[$cle_j]['Diary_Event']->setEntry($ligne_evenements);
263
				$tablo_jours[$cle_j]['Diary_Event']->setEntry($ligne_evenements);
263
	    	}
264
	    	}
264
		}
265
		}
265
		// Add the decorator to the selection
266
		// Add the decorator to the selection
266
		foreach ($tablo_jours as $jour) {
267
		foreach ($tablo_jours as $jour) {
267
			$selection[] = $jour['Diary_Event'];				
268
			$selection[] = $jour['Diary_Event'];				
268
		}
269
		}
269
		
270
		
270
//		$calcom = "";
271
//		$calcom = "";
271
//		$selection = array();
272
//		$selection = array();
272
//		$evenements = array();		 
273
//		$evenements = array();		 
273
//		$prev_curday_ymd=0;		
274
//		$prev_curday_ymd=0;		
274
//	    while ($ligne_evenements = $resultat_evenement->fetchRow(DB_FETCHMODE_OBJECT)) {
275
//	    while ($ligne_evenements = $resultat_evenement->fetchRow(DB_FETCHMODE_OBJECT)) {
275
//	    	
276
//	    	
276
//			$curday_ymd=date('Ym',$curStamp).$ligne_evenements->bf_jour_debut_evenement;
277
//			$curday_ymd=date('Ym',$curStamp).$ligne_evenements->bf_jour_debut_evenement;
277
//			if ($curday_ymd!=$prev_curday_ymd) {
278
//			if ($curday_ymd!=$prev_curday_ymd) {
278
//				$Day = new Calendar_Day(date('Y',$curStamp),date('m',$curStamp), $ligne_evenements->bf_jour_debut_evenement);
279
//				$Day = new Calendar_Day(date('Y',$curStamp),date('m',$curStamp), $ligne_evenements->bf_jour_debut_evenement);
279
//				$DiaryEvent = new DiaryEvent($Day);
280
//				$DiaryEvent = new DiaryEvent($Day);
280
//				$prev_curday_ymd=$curday_ymd;
281
//				$prev_curday_ymd=$curday_ymd;
281
//			}
282
//			}
282
//			$DiaryEvent->setEntry($ligne_evenements);
283
//			$DiaryEvent->setEntry($ligne_evenements);
283
//			
284
//			
284
//			// Add the decorator to the selection
285
//			// Add the decorator to the selection
285
//			$selection[] = $DiaryEvent;				
286
//			$selection[] = $DiaryEvent;				
286
//		}
287
//		}
287
			
288
			
288
		// Affichage Calendrier
289
		// Affichage Calendrier
289
		$month->build($selection);
290
		$month->build($selection);
290
		if ($type == 'calendrier') {
291
		if ($type == 'calendrier') {
291
			$retour.= '<table class="calendrier">'.
292
			$retour.= '<table class="calendrier">'.
292
				'<colgroup>'.
293
				'<colgroup>'.
293
					'<col class="cal_lundi"/>'.
294
					'<col class="cal_lundi"/>'.
294
					'<col class="cal_mardi"/>'.
295
					'<col class="cal_mardi"/>'.
295
					'<col class="cal_mercredi"/>'.
296
					'<col class="cal_mercredi"/>'.
296
					'<col class="cal_jeudi"/>'.
297
					'<col class="cal_jeudi"/>'.
297
					'<col class="cal_vendredi"/>'.
298
					'<col class="cal_vendredi"/>'.
298
					'<col class="cal_samedi"/>'.
299
					'<col class="cal_samedi"/>'.
299
					'<col class="cal_dimanche"/>'.
300
					'<col class="cal_dimanche"/>'.
300
				'</colgroup>'.
301
				'</colgroup>'.
301
				'<thead>'.
302
				'<thead>'.
302
			 	"<tr>
303
			 	"<tr>
303
			
304
			
304
			  <th> ". BAZ_LUNDI ."</th>
305
			  <th> ". BAZ_LUNDI ."</th>
305
			  <th> ". BAZ_MARDI ."</th>
306
			  <th> ". BAZ_MARDI ."</th>
306
			  <th> ". BAZ_MERCREDI ."</th>
307
			  <th> ". BAZ_MERCREDI ."</th>
307
			  <th> ". BAZ_JEUDI ."</th>
308
			  <th> ". BAZ_JEUDI ."</th>
308
			  <th> ". BAZ_VENDREDI ."</th>
309
			  <th> ". BAZ_VENDREDI ."</th>
309
			  <th> ". BAZ_SAMEDI ."</th>
310
			  <th> ". BAZ_SAMEDI ."</th>
310
			  <th> ". BAZ_DIMANCHE ."</th>
311
			  <th> ". BAZ_DIMANCHE ."</th>
311
			 </tr>
312
			 </tr>
312
			 ".'</thead>'.'<tbody>';
313
			 ".'</thead>'.'<tbody>';
313
		}
314
		}
314
		else {
315
		else {
315
			$retour.= '<table class="calendrier_applette">'.
316
			$retour.= '<table class="calendrier_applette">'.
316
				'<colgroup>'.
317
				'<colgroup>'.
317
					'<col class="cal_lundi"/>'.
318
					'<col class="cal_lundi"/>'.
318
					'<col class="cal_mardi"/>'.
319
					'<col class="cal_mardi"/>'.
319
					'<col class="cal_mercredi"/>'.
320
					'<col class="cal_mercredi"/>'.
320
					'<col class="cal_jeudi"/>'.
321
					'<col class="cal_jeudi"/>'.
321
					'<col class="cal_vendredi"/>'.
322
					'<col class="cal_vendredi"/>'.
322
					'<col class="cal_samedi"/>'.
323
					'<col class="cal_samedi"/>'.
323
					'<col class="cal_dimanche"/>'.
324
					'<col class="cal_dimanche"/>'.
324
				'</colgroup>'.
325
				'</colgroup>'.
325
				'<thead>'.
326
				'<thead>'.
326
			 "<tr>
327
			 "<tr>
327
			
328
			
328
			  <th> ". BAZ_LUNDI_COURT ."</th>
329
			  <th> ". BAZ_LUNDI_COURT ."</th>
329
			  <th> ". BAZ_MARDI_COURT ."</th>
330
			  <th> ". BAZ_MARDI_COURT ."</th>
330
			  <th> ". BAZ_MERCREDI_COURT ."</th>
331
			  <th> ". BAZ_MERCREDI_COURT ."</th>
331
			  <th> ". BAZ_JEUDI_COURT ."</th>
332
			  <th> ". BAZ_JEUDI_COURT ."</th>
332
			  <th> ". BAZ_VENDREDI_COURT ."</th>
333
			  <th> ". BAZ_VENDREDI_COURT ."</th>
333
			  <th> ". BAZ_SAMEDI_COURT ."</th>
334
			  <th> ". BAZ_SAMEDI_COURT ."</th>
334
			  <th> ". BAZ_DIMANCHE_COURT ."</th>
335
			  <th> ". BAZ_DIMANCHE_COURT ."</th>
335
			 </tr>
336
			 </tr>
336
			 ".'</thead>'.'<tbody>';
337
			 ".'</thead>'.'<tbody>';
337
		}
338
		}
338
		
339
		
339
			
340
			
340
		$todayStamp=time();
341
		$todayStamp=time();
341
		
342
		
342
		$today_ymd=date('Ymd',$todayStamp);
343
		$today_ymd=date('Ymd',$todayStamp);
343
	
344
	
344
		// Other month : mois 
345
		// Other month : mois 
345
		//
346
		//
346
		
347
		
347
		while ($day = $month->fetch() ) {
348
		while ($day = $month->fetch() ) {
348
				
349
				
349
				$dayStamp = $day->thisDay(true);
350
				$dayStamp = $day->thisDay(true);
350
				$day_ymd=date('Ymd',$dayStamp);
351
				$day_ymd=date('Ymd',$dayStamp);
351
				
352
				
352
				if ( $day->isEmpty() ) {
353
				if ( $day->isEmpty() ) {
353
						$class = "cal_ma";
354
						$class = "cal_ma";
354
				}
355
				}
355
				else {
356
				else {
356
					if (($day_ymd < $today_ymd)) {
357
					if (($day_ymd < $today_ymd)) {
357
						$class= "cal_mp";
358
						$class= "cal_mp";
358
					}
359
					}
359
					else {
360
					else {
360
						 if ($day_ymd == $today_ymd) {
361
						 if ($day_ymd == $today_ymd) {
361
						 	$class= "cal_jc";
362
						 	$class= "cal_jc";
362
						 }
363
						 }
363
						 else {
364
						 else {
364
							$class="cal_mc";
365
							$class="cal_mc";
365
						 }
366
						 }
366
					}
367
					}
367
				}
368
				}
368
				
369
				
369
				$url->addQueryString ('y', date('Y',$dayStamp));
370
				$url->addQueryString ('y', date('Y',$dayStamp));
370
				$url->addQueryString ('m', date('n',$dayStamp));
371
				$url->addQueryString ('m', date('n',$dayStamp));
371
				$url->addQueryString ('d', date('j',$dayStamp));
372
				$url->addQueryString ('d', date('j',$dayStamp));
372
				$link = $url->getUrl();
373
				$link = $url->getUrl();
373
			
374
			
374
				// isFirst() to find start of week
375
				// isFirst() to find start of week
375
				if ($day->isFirst()) {
376
				if ($day->isFirst()) {
376
					$retour.= ( "<tr>\n" );
377
					$retour.= ( "<tr>\n" );
377
				}
378
				}
378
				if ($type == 'calendrier') {
379
				if ($type == 'calendrier') {
379
					$retour.= "<td class=\"".$class."\">".'<span class="cal_j">'.$day->thisDay().'</span>'."\n";
380
					$retour.= "<td class=\"".$class."\">".'<span class="cal_j">'.$day->thisDay().'</span>'."\n";
380
					if ($day->isSelected() ) {
381
					if ($day->isSelected() ) {
381
						$evenements = $day->getEntry();
382
						$evenements = $day->getEntry();
382
						$evenements_nbre = count($evenements);
383
						$evenements_nbre = count($evenements);
383
						$evenemt_xhtml = '';
384
						$evenemt_xhtml = '';
384
						while ($ligne_evenement = array_pop($evenements)) {
385
						while ($ligne_evenement = array_pop($evenements)) {
385
							$id_fiches = array();
386
							$id_fiches = array();
386
							$id_fiches[] = $ligne_evenement->bf_id_fiche;
387
							$id_fiches[] = $ligne_evenement->bf_id_fiche;
387
							$url->addQueryString ('id_fiches',$id_fiches);
388
							$url->addQueryString ('id_fiches',$id_fiches);
388
							$link = $url->getUrl();
389
							$link = $url->getUrl();
389
							
390
							
390
							if (!isset($_GET['tt']) || (isset($_GET['tt']) && $_GET['tt'] == '1')) {
391
							if (!isset($_GET['tt']) || (isset($_GET['tt']) && $_GET['tt'] == '1')) {
391
								$titre_taille = strlen($ligne_evenement->bf_titre);
392
								$titre_taille = strlen($ligne_evenement->bf_titre);
392
								$titre = ($titre_taille > 20)?substr($ligne_evenement->bf_titre, 0, 20).'...':$ligne_evenement->bf_titre;
393
								$titre = ($titre_taille > 20)?substr($ligne_evenement->bf_titre, 0, 20).'...':$ligne_evenement->bf_titre;
393
							} else {
394
							} else {
394
								$titre = $ligne_evenement->bf_titre;
395
								$titre = $ligne_evenement->bf_titre;
395
							}
396
							}
396
							$evenemt_xhtml .= '<li class="tooltip" title="'.$ligne_evenement->bf_titre.'"><a class="cal_evenemt" href="'.$link.'">'.$titre.'</a></li>'."\n";
397
							$evenemt_xhtml .= '<li class="tooltip" title="'.$ligne_evenement->bf_titre.'"><a class="cal_evenemt" href="'.$link.'">'.$titre.'</a></li>'."\n";
397
							$url->removeQueryString ('id_fiches');
398
							$url->removeQueryString ('id_fiches');
398
						}
399
						}
399
						if ($evenements_nbre > 0) {
400
						if ($evenements_nbre > 0) {
400
							$retour .= '<ul class="cal_evenemt_liste">';
401
							$retour .= '<ul class="cal_evenemt_liste">';
401
							$retour .= $evenemt_xhtml;
402
							$retour .= $evenemt_xhtml;
402
							$retour .= '</ul>';
403
							$retour .= '</ul>';
403
						}
404
						}
404
					}
405
					}
405
				} else {
406
				} else {
406
					$lien_date= "<td class=\"".$class."\">".$day->thisDay()."\n";
407
					$lien_date= "<td class=\"".$class."\">".$day->thisDay()."\n";
407
					if ($day->isSelected() ) {
408
					if ($day->isSelected() ) {
408
						$evenements=$day->getEntry();
409
						$evenements=$day->getEntry();
409
						$id_fiches=array();
410
						$id_fiches=array();
410
						while ($ligne_evenement=array_pop($evenements)) {
411
						while ($ligne_evenement=array_pop($evenements)) {
411
							$id_fiches[]=$ligne_evenement->bf_id_fiche;
412
							$id_fiches[]=$ligne_evenement->bf_id_fiche;
412
						}
413
						}
413
						$url->addQueryString ('id_fiches',$id_fiches);
414
						$url->addQueryString ('id_fiches',$id_fiches);
414
						$link = $url->getUrl();
415
						$link = $url->getUrl();
415
						$lien_date= "<td class=\"".$class."\"><a href=\"".$link."\">".$day->thisDay()."</a>\n";
416
						$lien_date= "<td class=\"".$class."\"><a href=\"".$link."\">".$day->thisDay()."</a>\n";
416
						$url->removeQueryString ('id_fiches');
417
						$url->removeQueryString ('id_fiches');
417
					}
418
					}
418
					$retour.=$lien_date;
419
					$retour.=$lien_date;
419
				}
420
				}
420
				
421
				
421
				$retour.= ( "</td>\n" );
422
				$retour.= ( "</td>\n" );
422
				
423
				
423
				// isLast() to find end of week
424
				// isLast() to find end of week
424
				if ( $day->isLast() )
425
				if ( $day->isLast() )
425
					$retour.= ( "</tr>\n" );
426
					$retour.= ( "</tr>\n" );
426
			}
427
			}
427
		
428
		
428
			$retour.= "</tbody></table>";
429
			$retour.= "</tbody></table>";
429
			
430
			
430
			
431
			
431
		}
432
		}
432
		$retour.= '<script type="text/javascript">//<![CDATA['."\n".$script.'//]]></script>'."\n";
433
		$retour.= '<script type="text/javascript">//<![CDATA['."\n".$script.'//]]></script>'."\n";
433
		// Vue detail
434
		// Vue detail
434
		
435
		
435
		if ((isset($_GET['id_fiches']))) {
436
		if ((isset($_GET['id_fiches']))) {
436
				// Ajout d'un titre pour la page avec la date
437
				// Ajout d'un titre pour la page avec la date
437
				$jours = array ('lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi', 'dimanche') ;
438
				$jours = array ('lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi', 'dimanche') ;
438
				$mois = array ('janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre',
439
				$mois = array ('janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre',
439
								'octobre', 'novembre', 'décembre') ;
440
								'octobre', 'novembre', 'décembre') ;
440
				$timestamp = strtotime ($_GET['y'].'/'.$_GET['m'].'/'.$_GET['d']) ;
441
				$timestamp = strtotime ($_GET['y'].'/'.$_GET['m'].'/'.$_GET['d']) ;
441
				
442
				
442
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_NAVIGATION'] = '';
443
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_NAVIGATION'] = '';
443
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_TETE'] = '';
444
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_TETE'] = '';
444
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_CORPS'] = '<h1>'.$jours[date('w', $timestamp)].
445
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_CORPS'] = '<h1>'.$jours[date('w', $timestamp)].
445
								' '.$_GET['d'].' '.$mois[$_GET['m']-1].' '.$_GET['y'].'</h1>' ;
446
								' '.$_GET['d'].' '.$mois[$_GET['m']-1].' '.$_GET['y'].'</h1>' ;
446
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_CORPS'] .= baz_voir_fiches(0,$_GET['id_fiches'] );
447
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_CORPS'] .= baz_voir_fiches(0,$_GET['id_fiches'] );
447
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_PIED'] = '';
448
				$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_PIED'] = '';
448
				$GLOBALS['_GEN_commun']['info_menu'] = '';
449
				$GLOBALS['_GEN_commun']['info_menu'] = '';
449
		}
450
		}
450
 
451
 
451
		// Nettoyage de l'url
452
		// Nettoyage de l'url
452
		$url->removeQueryString('id_fiches');
453
		$url->removeQueryString('id_fiches');
453
		$url->removeQueryString('y');
454
		$url->removeQueryString('y');
454
		$url->removeQueryString('m');
455
		$url->removeQueryString('m');
455
		$url->removeQueryString('d');
456
		$url->removeQueryString('d');
456
			
457
			
457
		return $retour;
458
		return $retour;
458
	}
459
	}
459
?>
460
?>