Subversion Repositories Applications.bazar

Rev

Rev 195 | Rev 212 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5 florian 1
<?php
125 alexandre_ 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
// +------------------------------------------------------------------------------------------------------+
205 jp_milcent 22
// CVS : $Id: bazar.fonct.rss.php,v 1.70 2007-03-08 15:12:13 jp_milcent Exp $
125 alexandre_ 23
/**
24
*
25
*@package bazar
26
//Auteur original :
27
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
28
*@author        Florian Schmitt <florian@ecole-et-nature.org>
29
//Autres auteurs :
30
*@copyright     Tela-Botanica 2000-2006
205 jp_milcent 31
*@version       $Revision: 1.70 $
125 alexandre_ 32
// +------------------------------------------------------------------------------------------------------+
33
*/
116 florian 34
 
125 alexandre_ 35
// +------------------------------------------------------------------------------------------------------+
36
// |                                            ENTETE du PROGRAMME                                       |
37
// +------------------------------------------------------------------------------------------------------+
38
 
116 florian 39
require_once BAZ_CHEMIN_APPLI.'bibliotheque/bazar.class.php';
40
require_once BAZ_CHEMIN_APPLI.'bibliotheque/bazar.fonct.php';
41
 
125 alexandre_ 42
 
5 florian 43
/** baz_valeur_template() - Renvoi des valeurs inscrite dans le fichier de template
44
*
68 florian 45
* @param   string valeur du template de bazar_nature
5 florian 46
*
47
* @return   mixed  tableau contenant les champs du fichier template
48
*/
68 florian 49
function baz_valeurs_template($valeur_template) {
152 florian 50
	//Parcours du fichier de templates, pour mettre les champs specifiques
126 florian 51
	$tableau= array();
5 florian 52
	$nblignes=0;
68 florian 53
	$chaine = explode ("\n", $valeur_template);
5 florian 54
	array_pop($chaine);
55
	foreach ($chaine as $ligne)  {
56
		$souschaine = explode ("***", $ligne) ;
57
		$tableau[$nblignes]['type'] = trim($souschaine[0]) ;
58
		if (isset($souschaine[1])) {$tableau[$nblignes]['nom_bdd'] = trim($souschaine[1]);}
59
		else {$tableau[$nblignes]['nom_bdd'] ='';}
60
		if (isset($souschaine[2])) $tableau[$nblignes]['label'] = trim($souschaine[2]);
61
		else {$tableau[$nblignes]['label'] ='';}
62
		if (isset($souschaine[3])) $tableau[$nblignes]['limite1'] = trim($souschaine[3]);
63
		else {$tableau[$nblignes]['limite1'] ='';}
64
		if (isset($souschaine[4])) $tableau[$nblignes]['limite2'] = trim($souschaine[4]);
65
		else {$tableau[$nblignes]['limite2'] ='';}
66
		if (isset($souschaine[5])) $tableau[$nblignes]['defaut'] = trim($souschaine[5]);
67
		else {$tableau[$nblignes]['defaut'] ='';}
68
		if (isset($souschaine[6])) $tableau[$nblignes]['table_source'] = trim($souschaine[6]);
69
		else {$tableau[$nblignes]['table_source'] ='';}
70
		if (isset($souschaine[7])) $tableau[$nblignes]['id_source'] = trim($souschaine[7]);
71
		else {$tableau[$nblignes]['id_source'] ='';}
72
		if (isset($souschaine[8])) $tableau[$nblignes]['obligatoire'] = trim($souschaine[8]);
73
		else {$tableau[$nblignes]['obligatoire'] ='';}
88 alexandre_ 74
		if (isset($souschaine[9])) $tableau[$nblignes]['recherche'] = trim($souschaine[9]);
64 florian 75
		else {$tableau[$nblignes]['recherche'] ='';}
67 alexandre_ 76
 
77
 
78
		// traitement des cases à cocher, dans ce cas la, on a une table de jointure entre la table
79
		// de liste et la table bazar_fiche (elle porte un nom du genre bazar_ont_***)
80
		// dans le template, à la place d'un nom de champs dans 'nom_bdd', on a un nom de table
81
		// et 2 noms de champs séparés par un virgule ex : bazar_ont_theme,bot_id_theme,bot_id_fiche
82
 
83
		if (isset($tableau[$nblignes]['nom_bdd']) && preg_match('/,/', $tableau[$nblignes]['nom_bdd'])) {
84
			$tableau_info_jointe = explode (',', $tableau[$nblignes]['nom_bdd']) ;
85
			$tableau[$nblignes]['table_jointe'] = $tableau_info_jointe[0] ;
86
			$tableau[$nblignes]['champs_id_fiche'] = $tableau_info_jointe[1] ;
87
			$tableau[$nblignes]['champs_id_table_jointe'] = $tableau_info_jointe[2] ;
88
		}
5 florian 89
		$nblignes++;
90
	}
91
	return $tableau;
92
}
93
 
33 ddelon 94
/**  baz_voir_fiches() - Permet de visualiser en detail une liste de fiche  au format XHTML
95
*
96
* @global boolean Rajoute des informations internes à l'application (date de modification, lien vers la page de départ de l'appli)
97
* @global integer Tableau d(Identifiant des fiches à afficher
98
*
99
* @return   string  HTML
100
*/
101
function baz_voir_fiches($danslappli, $idfiches=array()) {
102
	$res='';
103
	foreach($idfiches as $idfiche) {
104
			$res.=baz_voir_fiche($danslappli, $idfiche);
105
	}
106
	return $res;
107
}
54 florian 108
 
109
 
118 florian 110
/**  baz_voir_fiche() - Permet de visualiser en detail une fiche  au format XHTML
5 florian 111
*
118 florian 112
* @global boolean Rajoute des informations internes a l'application (date de modification, lien vers la page de départ de l'appli) si a 1
113
* @global integer Identifiant de la fiche a afficher
5 florian 114
*
115
* @return   string  HTML
116
*/
117
function baz_voir_fiche($danslappli, $idfiche='') {
55 florian 118
	$res='';
5 florian 119
	if (isset($_GET['id_fiche'])) $GLOBALS['_BAZAR_']['id_fiche']=$_GET['id_fiche'];
118 florian 120
	if ($idfiche!='') $GLOBALS['_BAZAR_']['id_fiche']=$idfiche;
9 florian 121
	$url= $GLOBALS['_BAZAR_']['url'];
122
	$url->addQueryString('action', BAZ_VOIR_FICHE);
123
	$url->addQueryString('id_fiche', $GLOBALS['_BAZAR_']['id_fiche']);
124
	$url = preg_replace ('/&amp;/', '&', $url->getURL()) ;
7 florian 125
 
118 florian 126
	//cas ou la fiche a été validee
127
	if (isset($_GET['publiee'])) {
128
		publier_fiche($_GET['publiee']);
129
	}
130
 
131
	//cas on une structure s'approprie une ressource
132
	if (isset($_GET['appropriation'])) {
133
		if ($_GET['appropriation']==1) {
134
			$requete = 'INSERT INTO bazar_appropriation VALUES ('.$GLOBALS['_BAZAR_']['id_fiche'].', '.$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID).')';
135
			$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
136
		}
137
		elseif ($_GET['appropriation']==0) {
138
			$requete = 'DELETE FROM bazar_appropriation WHERE  ba_ce_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'].' AND ba_ce_id_structure='.$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID);
139
			$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
140
		}
141
	}
142
 
143
	//cas ou un commentaire a été entre
9 florian 144
	if (isset($_POST['Nom'])) {
38 alexandre_ 145
		$requete = 'INSERT INTO bazar_commentaires VALUES ('.
146
					baz_nextid('bazar_commentaires', 'bc_id_commentaire', $GLOBALS['_BAZAR_']['db']).
147
					', '.$GLOBALS['_BAZAR_']['id_fiche'].', "'.$_POST['Nom'].'", "'.$_POST['Commentaire'].
148
					'", NOW() )';
9 florian 149
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
150
	}
54 florian 151
	//cas ou un commentaire va etre supprime
15 florian 152
	elseif (isset($_GET['id_commentaire'])) {
153
		$requete = 'DELETE FROM bazar_commentaires WHERE bc_id_commentaire='.$_GET['id_commentaire'].' LIMIT 1';
9 florian 154
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
155
	}
15 florian 156
	else {
157
		if (isset($_GET['action'])) {
158
			if ($_GET['action']==BAZ_VOIR_FICHE) {
54 florian 159
				//sinon on met a jour le nb de visites pour la fiche, puisque c'est une simple consultation
15 florian 160
				$requete = 'UPDATE bazar_fiche SET bf_nb_consultations=bf_nb_consultations+1 WHERE bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
161
				$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
162
			}
163
		}
164
	}
143 alexandre_ 165
	$requete = 'SELECT * FROM bazar_fiche WHERE bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
9 florian 166
 
143 alexandre_ 167
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
168
	(DB::isError($resultat)) ? die(BOG_afficherErreurSql(__FILE__, __LINE__, $resultat->getMessage(), $requete))
169
	    : '';
170
 
171
	$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC) ;
186 jp_milcent 172
	if (!isset($GLOBALS['_BAZAR_']['typeannonce'])) $GLOBALS['_BAZAR_']['typeannonce'] = $ligne['bf_ce_nature'];
143 alexandre_ 173
 
45 florian 174
	//on verifie si l'utilisateur est administrateur
9 florian 175
	$est_admin=0;
186 jp_milcent 176
	$requete='SELECT bn_id_nature, bn_template, bn_commentaire FROM bazar_nature WHERE bn_id_nature="'.$GLOBALS['_BAZAR_']['typeannonce'].'"';
143 alexandre_ 177
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
178
	if (DB::isError($resultat)) {
179
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
180
	}
181
	$result = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
182
	$id_nature = $result['bn_id_nature'];
183
	if (!isset($GLOBALS['_BAZAR_']['template'])) $GLOBALS['_BAZAR_']['template'] = $result['bn_template'];
184
	if (!isset($GLOBALS['_BAZAR_']['commentaire'])) $GLOBALS['_BAZAR_']['commentaire'] = $result['bn_commentaire'];
