Subversion Repositories Applications.bazar

Rev

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

Rev Author Line No. Line
5 florian 1
<?php
2
/** baz_valeur_template() - Renvoi des valeurs inscrite dans le fichier de template
3
*
4
* @param   string nom du fichier de template
5
*
6
* @return   mixed  tableau contenant les champs du fichier template
7
*/
8
function baz_valeurs_template($fichier_template) {
9
	//Parcours du fichier de templates, pour mettre les champs spécifiques
10
	$nblignes=0;
11
	$fichier=file_get_contents(BAZ_CHEMIN_APPLI.'templates/'.$fichier_template);
12
	$chaine = explode ("\n", $fichier);
13
	array_pop($chaine);
14
	foreach ($chaine as $ligne)  {
15
		$souschaine = explode ("***", $ligne) ;
16
		$tableau[$nblignes]['type'] = trim($souschaine[0]) ;
17
		if (isset($souschaine[1])) {$tableau[$nblignes]['nom_bdd'] = trim($souschaine[1]);}
18
		else {$tableau[$nblignes]['nom_bdd'] ='';}
19
		if (isset($souschaine[2])) $tableau[$nblignes]['label'] = trim($souschaine[2]);
20
		else {$tableau[$nblignes]['label'] ='';}
21
		if (isset($souschaine[3])) $tableau[$nblignes]['limite1'] = trim($souschaine[3]);
22
		else {$tableau[$nblignes]['limite1'] ='';}
23
		if (isset($souschaine[4])) $tableau[$nblignes]['limite2'] = trim($souschaine[4]);
24
		else {$tableau[$nblignes]['limite2'] ='';}
25
		if (isset($souschaine[5])) $tableau[$nblignes]['defaut'] = trim($souschaine[5]);
26
		else {$tableau[$nblignes]['defaut'] ='';}
27
		if (isset($souschaine[6])) $tableau[$nblignes]['table_source'] = trim($souschaine[6]);
28
		else {$tableau[$nblignes]['table_source'] ='';}
29
		if (isset($souschaine[7])) $tableau[$nblignes]['id_source'] = trim($souschaine[7]);
30
		else {$tableau[$nblignes]['id_source'] ='';}
31
		if (isset($souschaine[8])) $tableau[$nblignes]['obligatoire'] = trim($souschaine[8]);
32
		else {$tableau[$nblignes]['obligatoire'] ='';}
33
		$nblignes++;
34
	}
35
	return $tableau;
36
}
37
 
33 ddelon 38
/**  baz_voir_fiches() - Permet de visualiser en detail une liste de fiche  au format XHTML
39
*
40
* @global boolean Rajoute des informations internes à l'application (date de modification, lien vers la page de départ de l'appli)
41
* @global integer Tableau d(Identifiant des fiches à afficher
42
*
43
* @return   string  HTML
44
*/
45
function baz_voir_fiches($danslappli, $idfiches=array()) {
46
	$res='';
47
	foreach($idfiches as $idfiche) {
48
			$res.=baz_voir_fiche($danslappli, $idfiche);
49
	}
50
	return $res;
51
}
54 florian 52
 
53
 
5 florian 54
/**  baz_voir_fiche() - Permet de visualiser en détail une fiche  au format XHTML
55
*
56
* @global boolean Rajoute des informations internes à l'application (date de modification, lien vers la page de départ de l'appli) si à 1
57
* @global integer Identifiant de la fiche à afficher
58
*
59
* @return   string  HTML
60
*/
61
function baz_voir_fiche($danslappli, $idfiche='') {
62
	if (isset($_GET['id_fiche'])) $GLOBALS['_BAZAR_']['id_fiche']=$_GET['id_fiche'];
63
	if ($idfiche!='') $GLOBALS['_BAZAR_']['id_fiche']=$idfiche;
64
 
9 florian 65
	$url= $GLOBALS['_BAZAR_']['url'];
66
	$url->addQueryString('action', BAZ_VOIR_FICHE);
67
	$url->addQueryString('id_fiche', $GLOBALS['_BAZAR_']['id_fiche']);
68
	$url = preg_replace ('/&amp;/', '&', $url->getURL()) ;
7 florian 69
 
15 florian 70
	//cas ou un commentaire a été entré
9 florian 71
	if (isset($_POST['Nom'])) {
38 alexandre_ 72
		$requete = 'INSERT INTO bazar_commentaires VALUES ('.
73
					baz_nextid('bazar_commentaires', 'bc_id_commentaire', $GLOBALS['_BAZAR_']['db']).
74
					', '.$GLOBALS['_BAZAR_']['id_fiche'].', "'.$_POST['Nom'].'", "'.$_POST['Commentaire'].
75
					'", NOW() )';
9 florian 76
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
77
	}
54 florian 78
	//cas ou un commentaire va etre supprime
15 florian 79
	elseif (isset($_GET['id_commentaire'])) {
80
		$requete = 'DELETE FROM bazar_commentaires WHERE bc_id_commentaire='.$_GET['id_commentaire'].' LIMIT 1';
9 florian 81
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
82
	}
15 florian 83
	else {
84
		if (isset($_GET['action'])) {
85
			if ($_GET['action']==BAZ_VOIR_FICHE) {
54 florian 86
				//sinon on met a jour le nb de visites pour la fiche, puisque c'est une simple consultation
15 florian 87
				$requete = 'UPDATE bazar_fiche SET bf_nb_consultations=bf_nb_consultations+1 WHERE bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
88
				$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
89
			}
90
		}
91
	}
9 florian 92
 
7 florian 93
	//on cherche le type d'annonce, l'annonceur et les stats
94
	$requete = 'SELECT bn_label_nature, bn_commentaire, bn_appropriation, bf_ce_utilisateur,bf_nb_consultations  FROM bazar_fiche, bazar_nature WHERE bn_id_nature=bf_ce_nature AND bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
95
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
5 florian 96
	if (DB::isError($resultat)) {
97
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
98
	}
99
	while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
100
		$GLOBALS['_BAZAR_']['typeannonce']=$ligne['bn_label_nature'];
7 florian 101
		$GLOBALS['_BAZAR_']['commentaire']=$ligne['bn_commentaire'];
102
		$GLOBALS['_BAZAR_']['appropriation']=$ligne['bn_appropriation'];
103
		$GLOBALS['_BAZAR_']['annonceur']=$ligne['bf_ce_utilisateur'];
104
		$GLOBALS['_BAZAR_']['nb_consultations']=$ligne['bf_nb_consultations'];
5 florian 105
	}
9 florian 106
 
45 florian 107
	//on verifie si l'utilisateur est administrateur
9 florian 108
	$est_admin=0;
109
	if ($GLOBALS['AUTH']->getAuth()) {
110
		$requete='SELECT bn_id_nature FROM bazar_nature WHERE bn_label_nature="'.$GLOBALS['_BAZAR_']['typeannonce'].'"';
111
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
112
		if (DB::isError($resultat)) {
113
			die ($resultat->getMessage().$resultat->getDebugInfo()) ;
114
		}
115
		$result = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
116
		if ((niveau_droit($result['bn_id_nature'],$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID))=='administrateur')
117
		     or(niveau_droit('0',$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID))=='superadministrateur'))
118
		{
119
		        $est_admin=1;
120
		}
121
	}
122
 
7 florian 123
	$res = '<div class="BAZ_cadre_fiche">'."\n";
124
	$res .= '<div class="BAZ_cadre_fiche_haut">'."\n";
5 florian 125
	$res .= '&nbsp;</div>'."\n";
7 florian 126
	$res .= '<div class="BAZ_cadre_fiche_corps">'."\n";
5 florian 127
 
45 florian 128
	//si le template existe, on genere le template
5 florian 129
	if ((file_exists(BAZ_CHEMIN_APPLI.'templates/'.$GLOBALS['_BAZAR_']['typeannonce'].'-fiche.php'))) {
130
		include_once(BAZ_CHEMIN_APPLI.'templates/'.$GLOBALS['_BAZAR_']['typeannonce'].'-fiche.php');
7 florian 131
		$res .=genere_fiche($GLOBALS['_BAZAR_']['id_fiche']);
5 florian 132
	}
133
	//on affiche ligne par ligne sinon
134
	else {
135
		$requete = 'SELECT * FROM bazar_fiche WHERE bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
136
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
137
		if (DB::isError ($resultat)) {
138
			die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
139
		}
140
		$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC) ;
141
 
7 florian 142
		if (isset($ligne['bf_url_image'])) {
143
			$res .= '<div id="fiche_image">'."\n";
144
			$res .= '<img src="'.'http://'.$_SERVER['HTTP_HOST'].'/client/bazar/images/'.$ligne['bf_url_image'].'" border=0 alt="'.BAZ_TEXTE_IMG_ALTERNATIF.'" />'."\n";
145
			$res .= '</div>'."\n";
146
			$res .= '<div id="fiche_titre_image">'.$ligne['bf_titre'];
147
		}
148
		else {
149
			$res .= '<div id="fiche_titre">'.$ligne['bf_titre'];
150
		}
151
		$res .= '</div>'."\n";
152
		$res .= '<div id="BAZ_description">'.$ligne['bf_description'].'</div>'."\n";
5 florian 153
		$tableau=baz_valeurs_template($GLOBALS['_BAZAR_']['typeannonce'].'.tpl');