9 florian 185
	if ($GLOBALS['AUTH']->getAuth()) {
186
		if ((niveau_droit($result['bn_id_nature'],$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID))=='administrateur')
187
		     or(niveau_droit('0',$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID))=='superadministrateur'))
188
		{
189
		        $est_admin=1;
190
		}
191
	}
76 florian 192
	//affiche le titre sous forme d'image
87 alexandre_ 193
	if (isset ($GLOBALS['_BAZAR_']['image_titre']) && $GLOBALS['_BAZAR_']['image_titre']!='') {
185 jp_milcent 194
		$res .= '<img id="BAZ_img_titre" src="client/bazar/images/'.$GLOBALS['_BAZAR_']['image_titre'].'" alt="'.$result['bn_label_nature'].'" />'.'<br />'."\n";
55 florian 195
	}
56 florian 196
	//affiche le texte sinon
197
	else {
143 alexandre_ 198
		//$res .= '<h2 class="BAZ_titre">'.$GLOBALS['_BAZAR_']['typeannonce'].'</h2>'."\n";
56 florian 199
	}
55 florian 200
	$res .= '<div class="BAZ_cadre_fiche">'."\n";
123 alexandre_ 201
 
87 alexandre_ 202
	$GLOBALS['_BAZAR_']['annonceur'] = $ligne['bf_ce_utilisateur'] ;
45 florian 203
	//si le template existe, on genere le template
5 florian 204
	if ((file_exists(BAZ_CHEMIN_APPLI.'templates/'.$GLOBALS['_BAZAR_']['typeannonce'].'-fiche.php'))) {
205
		include_once(BAZ_CHEMIN_APPLI.'templates/'.$GLOBALS['_BAZAR_']['typeannonce'].'-fiche.php');
55 florian 206
		$res .=genere_fiche($ligne);
5 florian 207
	}
208
	//on affiche ligne par ligne sinon
83 alexandre_ 209
	else {
55 florian 210
		//cas d'une image personalisée
7 florian 211
		if (isset($ligne['bf_url_image'])) {
212
			$res .= '<div id="fiche_image">'."\n";
165 alexandre_ 213
			$res .= '<img src="client/bazar/upload/'.$ligne['bf_url_image'].'" border=0 alt="'.BAZ_TEXTE_IMG_ALTERNATIF.'" />'."\n";
7 florian 214
			$res .= '</div>'."\n";
215
		}
55 florian 216
		//cas d'une image par défaut
87 alexandre_ 217
		elseif (isset ($GLOBALS['_BAZAR_']['image_logo']) && $GLOBALS['_BAZAR_']['image_logo']!='') {
55 florian 218
			$res .= '<div id="fiche_image">'."\n";
75 florian 219
			$res .= '<img src="client/bazar/images/'.$GLOBALS['_BAZAR_']['image_logo'].'" border=0 alt="'.BAZ_TEXTE_IMG_ALTERNATIF.'" width="130" height="130" />'."\n";
55 florian 220
			$res .= '</div>'."\n";
7 florian 221
		}
55 florian 222
		$res .= '<h1 id="fiche_titre">'.$ligne['bf_titre'].'</h1>'."\n";
122 florian 223
		$res .= '<div id="BAZ_description">'.nl2br($ligne['bf_description']).'</div>'."\n";
69 alexandre_ 224
		$tableau=baz_valeurs_template($GLOBALS['_BAZAR_']['template']);
5 florian 225
		for ($i=0; $i<count($tableau); $i++) {
118 florian 226
			if (isset($ligne[$tableau[$i]['nom_bdd']]) && ( $tableau[$i]['type']=='texte' || $tableau[$i]['type']=='textelong' ) ) {
87 alexandre_ 227
				$val=$tableau[$i]['nom_bdd'];
122 florian 228
				if (!in_array($val, array ('bf_titre', 'bf_description'))) {
229
					if ($ligne[$val] != '' and $ligne[$val] != BAZ_CHOISIR and $ligne[$val] != BAZ_NON_PRECISE) {
192 alexandre_ 230
						$res .= '<span class="rubrique" id="'.$tableau[$i]['nom_bdd'].'_rubrique">'.$tableau[$i]['label'].':</span>'."\n";
231
						$res .= '<span class="description" id="'.$tableau[$i]['nom_bdd'].'_description"> '.nl2br($ligne[$val]).'</span>'."\n".'<br />'."\n";
7 florian 232
					}
5 florian 233
				}
234
			}
118 florian 235
			elseif ( $tableau[$i]['type']=='liste' || $tableau[$i]['type']=='checkbox' ) {
75 florian 236
				//pour les champs renseignes par une liste, on va chercher le label de la liste, plutot que l'id
237
				$requete = 'SELECT blv_label FROM bazar_fiche_valeur_liste, bazar_liste_valeurs WHERE bfvl_ce_fiche='.$GLOBALS['_BAZAR_']['id_fiche'].
238
				' AND  bfvl_ce_liste='.$tableau[$i]['nom_bdd'].' AND bfvl_valeur=blv_valeur AND blv_ce_liste='.$tableau[$i]['nom_bdd'].' AND blv_ce_i18n="'.$GLOBALS['_BAZAR_']['langue'].'"';
239
				$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
240
				if (DB::isError ($resultat)) {
241
					die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
242
				}
76 florian 243
				$val='';$nb=0;
75 florian 244
				while ($tab = $resultat->fetchRow()) {
76 florian 245
					if ($nb>0) $val .= ', ';
246
					$val .= $tab[0];
247
					$nb++;
75 florian 248
				}
122 florian 249
				if ($val != '' and $val != BAZ_CHOISIR and $val != BAZ_NON_PRECISE) {
192 alexandre_ 250
					$res .= '<span class="rubrique" id="rubrique_'.$tableau[$i]['nom_bdd'].'">'.$tableau[$i]['label'].':</span>'."\n";
251
					$res .= '<span class="description" id="description_'.$tableau[$i]['nom_bdd'].'"> '.$val.'</span>'."\n".'<br />'."\n";
122 florian 252
				}
75 florian 253
			}
122 florian 254
			elseif ( $tableau[$i]['type']=='listedatedeb' || $tableau[$i]['type']=='listedatefin' ) {
255
				$val=$tableau[$i]['nom_bdd'];
256
				if (!in_array($val, array ('bf_date_debut_validite_fiche', 'bf_date_fin_validite_fiche'))) {
170 alexandre_ 257
					if ($ligne[$val] != '' && $ligne[$val] != '0000-00-00') {
192 alexandre_ 258
						$res .= '<span class="rubrique" id="'.$tableau[$i]['nom_bdd'].'_rubrique">'.$tableau[$i]['label'].':</span>'."\n";
259
						$res .= '<span class="description" id="'.$tableau[$i]['nom_bdd'].'_description"> '.strftime('%d.%m.%Y',strtotime($ligne[$val])).'</span>'."\n".'<br />'."\n";
122 florian 260
					}
261
				}
262
			}
152 florian 263
			elseif ( $tableau[$i]['type']=='wikini' ) {
264
				$res .= '<div class="lien_wikini"><a href="wikini/'.baz_titre_wiki($ligne["bf_titre"]).'">'.BAZ_ENTRER_PROJET.'</a></div>'."\n";
265
			}
5 florian 266
		}
7 florian 267
	//afficher les liens pour l'annonce
268
	$requete = 'SELECT  bu_url, bu_descriptif_url FROM bazar_url WHERE bu_ce_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
269
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
270
	if (DB::isError($resultat)) {
271
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
272
	}
273
	if ($resultat->numRows()>0) {
274
		$res .= '<span class="rubrique">'.BAZ_LIEN_INTERNET.':</span>'."\n";
275
		$res .= '<span class="description">'."\n";
276
		$res .= '<ul>'."\n";
277
		while ($ligne1 = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
278
			$res .= '<li><a href="'.$ligne1['bu_url'].'" target="_blank">'.$ligne1['bu_descriptif_url'].'</a></li>'."\n";
5 florian 279
		}
7 florian 280
		$res .= '</ul></span>'."\n";
281
	}
282
 
283
	//afficher les fichiers pour l'annonce
284
	$requete = 'SELECT  bfj_description, bfj_fichier FROM bazar_fichier_joint WHERE bfj_ce_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
285
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
286
	if (DB::isError($resultat)) {
287
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
288
	}
289
	if ($resultat->numRows()>0) {
290
		$res .= '<span class="rubrique">'.BAZ_LISTE_FICHIERS_JOINTS.':</span>'."\n";
291
		$res .= '<span class="description">'."\n";
292
		$res .= '<ul>'."\n";
293
		while ($ligne2 = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
118 florian 294
			$res .= '<li><a href="client/bazar/upload/'.$ligne2['bfj_fichier'].'">'.$ligne2['bfj_description'].'</a></li>'."\n";
7 florian 295
		}
296
		$res .= '</ul></span>'."\n";
297
	}
9 florian 298
	$res .= '<div class="bulle_haut">&nbsp;</div>'."\n";
299
	$res .= '<div class="bulle_corps">'."\n";
7 florian 300
 
45 florian 301
	//affichage du redacteur de la fiche
69 alexandre_ 302
	$requete = 'SELECT '.BAZ_CHAMPS_NOM.', '.BAZ_CHAMPS_PRENOM.', '.BAZ_CHAMPS_EMAIL.
303
					' FROM '.BAZ_ANNUAIRE.' WHERE '.BAZ_CHAMPS_ID.'='.$ligne['bf_ce_utilisateur'];
7 florian 304
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
305
	if (DB::isError($resultat)) {
306
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
307
	}
308
	while ($redacteur = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
309
		$res .= BAZ_FICHE_ECRITE.'<a href="mailto:'.$redacteur[BAZ_CHAMPS_EMAIL].'">'.$redacteur[BAZ_CHAMPS_PRENOM].' '.$redacteur[BAZ_CHAMPS_NOM].'</a><br />'."\n";
310
	}
76 florian 311
	$res .= BAZ_NB_VUS.'<strong>'.$ligne['bf_nb_consultations'].'</strong>'.BAZ_FOIS.'<br />'."\n";
7 florian 312
	$res .= '</div>'."\n";
9 florian 313
	$res .= '<div class="bulle_bas">&nbsp;</div>'."\n";
7 florian 314
	$res .= '<div id="BAZ_bas_page">';
55 florian 315
	}
9 florian 316
 
45 florian 317
	//informations complementaires (id fiche, etat publication,... )
143 alexandre_ 318
	if ($danslappli==1) {
170 alexandre_ 319
		if ($ligne['bf_statut_fiche']==1 && $GLOBALS['_BAZAR_']['appropriation']!=1) {
320
			if ($ligne['bf_date_debut_validite_fiche'] != '0000-00-00' && $ligne['bf_date_fin_validite_fiche'] != '0000-00-00') {
321
			$res .= '<span class="rubrique">'.BAZ_PUBLIEE.':</span> '.BAZ_DU.
322
					' '.strftime('%d.%m.%Y',strtotime($ligne['bf_date_debut_validite_fiche'])).' '.
323
					BAZ_AU.' '.strftime('%d.%m.%Y',strtotime($ligne['bf_date_fin_validite_fiche'])).'<br />'."\n";
324
			}
7 florian 325
		}
118 florian 326
		elseif ($GLOBALS['_BAZAR_']['appropriation']!=1 || $ligne['bf_statut_fiche']!=1) {
327
			$res .= '<span class="rubrique">'.BAZ_PUBLIEE.':</span> '.BAZ_NON;
328
			if ( $est_admin ) {
329
				$res .= '&nbsp;&nbsp;&nbsp;<strong>'.BAZ_VALIDER_PUBLICATION.'&nbsp;:&nbsp;</strong>'."\n";
330
				$lien_publie = &$GLOBALS['_BAZAR_']['url'];
331
				$lien_publie->addQueryString('action', BAZ_VOIR_FICHE);
332
				$lien_publie->addQueryString('id_fiche', $GLOBALS['_BAZAR_']['id_fiche']);
333
				$lien_publie->addQueryString('typeannonce', $ligne['bf_ce_nature']);
334
				$lien_publie->addQueryString('publiee', 1);
335
				$res .= '<a href="'.$lien_publie->getURL().'">'.BAZ_OUI.'</a>&nbsp;/&nbsp;';
336
				$lien_publie->removeQueryString('publiee');
337
				$lien_publie->addQueryString('publiee', 0);
338
				$res .='<a href="'.$lien_publie->getURL().'">'.BAZ_NON.'</a>'."\n";
339
				$lien_publie->removeQueryString('publiee');
340
			}
341
			$res .= '<br />'."\n";
7 florian 342
		}
118 florian 343
		//affichage des infos pouvant interesser les admins
344
		if ( $est_admin ) {
139 alexandre_ 345
			$res .= '<span class="rubrique" id="numero_fiche">'.BAZ_NUM_FICHE.':</span> '.$GLOBALS['_BAZAR_']['id_fiche'].'<br />'."\n";
346
			$res .= '<span class="rubrique" id="date_creation">'.BAZ_DATE_CREATION.' :</span> '.strftime('%d.%m.%Y &agrave; %H:%M',strtotime($ligne['bf_date_creation_fiche'])).'<br />'."\n";
118 florian 347
		}
348
		//affichage des infos et du lien pour la mise a jour de la fiche
349
		if ( $est_admin || $GLOBALS['_BAZAR_']['annonceur']==$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID) ) {
139 alexandre_ 350
			$res .= '<span class="rubrique" id="date_mise_a_jour">'.BAZ_DATE_MAJ.' :</span> '.strftime('%d.%m.%Y &agrave; %H:%M',strtotime($ligne['bf_date_maj_fiche']))."\n";
9 florian 351
			$lien_modifier=$GLOBALS['_BAZAR_']['url'];
352
			$lien_modifier->addQueryString('action', BAZ_ACTION_MODIFIER);
353
			$lien_modifier->addQueryString('id_fiche', $GLOBALS['_BAZAR_']['id_fiche']);
69 alexandre_ 354
			$lien_modifier->addQueryString('typeannonce', $ligne['bf_ce_nature']);
139 alexandre_ 355
			$res .= '&nbsp;&nbsp;&nbsp;<a href="'.$lien_modifier->getURL().'" id="modifier_fiche">'.BAZ_MODIFIER_LA_FICHE.'</a>'."\n";
5 florian 356
		}
7 florian 357
	}
358
	$res .= '</div>'."\n";
359
	$res .= '</div>'."\n";
360
 
39 florian 361
	//on ajoute les appropriations, s'il le faut
362
	if (($danslappli==1)and($GLOBALS['_BAZAR_']['appropriation']==1)) {
363
		$res .= '<br />'."\n".'<div class="BAZ_cadre_fiche">'."\n";
118 florian 364
		$res .= '<h3>'.BAZ_LES_STRUCTURES_POSSEDANT_UNE_RESSOURCE.'</h3>'."\n";
40 florian 365
		$requete = 'SELECT '.BAZ_CHAMPS_ID.', '.BAZ_CHAMPS_NOM.' FROM bazar_appropriation,'.BAZ_ANNUAIRE.' WHERE ba_ce_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'].' AND ba_ce_id_structure='.BAZ_CHAMPS_ID.' ORDER BY '.BAZ_CHAMPS_NOM.' ASC';
366
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
367
		if (DB::isError ($resultat)) {
368
			die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
369
		}
118 florian 370
		$possede_ressource=0;
40 florian 371
		if ($resultat->numRows()>0) {
372
			$res .= BAZ_IL_Y_A.$resultat->numRows().' ';
118 florian 373
			if ($resultat->numRows()==1) $res .= BAZ_STRUCTURE_POSSEDANT.'<br />'."\n";
374
			else $res .= BAZ_STRUCTURES_POSSEDANT.'<br />'."\n";
375
			$res .= '<ul>'."\n";
40 florian 376
			while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
118 florian 377
				$res .= '<li><a href="'.BAZ_URL_ANNUAIRE.'&amp;voir_fiche='.$ligne[BAZ_CHAMPS_ID].'" onclick="javascript:window.open(this.href);return false;">'.$ligne[BAZ_CHAMPS_NOM].'</a></li>'."\n";
378
				if ($GLOBALS['AUTH']->getAuth() && $GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID)==$ligne[BAZ_CHAMPS_ID]) $possede_ressource=1;
40 florian 379
			}
118 florian 380
			$res .= '</ul><br />'."\n";
40 florian 381
		}
382
		else $res .= BAZ_PAS_D_APPROPRIATION.'<br /><br />'."\n";
118 florian 383
		$res .='<p class="bulle_corps">'."\n";
384
		$lien_appropriation = $GLOBALS['_BAZAR_']['url'];
385
		$lien_appropriation->addQueryString('action', BAZ_VOIR_FICHE);
386
		$lien_appropriation->addQueryString('id_fiche', $GLOBALS['_BAZAR_']['id_fiche']);
387
		if ($possede_ressource) {
388
			$lien_appropriation->addQueryString('appropriation', 0);
389
			$res .= BAZ_POSSEDE_DEJA_RESSOURCE.'<br />'."\n".'<a href="'.$lien_appropriation->getURL().'">'.BAZ_CLIQUER_POUR_VOUS_ENLEVER.'</a>'."\n";
390
			$lien_appropriation->removeQueryString('appropriation');
391
		}
392
		elseif ($GLOBALS['AUTH']->getAuth() && $GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_EST_STRUCTURE)) {
393
			$lien_appropriation->addQueryString('appropriation', 1);
394
			$res .= BAZ_SI_POSSEDE_RESSOURCE.'<br />'."\n".'<a href="'.$lien_appropriation->getURL().'">'.BAZ_CLIQUER_POUR_APPARAITRE.'</a>'."\n";
395
			$lien_appropriation->removeQueryString('appropriation');
396
		}
397
		elseif ($GLOBALS['AUTH']->getAuth() && !$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_EST_STRUCTURE)) {
398
			$res .= BAZ_IL_FAUT_ETRE_STRUCTURE."\n";
399
		}
400
		elseif (!$GLOBALS['AUTH']->getAuth()) {
401
			$res .= BAZ_IL_FAUT_ETRE_IDENTIFIE_STRUCTURE."\n";
402
		}
403
		$res .='</p>'."\n";
39 florian 404
		$res .= '</div>'."\n";
405
	}
406
 
7 florian 407
	//on ajoute les commentaires, s'il le faut
22 florian 408
	if (($danslappli==1)and($GLOBALS['_BAZAR_']['commentaire']==1)) {
39 florian 409
		$res .= '<br />'."\n".'<div class="BAZ_cadre_fiche">'."\n";
7 florian 410
		$res .= '<h3>'.BAZ_LES_COMMENTAIRES.'</h3>'."\n";
411
		$requete = 'SELECT * FROM bazar_commentaires WHERE bc_ce_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'].' ORDER BY bc_date ASC';
5 florian 412
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
7 florian 413
		if (DB::isError ($resultat)) {
414
			die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
5 florian 415
		}
416
		if ($resultat->numRows()>0) {
9 florian 417
			$res .= BAZ_IL_Y_A.$resultat->numRows().' ';
418
			if ($resultat->numRows()==1) $res .= BAZ_COMMENTAIRE.'<br />'."\n";
419
			else $res .= BAZ_COMMENTAIRES.'<br />'."\n";
5 florian 420
			while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
9 florian 421
				$res .= '<div class="bulle_haut">&nbsp;</div>'."\n";
422
				$res .= '<div class="bulle_corps">'."\n";
423
				//affichage du commentaire
424
				$res .= $ligne['bc_commentaire'].'<br />'."\n";
425
				$res .= '</div>'."\n";
426
				$res .= '<div class="bulle_bas">'."\n";
15 florian 427
				$res .= '<div style="font-size:9px;margin-left:10px;">'.BAZ_PAR.' : <strong>'.$ligne['bc_nom'].'</strong>'.BAZ_ECRIT_LE.$ligne['bc_date'].'</div>'."\n";
118 florian 428
				//pour les identifies seulement, administrateurs de la rubrique ou superadmins
9 florian 429
				if ($est_admin==1) {
430
					$url_comment= $GLOBALS['_BAZAR_']['url'];
431
					$url_comment->addQueryString('action', BAZ_VOIR_FICHE);
432
					$url_comment->addQueryString('id_fiche', $GLOBALS['_BAZAR_']['id_fiche']);
15 florian 433
					$url_comment->addQueryString('id_commentaire', $ligne['bc_id_commentaire']);
434
					$res .= '<a href="'.$url_comment->getURL().'" style="font-size:9px;float:right;">'.BAZ_SUPPRIMER.'</a>'."\n";
9 florian 435
				}
436
				$res .= '</div>'."\n";
5 florian 437
			}