154
		for ($i=0; $i<count($tableau); $i++) {
155
			if (isset($ligne[$tableau[$i]['nom_bdd']])) {
156
				//pour les champs renseignés par une liste, on va chercher le label de la liste, plutot que l'id
157
				if ($tableau[$i]['type']=='liste') {
158
					$requete = 'SELECT '.$tableau[$i]['table_source'].'.* FROM bazar_fiche, '.$tableau[$i]['table_source'].
159
					' WHERE '.$tableau[$i]['nom_bdd'].'='.$tableau[$i]['id_source'].' AND bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
160
					$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
161
					if (DB::isError ($resultat)) {
162
						die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
163
					}
164
					while ($tab = $resultat->fetchRow()) {
7 florian 165
						$val=$tab[1];
5 florian 166
					}
167
				}
168
				else {
7 florian 169
					$val=$ligne[$tableau[$i]['nom_bdd']];
5 florian 170
				}
171
				if (($tableau[$i]['nom_bdd']!='bf_titre')and($tableau[$i]['nom_bdd']!='bf_description')) {
7 florian 172
					if ($val!='') {
173
						$res .= '<span class="rubrique">'.constant($tableau[$i]['label']).':</span>'."\n";
174
						$res .= '<span class="description"> '.$val.'</span>'."\n".'<br />'."\n";
175
					}
5 florian 176
				}
177
			}
178
		}
7 florian 179
	}
180
	//afficher les liens pour l'annonce
181
	$requete = 'SELECT  bu_url, bu_descriptif_url FROM bazar_url WHERE bu_ce_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
182
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
183
	if (DB::isError($resultat)) {
184
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
185
	}
186
	if ($resultat->numRows()>0) {
187
		$res .= '<span class="rubrique">'.BAZ_LIEN_INTERNET.':</span>'."\n";
188
		$res .= '<span class="description">'."\n";
189
		$res .= '<ul>'."\n";
190
		while ($ligne1 = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
191
			$res .= '<li><a href="'.$ligne1['bu_url'].'" target="_blank">'.$ligne1['bu_descriptif_url'].'</a></li>'."\n";
5 florian 192
		}
7 florian 193
		$res .= '</ul></span>'."\n";
194
	}
195
 
196
	//afficher les fichiers pour l'annonce
197
	$requete = 'SELECT  bfj_description, bfj_fichier FROM bazar_fichier_joint WHERE bfj_ce_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
198
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
199
	if (DB::isError($resultat)) {
200
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
201
	}
202
	if ($resultat->numRows()>0) {
203
		$res .= '<span class="rubrique">'.BAZ_LISTE_FICHIERS_JOINTS.':</span>'."\n";
204
		$res .= '<span class="description">'."\n";
205
		$res .= '<ul>'."\n";
206
		while ($ligne2 = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
207
			$res .= '<li><a href="http://'.$_SERVER['HTTP_HOST'].'/client/bazar/upload/'.$ligne2['bfj_fichier'].'">'.$ligne2['bfj_description'].'</a></li>'."\n";
208
		}
209
		$res .= '</ul></span>'."\n";
210
	}
9 florian 211
	$res .= '<div class="bulle_haut">&nbsp;</div>'."\n";
212
	$res .= '<div class="bulle_corps">'."\n";
7 florian 213
 
45 florian 214
	//affichage du redacteur de la fiche
7 florian 215
	$requete = 'SELECT '.BAZ_CHAMPS_NOM.', '.BAZ_CHAMPS_PRENOM.', '.BAZ_CHAMPS_EMAIL.' FROM '.BAZ_ANNUAIRE.' WHERE '.BAZ_CHAMPS_ID.'='.$GLOBALS['_BAZAR_']['annonceur'];
216
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
217
	if (DB::isError($resultat)) {
218
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
219
	}
220
	while ($redacteur = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
221
		$res .= BAZ_FICHE_ECRITE.'<a href="mailto:'.$redacteur[BAZ_CHAMPS_EMAIL].'">'.$redacteur[BAZ_CHAMPS_PRENOM].' '.$redacteur[BAZ_CHAMPS_NOM].'</a><br />'."\n";
222
	}
223
	$res .= BAZ_NB_VUS.'<strong>'.$GLOBALS['_BAZAR_']['nb_consultations'].'</strong>'.BAZ_FOIS.'<br />'."\n";
224
	$res .= '</div>'."\n";
9 florian 225
	$res .= '<div class="bulle_bas">&nbsp;</div>'."\n";
7 florian 226
	$res .= '<div id="BAZ_bas_page">';
9 florian 227
 
45 florian 228
	//informations complementaires (id fiche, etat publication,... )