438
		}
9 florian 439
		else $res .= BAZ_PAS_DE_COMMENTAIRES.'<br /><br />'."\n";
440
 
441
		//formulaire des commentaires
118 florian 442
		$form_commentaire = new HTML_QuickForm('bazar_commentaire', 'post', $url);
9 florian 443
		$squelette =& $form_commentaire->defaultRenderer();
444
		$squelette->setFormTemplate("\n".'<form {attributes}>'."\n".'{content}'."\n".'</form>'."\n");
118 florian 445
		$squelette->setElementTemplate( '<label style="width:200px;">{label}'.
446
										'<!-- BEGIN required --><span class="symbole_obligatoire">&nbsp;*</span><!-- END required -->'."\n".
447
									    '</label><br />'."\n".'{element}<br />'."\n");
448
		$squelette->setRequiredNoteTemplate("\n".'<span class="symbole_obligatoire"> *{requiredNote}</span>'."\n");
449
		$option=array('style'=>'width:300px;border:1px solid #000;', 'maxlength'=>100);
9 florian 450
		$form_commentaire->addElement('text', 'Nom', BAZ_ENTREZ_VOTRE_NOM, $option);
118 florian 451
		$option=array('style'=>'width:95%;height:100px;white-space: pre;padding:3px;border:1px solid #000;');
116 florian 452
		require_once PAP_CHEMIN_API_PEAR.'HTML/QuickForm/textarea.php';
9 florian 453
		$formtexte= new HTML_QuickForm_textarea('Commentaire', BAZ_ENTREZ_VOTRE_COMMENTAIRE, $option);
454
		$form_commentaire->addElement($formtexte) ;
118 florian 455
		$option=array('style'=>'border:1px solid #000;');
456
		$form_commentaire->addElement('submit', 'Envoyer', BAZ_ENVOYER, $option);
9 florian 457
		$form_commentaire->addRule('Nom', BAZ_NOM_REQUIS, 'required', '', 'client') ;
458
		$form_commentaire->addRule('Commentaire', BAZ_COMMENTAIRE_REQUIS, 'required', '', 'client') ;
459
		$form_commentaire->setRequiredNote(BAZ_CHAMPS_REQUIS) ;
460
		$res .= $form_commentaire->toHTML();
7 florian 461
		$res .= '</div>'."\n";
462
	}
463
 
205 jp_milcent 464
	// Nettoyage de l'url
465
	$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
466
	$GLOBALS['_BAZAR_']['url']->removeQueryString('id_fiche');
467
	$GLOBALS['_BAZAR_']['url']->removeQueryString('id_commentaire');
468
	$GLOBALS['_BAZAR_']['url']->removeQueryString('typeannonce');
5 florian 469
	return $res ;
470
}
471
 
472
 
473
/** RSSversHTML () transforme un flux RSS (en XML) en page HTML
474
*
475
*   On passe en paramètre le contenu du flux RSS, on affiche ou non la description,
476
*   et on choisit de format de la date à l'affichage. On a en sortie du code HTML à afficher
477
*
478
*   @param  string   le contenu du flux RSS
479
*   @param  boolean  afficher ou non la description
480
*   @param  string  choisir le format de date: jmah (12/02/2004 12h34) jmh (12/02 12h34) jma (12/02/2004) jm (12/02) ou rien
481
*
482
*   @return  string    le code HTML
483
*/
64 florian 484
function RSSversHTML($rss, $voirdesc, $formatdate, $affichenb) {
5 florian 485
	if ($rss!='') {
54 florian 486
		$rawitems='';$title='';$url='';$cat='';$date='';
5 florian 487
		$res='';
488
		if( eregi('<item>(.*)</item>', $rss, $rawitems ) ) {
489
			$items = explode('<item>', $rawitems[0]);
83 alexandre_ 490
			$res.='<ul id="BAZ_liste_fiche">'."\n";
5 florian 491
			for( $i = 0; $i < count($items)-1; $i++ ) {
492
				eregi('<title>(.*)</title>',$items[$i+1], $title );
493
				eregi('<link>(.*)</link>',$items[$i+1], $url );
494
				eregi('<description>(.*)</description>',$items[$i+1], $cat);
495
				eregi('<pubDate>(.*)</pubDate>',$items[$i+1], $date);
496
				$res.='<li>';
497
				if ($formatdate=='jm') {$res.=strftime('%d.%m',strtotime($date[1])).': ';}
498
				if ($formatdate=='jma') {$res.=strftime('%d.%m.%Y',strtotime($date[1])).': ';}
499
				if ($formatdate=='jmh') {$res.=strftime('%d.%m %H:%M',strtotime($date[1])).': ';}
500
				if ($formatdate=='jmah') {$res.=strftime('%d.%m.%Y %H:%M',strtotime($date[1])).': ';}
72 alexandre_ 501
				$res.='<a href="'.preg_replace ('/&amp;/', '&', $url[1]).'">'.$title[1].'</a>';
5 florian 502
				if ($voirdesc) {$res.=$cat[1];}
72 alexandre_ 503
				// Ajout du bouton supprimer pour les superadministrateur
98 florian 504
				if (($GLOBALS['AUTH']->getAuth() && niveau_droit(0,$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID))=='superadministrateur')and($url[1]!='#')) {
72 alexandre_ 505
					$mon_url = preg_replace ('/&amp;/', '&', $url[1]) ;
506
					$url_suppr = new Net_URL(preg_replace ('/&amp;/', '&', $mon_url)) ;
507
					$url_suppr->addQueryString('action', BAZ_ACTION_SUPPRESSION) ;
508
		        	$res .= ' ( <a href="'.$url_suppr->getURL().
509
							'" onclick="javascript:return confirm(\''.BAZ_SUPPRIMER.' ?\');">'.
510
							BAZ_SUPPRIMER.'</a> )'."\n" ;
511
					}
5 florian 512
				$res.='</li>'."\n";
513
			}
514
			$res.='</ul>'."\n";
64 florian 515
			if ($affichenb==1) {
516
				//une annonce trouvee, on accorde au singulier
517
				if (((count($items)-1)==1)and($title!=BAZ_PAS_D_ANNONCES)) {
518
					$res = '<br /><h4>'.BAZ_IL_Y_A.' 1 '.BAZ_FICHE_CORRESPONDANTE.'</h4><br />'."\n".$res;
519
				}
520
				//plusieures annonces trouvees, on accorde au pluriel
521
				else {
522
					$res = '<br /><h4>'.BAZ_IL_Y_A.(count($items)-1).' '.BAZ_FICHES_CORRESPONDANTES.'</h4><br />'."\n".$res;
523
				}
524
			}
525
			//cas des fiches pas trouvées
526
			if (((count($items)-1)==1)and($title[1]==BAZ_PAS_D_ANNONCES)) {
527
				$res = '<br /><h4>'.BAZ_PAS_D_ANNONCES.'</h4><br />'."\n";
528
			}
5 florian 529
		}
530
	}
531
	else $res = BAZ_PAS_D_ANNONCES;
125 alexandre_ 532
 
205 jp_milcent 533
	// Nettoyage de l'url
534
	$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
535
 
5 florian 536
	return $res;
537
}
538
 
83 alexandre_ 539
/** gen_RSS() - generer un fichier de flux RSS par type d'annonce
5 florian 540
*
541
* @param   string Le type de l'annonce (laisser vide pour tout type d'annonce)
542
* @param   integer Le nombre d'annonces a regrouper dans le fichier XML (laisser vide pour toutes)
543
* @param   integer L'identifiant de l'emetteur (laisser vide pour tous)
68 florian 544
* @param   integer L'etat de validation de l'annonce (laisser 1 pour les annonces validees, 0 pour les non-validees)
545
* @param   string La requete SQL personnalisee
126 florian 546
* @param   integer La categorie des fiches bazar
5 florian 547
*
548
* @return  string Le code du flux RSS
549
*/
126 florian 550
function gen_RSS($typeannonce='', $nbitem='', $emetteur='', $valide=1, $requeteSQL='', $requeteSQLFrom = '', $requeteWhereListe = '', $categorie_nature='') {
64 florian 551
	// generation de la requete MySQL personnalisee
552
	$req_where=0;
185 jp_milcent 553
	$requete = 'SELECT DISTINCT bf_id_fiche, bf_titre, bf_date_debut_validite_fiche, bf_description,  bn_label_nature, bf_date_creation_fiche '.
125 alexandre_ 554
				'FROM bazar_fiche, bazar_nature '.$requeteSQLFrom.' WHERE '.$requeteWhereListe;
64 florian 555
	if ($valide!=2) {
556
		$requete .= 'bf_statut_fiche='.$valide;
557
		$req_where=1;
558
	}
5 florian 559
	$nomflux=BAZ_DERNIERE_ACTU;
93 alexandre_ 560
	if (!is_array ($typeannonce) && $typeannonce!='' and $typeannonce!='toutes') {
64 florian 561
		if ($req_where==1) {$requete .= ' AND ';}
190 alexandre_ 562
		$requete .= 'bf_ce_nature='.$typeannonce.' and bf_ce_nature=bn_id_nature ';;
64 florian 563
		$req_where=1;
5 florian 564
		//le nom du flux devient le type d'annonce
205 jp_milcent 565
		$requete_nom_flux = 'select bn_label_nature from bazar_nature where bn_id_nature = '.$typeannonce;
149 alexandre_ 566
		$nomflux = $GLOBALS['_BAZAR_']['db']->getOne($requete_nom_flux) ;
5 florian 567
	}
93 alexandre_ 568
	// Cas où il y plusieurs type d annonce demande
569
	if (is_array ($typeannonce)) {
570
		if ($req_where==1) {$requete .= ' AND ';}
571
		$requete .= 'bf_ce_nature IN (' ;
572
		$chaine = '';
573
		foreach ($typeannonce as $valeur) $chaine .= '"'.$valeur.'",' ;
574
		$requete .= substr ($chaine, 0, strlen ($chaine)-1) ;
195 alexandre_ 575
		$requete .= ') and bf_ce_nature=bn_id_nature ';
93 alexandre_ 576
	}
111 alexandre_ 577
	$utilisateur = new Administrateur_bazar ($GLOBALS['AUTH']) ;
64 florian 578
	if ($valide!=0) {
96 alexandre_ 579
 
95 alexandre_ 580
		if ($utilisateur->isSuperAdmin()) {
96 alexandre_ 581
			$req_where=1;
83 alexandre_ 582
		} else {
96 alexandre_ 583
			if ($req_where==1) {
584
				$requete .= ' AND ';
585
			}
83 alexandre_ 586
			$requete .= '(bf_date_debut_validite_fiche<=NOW() or bf_date_debut_validite_fiche="0000-00-00")'.
587
						' AND (bf_date_fin_validite_fiche>=NOW() or bf_date_fin_validite_fiche="0000-00-00") AND bn_id_nature=bf_ce_nature';
588
		}
64 florian 589
	}
5 florian 590
	else $nomflux .= BAZ_A_MODERER;
69 alexandre_ 591
	if ($emetteur!='' && $emetteur!='tous') {
64 florian 592
		if ($req_where==1) {$requete .= ' AND ';}
593
		$requete .= 'bf_ce_utilisateur='.$emetteur;
594
		$req_where=1;
5 florian 595
		//requete pour afficher le nom de la structure
69 alexandre_ 596
		$requetenom = 'SELECT '.BAZ_CHAMPS_NOM.', '.BAZ_CHAMPS_PRENOM.' FROM '.
597
						BAZ_ANNUAIRE.' WHERE '.BAZ_CHAMPS_ID.'='.$emetteur;
5 florian 598
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requetenom) ;
599
		if (DB::isError($resultat)) {
118 florian 600
			die ($resultat->getMessage().$resultat->getDebugInfo()) ;
5 florian 601
		}
602
		$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
603
		$nomflux .= ' ('.$ligne[BAZ_CHAMPS_NOM].' '.$ligne[BAZ_CHAMPS_PRENOM].')';
604
	}
64 florian 605
	if ($requeteSQL!='') {
606
		if ($req_where==1) {$requete .= ' AND ';}
607
		$requete .= '('.$requeteSQL.')';
608
		$req_where=1;
609
	}
126 florian 610
	if ($categorie_nature!='') {
611
		if ($req_where==1) {$requete .= ' AND ';}
195 alexandre_ 612
		$requete .= 'bn_ce_id_menu IN ('.$categorie_nature.') and bf_ce_nature=bn_id_nature ';
126 florian 613
		$req_where=1;
614
	}
615
 
164 alexandre_ 616
	$requete .= ' ORDER BY   bf_date_creation_fiche DESC, bf_date_fin_validite_fiche DESC, bf_date_maj_fiche DESC';
5 florian 617
	if ($nbitem!='') {$requete .= ' LIMIT 0,'.$nbitem;}
618
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
619
	if (DB::isError($resultat)) {
83 alexandre_ 620
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
5 florian 621
	}
190 alexandre_ 622
 
623
	function xmlEntities($s){
624
		//build first an assoc. array with the entities we want to match
625
		$table1 = get_html_translation_table(HTML_ENTITIES, ENT_QUOTES);
626
 
627
		//now build another assoc. array with the entities we want to replace (numeric entities)
628
		foreach ($table1 as $k=>$v){
629
		  $table1[$k] = "/$v/";
630
		  $c = htmlentities($k,ENT_QUOTES,"UTF-8");
631
		  $table2[$c] = "&#".ord($k).";";
632
		}
633
 
634
		//now perform a replacement using preg_replace
635
		//each matched value in array 1 will be replaced with the corresponding value in array 2
636
		$s = preg_replace($table1,$table2,$s);
637
		return $s;
638
	}
639
 
640
	include_once 'XML/Util.php' ;
641
 
642
	$xml = XML_Util::getXMLDeclaration('1.0', 'ISO-8859-1', 'no') ;
643
	$xml .= XML_Util::createStartElement ('rss', array('version' => '2.0')) ;
644
	$xml .= XML_Util::createStartElement ('channel');
645
	$xml .= XML_Util::createTag ('title', null, $nomflux, null, false);
646
	$xml .= XML_Util::createTag ('link', null, BAZ_RSS_ADRESSESITE);
647
	$xml .= XML_Util::createTag ('description', null, BAZ_RSS_DESCRIPTIONSITE);
648
	$xml .= XML_Util::createTag ('language', null, 'fr-FR');
649
	$xml .= XML_Util::createTag ('copyright', null, 'Copyright 2005 '.BAZ_RSS_NOMSITE);
650
	$xml .= XML_Util::createTag ('lastBuildDate', null, strftime('%d %b %Y %H:%M:%S GMT'));
651
	$xml .= XML_Util::createTag ('docs', null, 'http://www.stervinou.com/projets/rss/');
652
	$xml .= XML_Util::createTag ('category', null, BAZ_RSS_CATEGORIE);
653
	$xml .= XML_Util::createTag ('managingEditor', null, BAZ_RSS_MANAGINGEDITOR);
654
	$xml .= XML_Util::createTag ('webMaster', null, BAZ_RSS_WEBMASTER);
655
	$xml .= XML_Util::createTag ('ttl', null, '60');
656
	$xml .= XML_Util::createStartElement ('image');
657
		$xml .= XML_Util::createTag ('title', null, BAZ_RSS_NOMSITE);
658
		$xml .= XML_Util::createTag ('url', null, BAZ_RSS_LOGOSITE);
659
		$xml .= XML_Util::createTag ('link', null, BAZ_RSS_ADRESSESITE);
660
	$xml .= XML_Util::createEndElement ('image');
5 florian 661
	if ($resultat->numRows()>0) {
662
		// Creation des items : titre + lien + description + date de publication
663
		while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
190 alexandre_ 664
			$xml .= XML_Util::createStartElement ('item');
195 alexandre_ 665
			$caractere = array('/\x92/', '/\x85/', '/\x80/', '/\x97/', '/\x96/');
666
			$caractere_remplacement = array ('&#8217;', '&#8230;', '&#8364;', '&#8212;', '&#8211;');
667
			$xml .= XML_Util::createTag ('title', null, preg_replace ($caractere, $caractere_remplacement,
668
													XML_Util::replaceEntities($ligne['bf_titre'])));
5 florian 669
			$lien=$GLOBALS['_BAZAR_']['url'];
670
			$lien->addQueryString('action', BAZ_VOIR_FICHE);
671
			$lien->addQueryString('id_fiche', $ligne['bf_id_fiche']);
190 alexandre_ 672
			$xml .= XML_Util::createTag ('link', null, $lien->getURL());
673
			$xml .= XML_Util::createTag ('guid', null, $lien->getURL());
674
			$xml .= XML_Util::createStartElement ('description');
87 alexandre_ 675
			if ($_GET['action'] != BAZ_VOIR_TOUTES_ANNONCES) {
195 alexandre_ 676
				$xml .= XML_Util::createCDataSection (preg_replace ($caractere, $caractere_remplacement, $ligne['bf_description']));
87 alexandre_ 677
			}
190 alexandre_ 678
			$xml .= XML_Util::createEndElement ('description');
185 jp_milcent 679
			if ($ligne['bf_date_debut_validite_fiche'] == '0000-00-00') $date_pub = $ligne[' bf_date_creation_fiche'] ; else
680
					$date_pub =  $ligne['bf_date_debut_validite_fiche'];
190 alexandre_ 681
			$xml .= XML_Util::createTag ('pubDate', null, strftime('%d %b %Y %H:%M:%S GMT',strtotime($date_pub)));
682
			$xml .= XML_Util::createEndElement ('item');
5 florian 683
		}
684
	}
685
	else {//pas d'annonces
190 alexandre_ 686
		$xml .= XML_Util::createStartElement ('item');
687
		$xml .= XML_Util::createTag ('title', null, BAZ_PAS_D_ANNONCES);
688
		$xml .= XML_Util::createTag ('link', null, '#');
689
		$xml .= XML_Util::createTag ('description', null, BAZ_PAS_D_ANNONCES);
690
		$xml .= XML_Util::createTag ('pubDate', null, strftime('%d %b %Y %H:%M:%S GMT',strtotime('12/12/2004')));
691
		$xml .= XML_Util::createEndElement ('item');
692
 
5 florian 693
	}
190 alexandre_ 694
	$xml .= XML_Util::createEndElement ('channel');
695
	$xml .= XML_Util::createEndElement('rss') ;
205 jp_milcent 696
	$xml .= XML_Util::createEndElement ('channel');
697
	$xml .= XML_Util::createEndElement('rss') ;
698
 
699
	// Nettoyage de l'url
700
	$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
701
	$GLOBALS['_BAZAR_']['url']->removeQueryString('id_fiche');
702
 
5 florian 703
	return $xml;
704
}
705
 
706
 
707
/** baz_liste() Formate la liste de toutes les annonces actuelles
708
*
64 florian 709
*   @return  string    le code HTML a afficher
5 florian 710
*/
711
function baz_liste($typeannonce='toutes') {
45 florian 712
	//creation du lien pour le formulaire de recherche
22 florian 713
	$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_VOIR_TOUTES_ANNONCES);
127 alexandre_ 714
	if (isset($_REQUEST['recherche_avancee'])) $GLOBALS['_BAZAR_']['url']->addQueryString ('recherche_avancee', $_REQUEST['recherche_avancee']);
93 alexandre_ 715
	$lien_formulaire = preg_replace ('/&amp;/', '&', $GLOBALS['_BAZAR_']['url']->getURL()) ;
22 florian 716
	$formtemplate = new HTML_QuickForm('formulaire', 'post', $lien_formulaire) ;
126 florian 717
	$squelette =& $formtemplate->defaultRenderer();
718
   	$squelette->setFormTemplate("\n".'<form {attributes}>'."\n".'<table style="border:0;width:100%;">'."\n".'{content}'."\n".'</table>'."\n".'</form>'."\n");