7 florian 229
	if ($danslappli==1) {
230
		$res .= '<span class="rubrique">'.BAZ_NUM_FICHE.':</span> '.$GLOBALS['_BAZAR_']['id_fiche'].'<br />'."\n";
231
		$res .= '<span class="rubrique">'.BAZ_NATURE.':</span> '.$GLOBALS['_BAZAR_']['typeannonce'].'<br />'."\n";
232
		if ($ligne['bf_statut_fiche']==1) {
233
			$res .= '<span class="rubrique">'.BAZ_PUBLIEE.':</span> '.BAZ_OUI.'<br />'."\n";
234
		}
235
		else {
236
			$res .= '<span class="rubrique">'.BAZ_PUBLIEE.':</span> '.BAZ_NON.'<br />'."\n";
237
		}
238
		$res .= '<span class="rubrique">'.BAZ_DATE_CREATION.':</span> '.strftime('%d.%m.%Y &agrave; %H:%M',strtotime($ligne['bf_date_creation_fiche'])).'<br />'."\n";
239
		$res .= '<span class="rubrique">'.BAZ_DATE_MAJ.':</span> '.strftime('%d.%m.%Y &agrave; %H:%M',strtotime($ligne['bf_date_maj_fiche']));
9 florian 240
		if (($est_admin)or($GLOBALS['_BAZAR_']['annonceur']==$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID))) {
241
			$lien_modifier=$GLOBALS['_BAZAR_']['url'];
242
			$lien_modifier->addQueryString('action', BAZ_ACTION_MODIFIER);
243
			$lien_modifier->addQueryString('id_fiche', $GLOBALS['_BAZAR_']['id_fiche']);
244
			$lien_modifier->addQueryString('typeannonce', $GLOBALS['_BAZAR_']['typeannonce']);
245
			$res .= '&nbsp;<a href="'.$lien_modifier->getURL().'">'.BAZ_MODIFIER_LA_FICHE.'</a>'."\n";
5 florian 246
		}
7 florian 247
	}
248
	$res .= '</div>'."\n";
249
	$res .= '</div>'."\n";
250
	$res .= '<div class="BAZ_cadre_fiche_bas">&nbsp;</div>'."\n";
251
	$res .= '</div>'."\n";
252
 
39 florian 253
	//on ajoute les appropriations, s'il le faut
254
	if (($danslappli==1)and($GLOBALS['_BAZAR_']['appropriation']==1)) {
255
		$res .= '<br />'."\n".'<div class="BAZ_cadre_fiche">'."\n";
256
		$res .= '<div class="BAZ_cadre_fiche_haut">&nbsp;</div>'."\n";
257
		$res .= '<div class="BAZ_cadre_fiche_corps">'."\n";
258
		$res .= '<h3>'.BAZ_LES_STRUCTURES_POSSEDANT_UNE_RESSOURCE.'</h3>'."\n";
259
 
40 florian 260
		$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';
261
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
262
		if (DB::isError ($resultat)) {
263
			die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
264
		}
265
		if ($resultat->numRows()>0) {
266
			$res .= BAZ_IL_Y_A.$resultat->numRows().' ';
267
			if ($resultat->numRows()==1) $res .= BAZ_COMMENTAIRE.'<br />'."\n";
268
			else $res .= BAZ_COMMENTAIRES.'<br />'."\n";
269
			while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
270
				$res .= '<div class="bulle_haut">&nbsp;</div>'."\n";
271
				$res .= '<div class="bulle_corps">'."\n";
272
				//affichage du commentaire
273
				$res .= $ligne['bc_commentaire'].'<br />'."\n";
274
				$res .= '</div>'."\n";
275
				$res .= '<div class="bulle_bas">'."\n";
276
				$res .= '<div style="font-size:9px;margin-left:10px;">'.BAZ_PAR.' : <strong>'.$ligne['bc_nom'].'</strong>'.BAZ_ECRIT_LE.$ligne['bc_date'].'</div>'."\n";
277
				//pour les identifiés seulement, administrateurs de la rubrique ou superadmins
278
				if ($est_admin==1) {
279
					$url_comment= $GLOBALS['_BAZAR_']['url'];
280
					$url_comment->addQueryString('action', BAZ_VOIR_FICHE);
281
					$url_comment->addQueryString('id_fiche', $GLOBALS['_BAZAR_']['id_fiche']);
282
					$url_comment->addQueryString('id_commentaire', $ligne['bc_id_commentaire']);
283
					$res .= '<a href="'.$url_comment->getURL().'" style="font-size:9px;float:right;">'.BAZ_SUPPRIMER.'</a>'."\n";
284
				}
285
				$res .= '</div>'."\n";
286
			}
287
		}
288
		else $res .= BAZ_PAS_D_APPROPRIATION.'<br /><br />'."\n";
289
 
39 florian 290
		$res .= '</div>'."\n";
291
		$res .= '<div class="BAZ_cadre_fiche_bas">&nbsp;</div>'."\n";
292
		$res .= '</div>'."\n";
293
	}
294
 
7 florian 295
	//on ajoute les commentaires, s'il le faut