719
    $squelette->setElementTemplate( '<tr>'."\n".'<td style="font-size:12px;width:120px;text-align:right;">'."\n".'{label}'.
720
    		                        '<!-- BEGIN required --><span class="symbole_obligatoire">&nbsp;*</span><!-- END required -->'."\n".
721
    								' :</td>'."\n".'<td style="text-align:left;padding:5px;"> '."\n".'{element}'."\n".
722
                                    '<!-- BEGIN error --><span class="erreur">{error}</span><!-- END error -->'."\n".
723
                                    '</td>'."\n".'</tr>'."\n");
724
 	$squelette->setElementTemplate( '<tr>'."\n".'<td colspan="2" class="liste_a_cocher"><strong>{label}&nbsp;{element}</strong>'."\n".
725
                                    '<!-- BEGIN required --><span class="symbole_obligatoire">&nbsp;*</span><!-- END required -->'."\n".'</td>'."\n".'</tr>'."\n", 'accept_condition');
134 florian 726
  	$squelette->setElementTemplate( '<tr><td colspan="2">{label}{element}</td></tr>'."\n", 'rechercher');
126 florian 727
 
728
 	$squelette->setRequiredNoteTemplate("\n".'<tr>'."\n".'<td colspan="2" class="symbole_obligatoire">* {requiredNote}</td></tr>'."\n");
729
	//Traduction de champs requis
730
	$formtemplate->setRequiredNote(BAZ_CHAMPS_REQUIS) ;
731
	$formtemplate->setJsWarnings(BAZ_ERREUR_SAISIE,BAZ_VEUILLEZ_CORRIGER);
732
 
64 florian 733
 
734
	//cas du formulaire de recherche proposant de chercher parmis tous les types d'annonces
93 alexandre_ 735
	//requete pour obtenir l'id et le label des types d'annonces
736
	$requete = 'SELECT bn_id_nature, bn_label_nature '.
185 jp_milcent 737
	           'FROM bazar_nature WHERE bn_ce_id_menu IN ('.$GLOBALS['_BAZAR_']['categorie_nature'].') '.
93 alexandre_ 738
			   'ORDER BY bn_label_nature ASC';
739
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
740
	if (DB::isError($resultat)) {
741
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
742
	}
126 florian 743
	//on récupère le nb de types de fiches, pour plus tard
744
	$nb_type_de_fiches=$resultat->numRows();
93 alexandre_ 745
	$type_annonce_select['toutes']=BAZ_TOUS_TYPES_FICHES;
746
	while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
105 florian 747
		$type_annonce_select[$ligne['bn_id_nature']] = $ligne['bn_label_nature'];
93 alexandre_ 748
		$tableau_typeannonces[] = $ligne['bn_id_nature'] ;
749
	}
126 florian 750
	if ($nb_type_de_fiches>1 && $GLOBALS['_BAZAR_']['typeannonce']=='toutes') {
64 florian 751
		$res= '<h2>'.BAZ_TOUTES_LES_ANNONCES.'</h2><br />'."\n";
126 florian 752
		$option=array('style'=>'border:1px solid #000;width: 200px;font:12px Myriad, Arial, sans-serif;',
115 alexandre_ 753
						'onchange' => 'javascript:this.form.submit();');
64 florian 754
		$formtemplate->addElement ('select', 'nature', BAZ_TYPEANNONCE, $type_annonce_select, $option) ;
126 florian 755
		if (isset($_REQUEST['nature'])) {
756
			$defauts=array('nature'=>$_REQUEST['nature']);
757
			$formtemplate->setDefaults($defauts);
758
		}
22 florian 759
	}
64 florian 760
	//cas du type d'annonces prédéfini
761
	else {
154 florian 762
		if ($nb_type_de_fiches==1) {
763
			$GLOBALS['_BAZAR_']['typeannonce']=end($type_annonce_select);
764
			$GLOBALS['_BAZAR_']['id_typeannonce']=key($type_annonce_select);
765
		}
105 florian 766
		$res = '<h2>'.BAZ_TOUTES_LES_ANNONCES_DE_TYPE.' '.$GLOBALS['_BAZAR_']['typeannonce'].'</h2>'."\n";
22 florian 767
	}
83 alexandre_ 768
 
64 florian 769
	//requete pour obtenir l'id, le nom et prenom de toutes les personnes ayant depose une fiche
126 florian 770
	// dans le but de construire l'élément de formulaire select avec les noms des émetteurs de fiche
93 alexandre_ 771
	if (BAZ_RECHERCHE_PAR_EMETTEUR) {
772
		$requete = 'SELECT '.BAZ_CHAMPS_ID.', '.BAZ_CHAMPS_NOM.', '.BAZ_CHAMPS_PRENOM.' '.
129 florian 773
		           'FROM bazar_fiche,'.BAZ_ANNUAIRE.' WHERE ' ;
93 alexandre_ 774
 
775
		$requete .= ' bf_date_debut_validite_fiche<=NOW() AND bf_date_fin_validite_fiche>=NOW() and';
776
 
777
		$requete .= ' bf_ce_utilisateur='.BAZ_CHAMPS_ID.' ';
778
	    if (!isset($_REQUEST['nature'])) {
126 florian 779
	    		if (isset($GLOBALS['_BAZAR_']['id_typeannonce'])) {
780
	    			$requete .= 'AND bf_ce_nature="'.$GLOBALS['_BAZAR_']['id_typeannonce'].'" ';
781
	    		}
782
		}
783
		else {
784
	    		if ($_REQUEST['nature']!='toutes') {
785
	    			$requete .= 'AND bf_ce_nature='.$_REQUEST['nature'].' ';
786
	    		}
93 alexandre_ 787
	    }
788
 
789
	    $requete .= 'ORDER BY '.BAZ_CHAMPS_NOM.' ASC';
790
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
791
		if (DB::isError($resultat)) {
792
			die ($resultat->getMessage().$resultat->getDebugInfo()) ;
793
		}
794
		$personnes_select['tous']=BAZ_TOUS_LES_EMETTEURS;
795
		while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
796
			$personnes_select[$ligne[BAZ_CHAMPS_ID]] = $ligne[BAZ_CHAMPS_NOM]." ".$ligne[BAZ_CHAMPS_PRENOM] ;
797
		}
126 florian 798
		$option=array('style'=>'border:1px solid #000;width: 200px;font:12px Myriad, Arial, sans-serif;');
93 alexandre_ 799
		$formtemplate->addElement ('select', 'personnes', BAZ_EMETTEUR, $personnes_select, $option) ;
800
	} else {
801
		$formtemplate->addElement ('hidden', 'personnes', 'tous') ;
22 florian 802
	}
93 alexandre_ 803
 
83 alexandre_ 804
		//pour les super-administrateurs, on peut voir les annonces non validées
64 florian 805
	//on verifie si l'utilisateur est administrateur
111 alexandre_ 806
	$utilisateur = new Administrateur_bazar($GLOBALS['AUTH']) ;
83 alexandre_ 807
 
93 alexandre_ 808
	if ($utilisateur->isSuperAdmin()) {
126 florian 809
		$option=array('style'=>'border:1px solid #000;width: 200px;font:12px Myriad, Arial, sans-serif;');
64 florian 810
		$valide_select[0] = BAZ_FICHES_PAS_VALIDEES;
811
		$valide_select[1] = BAZ_FICHES_VALIDEES;
812
		$valide_select[2] = BAZ_LES_DEUX;
813
		$formtemplate->addElement ('select', 'valides', BAZ_VALIDE, $valide_select, $option) ;
98 florian 814
		$defauts=array('valides'=>1);
64 florian 815
		$formtemplate->setDefaults($defauts);
816
	}
817
 
818
	//champs texte pour entrer les mots cles
126 florian 819
	$option=array('maxlength'=>60,'style'=>'border:1px solid #000;width:200px;font:12px Myriad, Arial, sans-serif;');
22 florian 820
	$formtemplate->addElement('text', 'recherche_mots_cles', BAZ_MOT_CLE, $option) ;
64 florian 821
 
822
	//option cachee pour savoir si le formulaire a ete appele deja
823
	$formtemplate->addElement('hidden', 'recherche_effectuee', 1) ;
125 alexandre_ 824
 
825
	// Ajout des options si un type de fiche a ete choisie
154 florian 826
	if ( (isset($_REQUEST['nature']) && $_REQUEST['nature'] != 'toutes') || (isset($GLOBALS['_BAZAR_']['categorie_nature']) && $nb_type_de_fiches==1)) {
126 florian 827
		if ( BAZ_MOTEUR_RECHERCHE_AVANCEE || ( isset($_REQUEST['recherche_avancee'])&&$_REQUEST['recherche_avancee']==1) ) {
828
			if ($GLOBALS['_BAZAR_']['categorie_nature'] != '') {
829
				$champs_requete = '' ;
830
				if (!isset($_REQUEST['nature']) || $_REQUEST['nature'] == '') {
831
					$_REQUEST['nature'] = $tableau_typeannonces[0];
832
				}
125 alexandre_ 833
			}
126 florian 834
			// Récupération du template
185 jp_milcent 835
			$requete = 'SELECT bn_template FROM bazar_nature WHERE bn_id_nature = '.$_REQUEST['nature'];
126 florian 836
			$resultat = $GLOBALS['_BAZAR_']['db']->getOne($requete) ;
837
			if (DB::isError($resultat)) {
838
				die ($resultat->getMessage().$resultat->getDebugInfo()) ;
839
			}
840
 
154 florian 841
			if (isset($_REQUEST['recherche_avancee']) && $_REQUEST['recherche_avancee']==1) {
126 florian 842
				foreach(array_merge($_POST, $_GET) as $cle => $valeur) $GLOBALS['_BAZAR_']['url']->addQueryString($cle, $valeur);
843
				$GLOBALS['_BAZAR_']['url']->addQueryString('recherche_avancee', '0');
844
				$lien_recherche_de_base = '<a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_RECHERCHE_DE_BASE.'</a><br />';
845
				//lien recherche de base
846
				labelhtml($formtemplate,'',$lien_recherche_de_base,'','','','','');
847
			}
848
 
849
			$tableau = baz_valeurs_template($resultat) ;
850
			for ($i=0; $i<count($tableau); $i++) {
851
				if (($tableau[$i]['type'] == 'liste' || $tableau[$i]['type'] == 'checkbox') && $tableau[$i]['recherche'] == 1) {
852
					$tableau[$i]['type']($formtemplate, $tableau[$i]['nom_bdd'], $tableau[$i]['label'], $tableau[$i]['limite1'],
853
			                         $tableau[$i]['limite2'], $tableau[$i]['defaut'], $tableau[$i]['table_source'], $tableau[$i]['obligatoire'], 1) ;
125 alexandre_ 854
				}
855
			}
126 florian 856
 
857
		}
858
		else {
859
			foreach(array_merge($_POST, $_GET) as $cle => $valeur) $GLOBALS['_BAZAR_']['url']->addQueryString($cle, $valeur);
860
			$GLOBALS['_BAZAR_']['url']->addQueryString('recherche_avancee', '1');
205 jp_milcent 861
			$lien_recherche_avancee = '<a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_RECHERCHE_AVANCEE.'</a><br />';
862
			foreach(array_merge($_POST, $_GET) as $cle => $valeur) $GLOBALS['_BAZAR_']['url']->removeQueryString($cle);
126 florian 863
		}
125 alexandre_ 864
	}