22 florian 296
	if (($danslappli==1)and($GLOBALS['_BAZAR_']['commentaire']==1)) {
39 florian 297
		$res .= '<br />'."\n".'<div class="BAZ_cadre_fiche">'."\n";
7 florian 298
		$res .= '<div class="BAZ_cadre_fiche_haut">&nbsp;</div>'."\n";
299
		$res .= '<div class="BAZ_cadre_fiche_corps">'."\n";
300
		$res .= '<h3>'.BAZ_LES_COMMENTAIRES.'</h3>'."\n";
301
		$requete = 'SELECT * FROM bazar_commentaires WHERE bc_ce_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'].' ORDER BY bc_date ASC';
5 florian 302
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
7 florian 303
		if (DB::isError ($resultat)) {
304
			die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
5 florian 305
		}
306
		if ($resultat->numRows()>0) {
9 florian 307
			$res .= BAZ_IL_Y_A.$resultat->numRows().' ';
308
			if ($resultat->numRows()==1) $res .= BAZ_COMMENTAIRE.'<br />'."\n";
309
			else $res .= BAZ_COMMENTAIRES.'<br />'."\n";
5 florian 310
			while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
9 florian 311
				$res .= '<div class="bulle_haut">&nbsp;</div>'."\n";
312
				$res .= '<div class="bulle_corps">'."\n";
313
				//affichage du commentaire
314
				$res .= $ligne['bc_commentaire'].'<br />'."\n";
315
				$res .= '</div>'."\n";
316
				$res .= '<div class="bulle_bas">'."\n";
15 florian 317
				$res .= '<div style="font-size:9px;margin-left:10px;">'.BAZ_PAR.' : <strong>'.$ligne['bc_nom'].'</strong>'.BAZ_ECRIT_LE.$ligne['bc_date'].'</div>'."\n";
9 florian 318
				//pour les identifiés seulement, administrateurs de la rubrique ou superadmins
319
				if ($est_admin==1) {
320
					$url_comment= $GLOBALS['_BAZAR_']['url'];
321
					$url_comment->addQueryString('action', BAZ_VOIR_FICHE);
322
					$url_comment->addQueryString('id_fiche', $GLOBALS['_BAZAR_']['id_fiche']);
15 florian 323
					$url_comment->addQueryString('id_commentaire', $ligne['bc_id_commentaire']);
324
					$res .= '<a href="'.$url_comment->getURL().'" style="font-size:9px;float:right;">'.BAZ_SUPPRIMER.'</a>'."\n";
9 florian 325
				}
326
				$res .= '</div>'."\n";
5 florian 327
			}
328
		}
9 florian 329
		else $res .= BAZ_PAS_DE_COMMENTAIRES.'<br /><br />'."\n";
330
 
331
		//formulaire des commentaires
332
		$form_commentaire = new HTML_QuickForm('commentaire', 'post', $url);
333
		$squelette =& $form_commentaire->defaultRenderer();
334
		$squelette->setFormTemplate("\n".'<form {attributes}>'."\n".'{content}'."\n".'</form>'."\n");
335
		$squelette->setElementTemplate( '<label style="width:200px;">{label}&nbsp;</label><br />'."\n".'{element}<br />'."\n");
336
		$squelette->setRequiredNoteTemplate("\n".'{requiredNote} '."\n");
337
		$option=array('style'=>'width:300px;', 'maxlength'=>100);
338
		$form_commentaire->addElement('text', 'Nom', BAZ_ENTREZ_VOTRE_NOM, $option);
339
		$option=array('style'=>'width:100%;height:100px;white-space: pre;padding:3px;');
54 florian 340
		require_once PAP_CHEMIN_RACINE.'api/pear/HTML/QuickForm/textarea.php';
9 florian 341
		$formtexte= new HTML_QuickForm_textarea('Commentaire', BAZ_ENTREZ_VOTRE_COMMENTAIRE, $option);
342
		$form_commentaire->addElement($formtexte) ;
343
		$form_commentaire->addElement('submit', 'Envoyer', BAZ_ENVOYER);
344
		$form_commentaire->addRule('Nom', BAZ_NOM_REQUIS, 'required', '', 'client') ;
345
		$form_commentaire->addRule('Commentaire', BAZ_COMMENTAIRE_REQUIS, 'required', '', 'client') ;
346
		$form_commentaire->setRequiredNote(BAZ_CHAMPS_REQUIS) ;
347
		$res .= $form_commentaire->toHTML();
348
 
7 florian 349
		$res .= '</div>'."\n";
350
		$res .= '<div class="BAZ_cadre_fiche_bas">&nbsp;</div>'."\n";
351
		$res .= '</div>'."\n";
352
	}
353
 
5 florian 354
	return $res ;
355
}
356
 
357
 
358
/** RSSversHTML () transforme un flux RSS (en XML) en page HTML
359
*
360
*   On passe en paramètre le contenu du flux RSS, on affiche ou non la description,
361
*   et on choisit de format de la date à l'affichage. On a en sortie du code HTML à afficher
362
*
363
*   @param  string   le contenu du flux RSS
364
*   @param  boolean  afficher ou non la description
365
*   @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
366
*
367
*   @return  string    le code HTML
368
*/
369
function RSSversHTML($rss, $voirdesc, $formatdate) {
370
	if ($rss!='') {
54 florian 371
		$rawitems='';$title='';$url='';$cat='';$date='';
5 florian 372
		$res='';
373
		if( eregi('<item>(.*)</item>', $rss, $rawitems ) ) {
374
			$items = explode('<item>', $rawitems[0]);
375
			$res.='<ul>'."\n";
376
			for( $i = 0; $i < count($items)-1; $i++ ) {
377
				eregi('<title>(.*)</title>',$items[$i+1], $title );
378
				eregi('<link>(.*)</link>',$items[$i+1], $url );
379
				eregi('<description>(.*)</description>',$items[$i+1], $cat);
380
				eregi('<pubDate>(.*)</pubDate>',$items[$i+1], $date);
381
				$res.='<li>';
382
				if ($formatdate=='jm') {$res.=strftime('%d.%m',strtotime($date[1])).': ';}
383
				if ($formatdate=='jma') {$res.=strftime('%d.%m.%Y',strtotime($date[1])).': ';}
384
				if ($formatdate=='jmh') {$res.=strftime('%d.%m %H:%M',strtotime($date[1])).': ';}
385
				if ($formatdate=='jmah') {$res.=strftime('%d.%m.%Y %H:%M',strtotime($date[1])).': ';}
386
				$res.='<a href="'.preg_replace ('/&amp;/', '&', $url[1]).'">'.$title[1].'</a><br />';
387
				if ($voirdesc) {$res.=$cat[1];}
388
				$res.='</li>'."\n";
389
			}
390
			$res.='</ul>'."\n";
391
		}
392
	}
393
	else $res = BAZ_PAS_D_ANNONCES;
394
	return $res;
395
}
396
 
397
/** gen_RSS() - générer un fichier de flux RSS par type d'annonce
398
*
399
* @param   string Le type de l'annonce (laisser vide pour tout type d'annonce)
400
* @param   integer Le nombre d'annonces a regrouper dans le fichier XML (laisser vide pour toutes)
401
* @param   integer L'identifiant de l'emetteur (laisser vide pour tous)
402
* @param   integer L'état de validation de l'annonce (laisser 1 pour les annonces validées, 0 pour les non-validées)
15 florian 403
* @param   string La requête SQL personnalisée
5 florian 404
*
405
* @return  string Le code du flux RSS
406
*/
407
function gen_RSS($typeannonce='', $nbitem='', $emetteur='', $valide=1, $requeteSQL='') {
408
	// génération de la requete MySQL personnalisée
409
	$requete = 'SELECT DISTINCT bf_id_fiche, bf_titre, bf_date_debut_validite_fiche, bn_label_nature FROM bazar_fiche, bazar_nature';
51 florian 410
	$requete .= ' WHERE bf_statut_fiche='.$valide;
5 florian 411
	$nomflux=BAZ_DERNIERE_ACTU;
412
	if (($typeannonce!='')and($typeannonce!='toutes')) {
413
		$requete .= ' AND bn_label_nature="'.$typeannonce.'"';
414
		//le nom du flux devient le type d'annonce
415
		$nomflux = $typeannonce;
416
	}
13 alexandre_ 417
	if ($valide!=0) $requete .= ' AND (bf_date_debut_validite_fiche<=NOW() or bf_date_debut_validite_fiche="0000-00-00")'.
418
					' AND (bf_date_fin_validite_fiche>=NOW() or bf_date_fin_validite_fiche="0000-00-00") AND bn_id_nature=bf_ce_nature';
5 florian 419
	else $nomflux .= BAZ_A_MODERER;
420
	if (($emetteur!='')and($emetteur!='tous')) {
421
		$requete .= ' AND bf_ce_utilisateur='.$emetteur;
422
		//requete pour afficher le nom de la structure
423
		$requetenom = 'SELECT '.BAZ_CHAMPS_NOM.', '.BAZ_CHAMPS_PRENOM.' FROM '.BAZ_ANNUAIRE.' WHERE '.BAZ_CHAMPS_ID.'='.$emetteur;
424
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requetenom) ;
425
		if (DB::isError($resultat)) {
426
			die ($resultat->getMessage().$resultat->getDebugInfo()) ;
427
		}
428
		$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
429
		$nomflux .= ' ('.$ligne[BAZ_CHAMPS_NOM].' '.$ligne[BAZ_CHAMPS_PRENOM].')';
430
	}
431
	if ($requeteSQL!='') $requete .= ' AND ('.$requeteSQL.')';