126 florian 865
 
866
	//lien recherche avancee
867
	if (isset($lien_recherche_avancee)) {
868
		labelhtml($formtemplate,'',$lien_recherche_avancee,'','','','','');
869
	}
870
 
22 florian 871
	//Bouton de validation du formulaire
154 florian 872
	$option=array('style'=>'border:1px solid #000;width:100px;font:12px Myriad, Arial, sans-serif;');
134 florian 873
	$formtemplate->addElement('submit', 'rechercher', BAZ_RECHERCHER, $option);
64 florian 874
 
875
	//affichage du formulaire
178 alexandre_ 876
	//$res.=$formtemplate->toHTML()."\n";
64 florian 877
 
125 alexandre_ 878
 
115 alexandre_ 879
	// Ajout de la table bazar_fiche_liste_valeur dans le from de la requete
880
	$case_coche = false ;
126 florian 881
	$nb_jointures=0;
115 alexandre_ 882
	$requeteFrom = '' ;
185 jp_milcent 883
	$requeteWhere = ' bn_ce_id_menu IN ('.$GLOBALS['_BAZAR_']['categorie_nature'].') AND bn_id_nature=bf_ce_nature AND ' ;
115 alexandre_ 884
	$requeteWhereListe = '' ;
885
 
126 florian 886
 	if ( isset($tableau) ) {
887
	 	for ($i = 0; $i < count ($tableau); $i++) {
888
			if ($tableau[$i]['type'] == 'checkbox' || $tableau[$i]['type'] == 'liste') {
889
				$nb_jointures++;
890
				$nom_liste = $tableau[$i]['type'].$tableau[$i]['nom_bdd'] ;
891
				if (isset($_REQUEST[$nom_liste]) && is_array($_REQUEST[$nom_liste])) {
892
					$case_coche = true;
893
					$requeteWhereListe .= ' bfvl'.$nb_jointures.'.bfvl_ce_liste='.$tableau[$i]['nom_bdd'].' AND ' ; // Numéro de la liste
894
					$requeteWhereListe .= ' bfvl'.$nb_jointures.'.bfvl_valeur IN (' ;
895
					$chaine = '';
896
					//var_dump($_REQUEST[$nom_liste]);
897
					foreach ($_REQUEST[$nom_liste] as $cle =>$valeur) {
898
						if ($valeur == 1) {
899
							$chaine .= '"'.$cle.'",' ;
900
						}
901
					}
902
					$requeteWhereListe .= substr ($chaine, 0, strlen ($chaine)-1) ;
903
					$requeteWhereListe .= ') AND ';
904
				} else {
905
					if (isset ($_REQUEST[$nom_liste]) && $_REQUEST[$nom_liste]!=0) {
906
						$requeteWhereListe .= ' bfvl'.$nb_jointures.'.bfvl_ce_liste='.$tableau[$i]['nom_bdd'].' AND ' ; // Numéro de la liste
907
						$requeteWhereListe .= ' bfvl'.$nb_jointures.'.bfvl_valeur='.$_REQUEST[$nom_liste].' AND ';
908
						$case_coche = true;
125 alexandre_ 909
					}
910
				}
911
			}
912
		}
126 florian 913
 	}
125 alexandre_ 914
	if ($case_coche) {
126 florian 915
		for ($i = 0; $i < $nb_jointures ; $i++) {
916
			$requeteFrom .= ', bazar_fiche_valeur_liste  as bfvl'.($i+1) ;
917
			$requeteWhere .= ' bfvl'.($i+1).'.bfvl_ce_fiche=bf_id_fiche AND ';
918
		}
919
		 $requeteWhere .= $requeteWhereListe;
125 alexandre_ 920
	}
126 florian 921
	if (isset($_REQUEST['nature']) && $_REQUEST['nature']!='' && $_REQUEST['nature']!='toutes') {
125 alexandre_ 922
		$requeteWhere = 'bf_ce_nature="'.$_REQUEST['nature'].'" AND '.$requeteWhere;
923
	}
924
 
192 alexandre_ 925
		// Appel du template n 1
926
	include_once BAZ_CHEMIN_APPLI.'bibliotheque/bazarTemplate.class.php' ;
927
 
928
	$template = new bazarTemplate ($GLOBALS['_BAZAR_']['db']) ;
929
	$chaine = $template->getTemplate(1, $GLOBALS['_BAZAR_']['langue'], $GLOBALS['_BAZAR_']['categorie_nature']);
930
	if (bazarTemplate::isError ($chaine)) return $chaine->getMessage() ;
931
	ob_start();
932
	eval ($chaine) ;
933
	$res .= ob_get_contents();
934
	ob_end_clean() ;
935
 
936
 
937
 
64 florian 938
	//affichage des resultats de la recherche si le formulaire a ete envoye
87 alexandre_ 939
	$requeteSQL='';
64 florian 940
	if (isset($_REQUEST['recherche_effectuee'])) {
941
		//preparation de la requete pour trouver les mots cles
125 alexandre_ 942
		if (($_REQUEST['recherche_mots_cles']!='')and($_REQUEST['recherche_mots_cles']!=BAZ_MOT_CLE)) {
64 florian 943
			//decoupage des mots cles
125 alexandre_ 944
			$recherche = split(' ', $_REQUEST['recherche_mots_cles']) ;
64 florian 945
			$nbmots=count($recherche);
946
			$requeteSQL='';
22 florian 947
			for ($i=0; $i<$nbmots; $i++) {
948
				if ($i>0) $requeteSQL.=' OR ';
949
				$requeteSQL.='bf_titre LIKE "%'.$recherche[$i].'%" OR bf_description LIKE "%'.$recherche[$i].'%" ';
950
			}
951
		}
93 alexandre_ 952
		if (!isset($_REQUEST['nature'])) {
953
			if (!isset ($GLOBALS['_BAZAR_']['id_nature'])) $typedefiches = $tableau_typeannonces;
954
			else $typedefiches = $GLOBALS['_BAZAR_']['id_nature'] ;
955
		} else {
956
			$typedefiches = $_REQUEST['nature'] ;
957
			if ($typedefiches == 'toutes') $typedefiches = $tableau_typeannonces ;
958
		}
97 florian 959
		if ($typeannonce!='toutes') $typedefiches=$typeannonce;
125 alexandre_ 960
		if (isset($_REQUEST['valides'])) {$valides=$_REQUEST['valides'];}
64 florian 961
		else {$valides=1;}
962
		//generation de la liste de flux a afficher
126 florian 963
		if (!isset($_REQUEST['personne'])) $_REQUEST['personne']='tous';
964
		$res .= baz_liste_pagine_HTML($typedefiches, '', $_REQUEST['personne'], $valides, $requeteSQL, $requeteFrom, $requeteWhere);
22 florian 965
	}
205 jp_milcent 966
 
967
	// Nettoyage de l'url
968
	$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
969
	$GLOBALS['_BAZAR_']['url']->removeQueryString('annonce');
970
	$GLOBALS['_BAZAR_']['url']->removeQueryString('categorie_nature');
971
	$GLOBALS['_BAZAR_']['url']->removeQueryString('recherche_avancee');
972
 
973
	return $res;
5 florian 974
}
125 alexandre_ 975
 
976
/**
977
 * Cette fonction renvoie du HTML
978
 */
129 florian 979
function baz_liste_pagine_HTML($typeannonce, $nbitem, $emetteur, $valide, $requeteSQL = '', $requeteFrom = '', $requeteWhere = '') {
125 alexandre_ 980
	// generation de la requete MySQL personnalisee
981
	$req_where=0;
192 alexandre_ 982
	$requete = 'SELECT * '.
125 alexandre_ 983
				'FROM bazar_fiche, bazar_nature '.$requeteFrom.' WHERE '.$requeteWhere;
984
	if ($valide!=2) {
129 florian 985
		if ($req_where==1) {$requete .= ' AND ';}
125 alexandre_ 986
		$req_where=1;
129 florian 987
		$requete .= 'bf_statut_fiche='.$valide;
136 alexandre_ 988
	} else {
989
		$requete .= '1 ' ;
990
	}
125 alexandre_ 991
 
143 alexandre_ 992
	$utilisateur = new Administrateur_bazar ($GLOBALS['AUTH']) ;
125 alexandre_ 993
	if ($valide!=0) {
994
		if ($utilisateur->isSuperAdmin()) {
995
			$req_where=1;
996
		} else {
134 florian 997
			if ($req_where==1) {$requete .= ' AND ';}
125 alexandre_ 998
			$requete .= '(bf_date_debut_validite_fiche<=NOW() or bf_date_debut_validite_fiche="0000-00-00")'.
999
						' AND (bf_date_fin_validite_fiche>=NOW() or bf_date_fin_validite_fiche="0000-00-00") AND bn_id_nature=bf_ce_nature';
134 florian 1000
			$req_where=1;
125 alexandre_ 1001
		}
1002
	}
1003
	if ($emetteur!='' && $emetteur!='tous') {
1004
		if ($req_where==1) {$requete .= ' AND ';}
1005
		$requete .= 'bf_ce_utilisateur='.$emetteur;
1006
		$req_where=1;
1007
		//requete pour afficher le nom de la structure
1008
		$requetenom = 'SELECT '.BAZ_CHAMPS_NOM.', '.BAZ_CHAMPS_PRENOM.' FROM '.
1009
						BAZ_ANNUAIRE.' WHERE '.BAZ_CHAMPS_ID.'='.$emetteur;
1010
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requetenom) ;
1011
		if (DB::isError($resultat)) {
1012
			die ($resultat->getMessage().$resultat->getDebugInfo()) ;
1013
		}
1014
		$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
1015
		$nomflux .= ' ('.$ligne[BAZ_CHAMPS_NOM].' '.$ligne[BAZ_CHAMPS_PRENOM].')';
1016
	}