22 florian 432
	$requete .= ' ORDER BY  bf_date_debut_validite_fiche DESC, bf_date_fin_validite_fiche DESC, bf_date_maj_fiche DESC';
5 florian 433
	if ($nbitem!='') {$requete .= ' LIMIT 0,'.$nbitem;}
434
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
435
	if (DB::isError($resultat)) {
436
		die ($GLOBALS['_BAZAR_']['db']->getMessage().$GLOBALS["db"]->getDebugInfo()) ;
437
	}
438
	// En-tête du flux RSS version 2.0
439
	$xml = '<?xml version="1.0" encoding="ISO-8859-1"?>'."\n".'<rss version="2.0">'."\n";
440
	$xml .= '<channel>'."\n".'<title>'.$nomflux.'</title>'."\n".'<link>'.BAZ_RSS_ADRESSESITE.'</link>'."\n";
441
	$xml .= '<description>'.BAZ_RSS_DESCRIPTIONSITE.'</description>'."\n".'<language>fr-FR</language>'."\n".
442
	'<copyright>Copyright 2005 '.BAZ_RSS_NOMSITE.'</copyright>'."\n";
443
	// Ajout de la date actuelle de publication (suivant la DTD RSS)
444
	$xml .= '<lastBuildDate>'.strftime('%d %b %Y %H:%M:%S GMT').'</lastBuildDate>'."\n";
445
	// En-tête suite et fin
446
	$xml .= '<docs>http://www.stervinou.com/projets/rss/</docs>'."\n".'<category>'.BAZ_RSS_CATEGORIE.'</category>'."\n".
447
	'<managingEditor>'.BAZ_RSS_MANAGINGEDITOR.'</managingEditor>'."\n".'<webMaster>'.BAZ_RSS_WEBMASTER.'</webMaster>'."\n";
448
	$xml .= '<ttl>60</ttl>'."\n".'<image>'."\n".'<title>'.BAZ_RSS_NOMSITE.'</title>'."\n".'<url>'.BAZ_RSS_LOGOSITE.'</url>'."\n".
449
	'<link>'.BAZ_RSS_ADRESSESITE.'</link>'."\n".'</image>'."\n";
450
	if ($resultat->numRows()>0) {
451
		// Creation des items : titre + lien + description + date de publication
452
		while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
453
			$xml .= '<item>'."\n";
454
			$xml .= '<title>'.$ligne['bf_titre'].'</title>'."\n";
455
			$lien=$GLOBALS['_BAZAR_']['url'];
456
			$lien->addQueryString('action', BAZ_VOIR_FICHE);
457
			$lien->addQueryString('id_fiche', $ligne['bf_id_fiche']);
458
			$xml .= '<link>'.str_replace ('&', '&amp;', $lien->getURL()).'</link>'."\n";
459
			$xml .= '<description>'."\n".'<![CDATA['.baz_voir_fiche(0,$ligne['bf_id_fiche']).']]>'."\n".'</description>'."\n";
460
			$xml .= '<pubDate>'.strftime('%d %b %Y %H:%M:%S GMT',strtotime($ligne['bf_date_debut_validite_fiche'])).'</pubDate>'."\n";
461
			$xml .= '</item>'."\n";
462
		}
463
	}
464
	else {//pas d'annonces
465
		$xml .= '<item>'."\n";
10 ddelon 466
		$xml .= '<title>'.BAZ_PAS_D_ANNONCES.'</title>'."\n";
22 florian 467
		$xml .= '<link>#</link>'."\n";
10 ddelon 468
		$xml .= '<description>'.BAZ_PAS_D_ANNONCES.'</description>'."\n";
5 florian 469
		$xml .= '<pubDate>'.strftime('%d %b %Y %H:%M:%S GMT',strtotime('12/12/2004')).'</pubDate>'."\n";
470
		$xml .= '</item>'."\n";
471
	}
472
	$xml .= '</channel>'."\n".'</rss>'."\n";
473
	return $xml;
474
}
475
 
476
 
477
/** baz_liste() Formate la liste de toutes les annonces actuelles
478
*
479
*   @return  string    le code HTML à afficher
480
*/
481
function baz_liste($typeannonce='toutes') {
22 florian 482
 
483
	//titre
5 florian 484
	if ($typeannonce=='toutes') $res= '<h2>'.BAZ_TOUTES_LES_ANNONCES.'</h2>'."\n";
22 florian 485
	else $res = '<h2>'.BAZ_TOUTES_LES_ANNONCES_DE_TYPE.$typeannonce.'</h2>'."\n";
486
 
45 florian 487
	//creation du lien pour le formulaire de recherche
22 florian 488
	$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_VOIR_TOUTES_ANNONCES);
489
	$lien_formulaire=preg_replace ('/&amp;/', '&', $GLOBALS['_BAZAR_']['url']->getURL()) ;