1017
	if ($requeteSQL!='') {
1018
		if ($req_where==1) {$requete .= ' AND ';}
1019
		$requete .= '('.$requeteSQL.')';
1020
		$req_where=1;
1021
	}
1022
	$requete .= ' ORDER BY  bf_date_debut_validite_fiche DESC, bf_date_fin_validite_fiche DESC, bf_date_maj_fiche DESC';
1023
	if ($nbitem!='') {$requete .= ' LIMIT 0,'.$nbitem;}
126 florian 1024
 
125 alexandre_ 1025
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
1026
	if (DB::isError($resultat)) {
1027
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
1028
	}
1029
	$res = '<br /><h4>'.BAZ_IL_Y_A.($resultat->numRows()).' '.BAZ_FICHES_CORRESPONDANTES.'</h4><br />'."\n";
1030
	$res .= '<ul>' ;
1031
	$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_VOIR_FICHE);
1032
 
1033
	$donnees = array();
192 alexandre_ 1034
	while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
125 alexandre_ 1035
		$GLOBALS['_BAZAR_']['url']->addQueryString('id_fiche', $ligne->bf_id_fiche) ;
192 alexandre_ 1036
		array_push ($donnees, $ligne);
125 alexandre_ 1037
	}
1038
	// Mise en place du Pager
126 florian 1039
	include_once PAP_CHEMIN_API_PEAR.'Pager/Pager.php';
125 alexandre_ 1040
	$params = array(
1041
    'mode'       => BAZ_MODE_DIVISION,
1042
    'perPage'    => BAZ_NOMBRE_RES_PAR_PAGE,
1043
    'delta'      => BAZ_DELTA,
1044
    'httpMethod' => 'GET',
126 florian 1045
    'extraVars' => array_merge($_POST, $_GET),
125 alexandre_ 1046
    'altNext' => BAZ_SUIVANT,
1047
    'altPrev' => BAZ_PRECEDENT,
1048
    'nextImg' => BAZ_SUIVANT,
1049
    'prevImg' => BAZ_PRECEDENT,
1050
    'itemData'   => $donnees
1051
	);
1052
	$pager = & Pager::factory($params);
1053
	$data  = $pager->getPageData();
1054
	$links = $pager->getLinks();
192 alexandre_ 1055
 
1056
	// Appel du template n 2
1057
	include_once BAZ_CHEMIN_APPLI.'bibliotheque/bazarTemplate.class.php' ;
1058
	$template = new bazarTemplate ($GLOBALS['_BAZAR_']['db']) ;
1059
	$chaine = $template->getTemplate(2, $GLOBALS['_BAZAR_']['langue'], $GLOBALS['_BAZAR_']['categorie_nature']);
1060
	if (bazarTemplate::isError ($chaine)) return $chaine->getMessage() ;
1061
	ob_start();
1062
	eval ($chaine) ;
1063
	$res .= ob_get_contents();
1064
	ob_end_clean() ;
1065
 
125 alexandre_ 1066
 
205 jp_milcent 1067
	// Nettoyage de l'url
1068
	$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
1069
	$GLOBALS['_BAZAR_']['url']->removeQueryString('id_fiche');
1070
	$GLOBALS['_BAZAR_']['url']->removeQueryString('typeannonce');
1071
	$GLOBALS['_BAZAR_']['url']->removeQueryString('recherche_avancee');
1072
 
125 alexandre_ 1073
	return $res ;
1074
}
1075
 
1076
/* +--Fin du code ----------------------------------------------------------------------------------------+
1077
*
126 florian 1078
* $Log: not supported by cvs2svn $
205 jp_milcent 1079
* Revision 1.60.2.11  2007/03/07 17:20:19  jp_milcent
1080
* Ajout du nettoyage systématique des URLs.
1081
*
1082
* Revision 1.60.2.10  2007/03/06 09:41:15  alexandre_tb
1083
* backport de corrections de bugs de la branche principale
1084
*
1085
* Revision 1.69  2007/03/06 09:39:00  alexandre_tb
1086
* correction de bug sur les jointures et sur les flux rss
1087
*
195 alexandre_ 1088
* Revision 1.68  2007/03/05 10:27:06  alexandre_tb
1089
* ajout d identifiant dans les span qui affiche le detail d une fiche.
1090
* ajout d un modele pour les fiches -> du code a ete deplace dans
1091
* bazar_template
1092
*
192 alexandre_ 1093
* Revision 1.67  2007/02/28 10:18:56  alexandre_tb
1094
* backport de bug depuis la 1.60 de menes
205 jp_milcent 1095
*
1096
* Revision 1.60.2.9  2007/02/27 15:32:40  alexandre_tb
1097
* utilisation de la fonction xmlEntities pour transformer les &amp; en &#...;
1098
* fixe les plantages des flux rss lorsque des guillemets ou des esperluettes étaient présents
1099
*
1100
* Revision 1.60.2.8  2007/02/27 15:11:00  alexandre_tb
1101
* correction d une jointure dans la requete pour les flux rss
1102
* utilisation de la librairie XML_Util de pear pour generer le flux RSS -> plus clair
1103
*
1104
* Revision 1.60.2.7  2007/02/15 17:39:00  jp_milcent
1105
* Remise dans le code d'un bogue...
1106
* A corriger!
1107
*
1108
* Revision 1.60.2.6  2007/02/15 13:42:16  jp_milcent
1109
* Utilisation de IN à la place du = dans les requêtes traitant les catégories de fiches.
1110
* Permet d'utiliser la syntaxe 1,2,3 dans la configuration de categorie_nature.
192 alexandre_ 1111
*
185 jp_milcent 1112
* Revision 1.64  2007/02/02 14:00:41  alexandre_tb
1113
* mise en place d'un template pour l'affichage du moteur de recherche
205 jp_milcent 1114
*
1115
* Revision 1.60.2.5  2007/02/02 13:46:54  alexandre_tb
1116
* correction bug sur une date
1117
*
1118
* Revision 1.60.2.4  2007/01/30 15:45:01  alexandre_tb
1119
* affichage de la date de création e la fiche lorsque la date de début de validité n'est plus bonne
1120
*
1121
* Revision 1.60.2.3  2007/01/29 10:53:46  alexandre_tb
1122
* Mise en place de la constante BAZ_DERNIERES_FICHES pour remplacer le label en francais dans baz_liste
185 jp_milcent 1123
*
178 alexandre_ 1124
* Revision 1.63  2007/01/18 14:37:34  alexandre_tb
1125
* backport
1126
* les dates ne s'affichent pas si elles sont vides.
1127
* les champs dates propose 4 années avant l'année actuelle
1128
*
170 alexandre_ 1129
* Revision 1.60.2.2  2007/01/17 16:01:27  alexandre_tb
1130
* les dates ne s'affichent pas si elles sont vides.
1131
* les champs dates propose 4 années avant l'année actuelle
165 alexandre_ 1132
*
170 alexandre_ 1133
* Revision 1.60.2.1  2007/01/05 14:41:49  alexandre_tb
1134
* backport ordre d affichage des dernieres news et suppression de la taille des images uploadees
1135
*
164 alexandre_ 1136
* Revision 1.60  2006/10/05 08:53:50  florian
1137
* amelioration moteur de recherche, correction de bugs
1138
*
154 florian 1139
* Revision 1.59  2006/09/21 14:19:39  florian
1140
* amélioration des fonctions liés au wikini
1141
*
152 florian 1142
* Revision 1.58  2006/09/15 12:31:40  alexandre_tb
1143
* correction du nom du flux RSS.
1144
*
149 alexandre_ 1145
* Revision 1.57  2006/07/25 13:22:27  alexandre_tb
1146
* réorganisation du code, sans grand changement
1147
*
143 alexandre_ 1148
* Revision 1.56  2006/07/18 14:13:35  alexandre_tb
1149
* Ajout d identifiant HTML
1150
*
139 alexandre_ 1151
* Revision 1.55  2006/07/04 14:29:18  alexandre_tb
1152
* Ajout du bouton supprimer pour les administrateurs
1153
*
138 alexandre_ 1154
* Revision 1.54  2006/07/03 09:51:21  alexandre_tb
1155
* correction du bug recherche sur fiches validés et invalidés.
1156
*
136 alexandre_ 1157
* Revision 1.53  2006/06/29 10:29:51  florian
1158
* correction bug moteur de recherche
1159
*
134 florian 1160
* Revision 1.52  2006/06/02 09:29:07  florian
1161
* debut d'integration de wikini
1162
*
129 florian 1163
* Revision 1.51  2006/05/23 15:41:27  alexandre_tb
1164
* ajout de la numérotation des pages en haut et en bas ds résultats et ajout d'une div class=bazar_numero pour les entourer
1165
*
128 alexandre_ 1166
* Revision 1.50  2006/05/22 09:55:12  alexandre_tb
1167
* ajout de la variable recherche_avancee dans l'action du formulaire
1168
*
127 alexandre_ 1169
* Revision 1.49  2006/05/19 13:54:11  florian
1170
* stabilisation du moteur de recherche, corrections bugs, lien recherche avancee
1171
*
126 florian 1172
* Revision 1.48  2006/05/17 09:50:13  alexandre_tb
1173
* Ajout du moteur de recherche évolué et du découpage par page
1174
*
125 alexandre_ 1175
* +-- Fin du code ----------------------------------------------------------------------------------------+
1176
*/
23 florian 1177
?>