490
	$formtemplate = new HTML_QuickForm('formulaire', 'post', $lien_formulaire) ;
491
	$squelette =&$formtemplate->defaultRenderer();
39 florian 492
	$squelette->setFormTemplate("\n".'<form{attributes}>'."\n".'<ul>'."\n".'{content}'."\n".'</ul>'."\n".'</form>'."\n");
493
	$squelette->setElementTemplate( '<li class="enligne">'."\n".'{element}'."\n".'</li>'."\n");
22 florian 494
	//requete pour obtenir l'id et le label des types d'annonces
495
	$requete = 'SELECT bn_label_nature '.
496
	           'FROM bazar_nature WHERE bn_ce_id_menu='.$GLOBALS['_GEN_commun']['info_menu']->gm_id_menu.
497
		   '  or  bn_ce_id_menu=0 ORDER BY bn_label_nature ASC';
498
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
499
	if (DB::isError($resultat)) {
500
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
501
	}
502
	$type_annonce_select['toutes']=BAZ_TOUS_TYPES_FICHES;
503
	while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
504
		$type_annonce_select[$ligne['bn_label_nature']] = $ligne['bn_label_nature'];
505
	}
45 florian 506
	$option=array('style'=>'width: 160px;');
22 florian 507
	$formtemplate->addElement ('select', 'nature', BAZ_TYPEANNONCE, $type_annonce_select, $option) ;
508
 
509
	//requete pour obtenir l'id, le nom et prénom de toutes les personnes ayant une fiche publiée actuellement
510
	$requete = 'SELECT '.BAZ_CHAMPS_ID.', '.BAZ_CHAMPS_NOM.', '.BAZ_CHAMPS_PRENOM.' '.
511
	           'FROM bazar_fiche,'.BAZ_ANNUAIRE.' '.
512
		   'WHERE bf_statut_fiche=1 AND bf_date_debut_validite_fiche<=NOW() AND bf_date_fin_validite_fiche>=NOW() AND bf_ce_utilisateur='.BAZ_CHAMPS_ID.' '.
513
		   'ORDER BY '.BAZ_CHAMPS_NOM.' ASC';
514
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
515
	if (DB::isError($resultat)) {
516
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
517
	}
518
	$personnes_select['tous']=BAZ_TOUS_LES_EMETTEURS;
519
	while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
520
		$personnes_select[$ligne[BAZ_CHAMPS_ID]] = $ligne[BAZ_CHAMPS_NOM]." ".$ligne[BAZ_CHAMPS_PRENOM] ;
521
	}
45 florian 522
	$option=array('style'=>'width: 160px;');
22 florian 523
	$formtemplate->addElement ('select', 'personnes', BAZ_EMETTEUR, $personnes_select, $option) ;
524
 
525
	//champs texte pour entrer les mots clés
526
	$option=array('size'=>15,'maxlength'=>40);
527
	$formtemplate->addElement('text', 'recherche_mots_cles', BAZ_MOT_CLE, $option) ;
528
	$defauts=array('recherche_mots_cles'=>BAZ_MOT_CLE);
529
	$formtemplate->setDefaults($defauts);
530
	//Bouton de validation du formulaire
531
	$bouton[] = &HTML_QuickForm::createElement('submit', 'valider', BAZ_VALIDER);
532
	$formtemplate->addGroup($bouton, null, null, '');
23 florian 533
	$res.=$formtemplate->toHTML()."\n";
22 florian 534
	$requeteSQL='';
535
	//affichage des résultats de la recherche si le formulaire a été envoyé
536
	if (isset($_POST['nature'])) {
537
		//préparation de la requète pour trouver les mots clés
23 florian 538
		if (($_POST['recherche_mots_cles']!='')and($_POST['recherche_mots_cles']!=BAZ_MOT_CLE)) {
22 florian 539
			//découpage des mots clés
540
			$recherche = split(' ', $_POST['recherche_mots_cles']) ;
541
			$nbmots=count($recherche);
542
			for ($i=0; $i<$nbmots; $i++) {
543
				if ($i>0) $requeteSQL.=' OR ';
544
				$requeteSQL.='bf_titre LIKE "%'.$recherche[$i].'%" OR bf_description LIKE "%'.$recherche[$i].'%" ';
545
			}
546
		}
23 florian 547
		//génération de la liste de flux à afficher
39 florian 548
		$res.=RSSversHTML(gen_RSS($_POST['nature'], '', $_POST['personnes'], 1, $requeteSQL), 1, BAZ_TYPE_AFFICHAGE_LISTE) ;
22 florian 549
	}
550
	else {
23 florian 551
		//on affiche toutes les annonces
552
		$res .= RSSversHTML(gen_RSS($typeannonce, '', '', 1, ''), 0, 'jm') ;
22 florian 553
	}
5 florian 554
	return $res;
555
}
23 florian 556
?>