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 |
// +------------------------------------------------------------------------------------------------------+
|
170 |
alexandre_ |
22 |
// CVS : $Id: bazar.fonct.rss.php,v 1.63 2007-01-18 14:37:34 alexandre_tb 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
|
170 |
alexandre_ |
31 |
*@version $Revision: 1.63 $
|
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 ('/&/', '&', $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) ;
|
|
|
172 |
if (!isset($GLOBALS['_BAZAR_']['typeannonce'])) $GLOBALS['_BAZAR_']['typeannonce'] = $ligne['bf_ce_nature'];
|
|
|
173 |
|
45 |
florian |
174 |
//on verifie si l'utilisateur est administrateur
|
9 |
florian |
175 |
$est_admin=0;
|
143 |
alexandre_ |
176 |
$requete='SELECT bn_id_nature, bn_template, bn_commentaire FROM bazar_nature WHERE bn_id_nature="'.$GLOBALS['_BAZAR_']['typeannonce'].'"';
|
|
|
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']!='') {
|
56 |
florian |
194 |
$res .= '<img id="BAZ_img_titre" src="client/bazar/images/'.$GLOBALS['_BAZAR_']['image_titre'].'" alt="'.$GLOBALS['_BAZAR_']['typeannonce'].'" />'.'<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) {
|
105 |
florian |
230 |
$res .= '<span class="rubrique">'.$tableau[$i]['label'].':</span>'."\n";
|
122 |
florian |
231 |
$res .= '<span class="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) {
|
|
|
250 |
$res .= '<span class="rubrique">'.$tableau[$i]['label'].':</span>'."\n";
|
|
|
251 |
$res .= '<span class="description"> '.$val.'</span>'."\n".'<br />'."\n";
|
|
|
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') {
|
122 |
florian |
258 |
$res .= '<span class="rubrique">'.$tableau[$i]['label'].':</span>'."\n";
|
|
|
259 |
$res .= '<span class="description"> '.strftime('%d.%m.%Y',strtotime($ligne[$val])).'</span>'."\n".'<br />'."\n";
|
|
|
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"> </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"> </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 .= ' <strong>'.BAZ_VALIDER_PUBLICATION.' : </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> / ';
|
|
|
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 à %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 à %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 .= ' <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.'&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"> </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"> *</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 |
|
5 |
florian |
464 |
return $res ;
|
|
|
465 |
}
|
|
|
466 |
|
|
|
467 |
|
|
|
468 |
/** RSSversHTML () transforme un flux RSS (en XML) en page HTML
|
|
|
469 |
*
|
|
|
470 |
* On passe en paramètre le contenu du flux RSS, on affiche ou non la description,
|
|
|
471 |
* et on choisit de format de la date à l'affichage. On a en sortie du code HTML à afficher
|
|
|
472 |
*
|
|
|
473 |
* @param string le contenu du flux RSS
|
|
|
474 |
* @param boolean afficher ou non la description
|
|
|
475 |
* @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
|
|
|
476 |
*
|
|
|
477 |
* @return string le code HTML
|
|
|
478 |
*/
|
64 |
florian |
479 |
function RSSversHTML($rss, $voirdesc, $formatdate, $affichenb) {
|
5 |
florian |
480 |
if ($rss!='') {
|
54 |
florian |
481 |
$rawitems='';$title='';$url='';$cat='';$date='';
|
5 |
florian |
482 |
$res='';
|
|
|
483 |
if( eregi('<item>(.*)</item>', $rss, $rawitems ) ) {
|
|
|
484 |
$items = explode('<item>', $rawitems[0]);
|
83 |
alexandre_ |
485 |
$res.='<ul id="BAZ_liste_fiche">'."\n";
|
5 |
florian |
486 |
for( $i = 0; $i < count($items)-1; $i++ ) {
|
|
|
487 |
eregi('<title>(.*)</title>',$items[$i+1], $title );
|
|
|
488 |
eregi('<link>(.*)</link>',$items[$i+1], $url );
|
|
|
489 |
eregi('<description>(.*)</description>',$items[$i+1], $cat);
|
|
|
490 |
eregi('<pubDate>(.*)</pubDate>',$items[$i+1], $date);
|
|
|
491 |
$res.='<li>';
|
|
|
492 |
if ($formatdate=='jm') {$res.=strftime('%d.%m',strtotime($date[1])).': ';}
|
|
|
493 |
if ($formatdate=='jma') {$res.=strftime('%d.%m.%Y',strtotime($date[1])).': ';}
|
|
|
494 |
if ($formatdate=='jmh') {$res.=strftime('%d.%m %H:%M',strtotime($date[1])).': ';}
|
|
|
495 |
if ($formatdate=='jmah') {$res.=strftime('%d.%m.%Y %H:%M',strtotime($date[1])).': ';}
|
72 |
alexandre_ |
496 |
$res.='<a href="'.preg_replace ('/&/', '&', $url[1]).'">'.$title[1].'</a>';
|
5 |
florian |
497 |
if ($voirdesc) {$res.=$cat[1];}
|
72 |
alexandre_ |
498 |
// Ajout du bouton supprimer pour les superadministrateur
|
98 |
florian |
499 |
if (($GLOBALS['AUTH']->getAuth() && niveau_droit(0,$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID))=='superadministrateur')and($url[1]!='#')) {
|
72 |
alexandre_ |
500 |
$mon_url = preg_replace ('/&/', '&', $url[1]) ;
|
|
|
501 |
$url_suppr = new Net_URL(preg_replace ('/&/', '&', $mon_url)) ;
|
|
|
502 |
$url_suppr->addQueryString('action', BAZ_ACTION_SUPPRESSION) ;
|
|
|
503 |
$res .= ' ( <a href="'.$url_suppr->getURL().
|
|
|
504 |
'" onclick="javascript:return confirm(\''.BAZ_SUPPRIMER.' ?\');">'.
|
|
|
505 |
BAZ_SUPPRIMER.'</a> )'."\n" ;
|
|
|
506 |
}
|
5 |
florian |
507 |
$res.='</li>'."\n";
|
|
|
508 |
}
|
|
|
509 |
$res.='</ul>'."\n";
|
64 |
florian |
510 |
if ($affichenb==1) {
|
|
|
511 |
//une annonce trouvee, on accorde au singulier
|
|
|
512 |
if (((count($items)-1)==1)and($title!=BAZ_PAS_D_ANNONCES)) {
|
|
|
513 |
$res = '<br /><h4>'.BAZ_IL_Y_A.' 1 '.BAZ_FICHE_CORRESPONDANTE.'</h4><br />'."\n".$res;
|
|
|
514 |
}
|
|
|
515 |
//plusieures annonces trouvees, on accorde au pluriel
|
|
|
516 |
else {
|
|
|
517 |
$res = '<br /><h4>'.BAZ_IL_Y_A.(count($items)-1).' '.BAZ_FICHES_CORRESPONDANTES.'</h4><br />'."\n".$res;
|
|
|
518 |
}
|
|
|
519 |
}
|
|
|
520 |
//cas des fiches pas trouvées
|
|
|
521 |
if (((count($items)-1)==1)and($title[1]==BAZ_PAS_D_ANNONCES)) {
|
|
|
522 |
$res = '<br /><h4>'.BAZ_PAS_D_ANNONCES.'</h4><br />'."\n";
|
|
|
523 |
}
|
5 |
florian |
524 |
}
|
|
|
525 |
}
|
|
|
526 |
else $res = BAZ_PAS_D_ANNONCES;
|
125 |
alexandre_ |
527 |
|
5 |
florian |
528 |
return $res;
|
|
|
529 |
}
|
|
|
530 |
|
83 |
alexandre_ |
531 |
/** gen_RSS() - generer un fichier de flux RSS par type d'annonce
|
5 |
florian |
532 |
*
|
|
|
533 |
* @param string Le type de l'annonce (laisser vide pour tout type d'annonce)
|
|
|
534 |
* @param integer Le nombre d'annonces a regrouper dans le fichier XML (laisser vide pour toutes)
|
|
|
535 |
* @param integer L'identifiant de l'emetteur (laisser vide pour tous)
|
68 |
florian |
536 |
* @param integer L'etat de validation de l'annonce (laisser 1 pour les annonces validees, 0 pour les non-validees)
|
|
|
537 |
* @param string La requete SQL personnalisee
|
126 |
florian |
538 |
* @param integer La categorie des fiches bazar
|
5 |
florian |
539 |
*
|
|
|
540 |
* @return string Le code du flux RSS
|
|
|
541 |
*/
|
126 |
florian |
542 |
function gen_RSS($typeannonce='', $nbitem='', $emetteur='', $valide=1, $requeteSQL='', $requeteSQLFrom = '', $requeteWhereListe = '', $categorie_nature='') {
|
64 |
florian |
543 |
// generation de la requete MySQL personnalisee
|
|
|
544 |
$req_where=0;
|
149 |
alexandre_ |
545 |
$requete = 'SELECT DISTINCT bf_id_fiche, bf_titre, bf_date_debut_validite_fiche, bf_description, bn_label_nature '.
|
125 |
alexandre_ |
546 |
'FROM bazar_fiche, bazar_nature '.$requeteSQLFrom.' WHERE '.$requeteWhereListe;
|
64 |
florian |
547 |
if ($valide!=2) {
|
|
|
548 |
$requete .= 'bf_statut_fiche='.$valide;
|
|
|
549 |
$req_where=1;
|
|
|
550 |
}
|
5 |
florian |
551 |
$nomflux=BAZ_DERNIERE_ACTU;
|
93 |
alexandre_ |
552 |
if (!is_array ($typeannonce) && $typeannonce!='' and $typeannonce!='toutes') {
|
64 |
florian |
553 |
if ($req_where==1) {$requete .= ' AND ';}
|
|
|
554 |
$requete .= 'bf_ce_nature='.$typeannonce;
|
|
|
555 |
$req_where=1;
|
5 |
florian |
556 |
//le nom du flux devient le type d'annonce
|
149 |
alexandre_ |
557 |
$requete_nom_flux = 'select bn_label_nature from bazar_nature where bn_id_nature='.$typeannonce ;
|
|
|
558 |
$nomflux = $GLOBALS['_BAZAR_']['db']->getOne($requete_nom_flux) ;
|
5 |
florian |
559 |
}
|
93 |
alexandre_ |
560 |
// Cas où il y plusieurs type d annonce demande
|
|
|
561 |
if (is_array ($typeannonce)) {
|
|
|
562 |
if ($req_where==1) {$requete .= ' AND ';}
|
|
|
563 |
$requete .= 'bf_ce_nature IN (' ;
|
|
|
564 |
$chaine = '';
|
|
|
565 |
foreach ($typeannonce as $valeur) $chaine .= '"'.$valeur.'",' ;
|
|
|
566 |
$requete .= substr ($chaine, 0, strlen ($chaine)-1) ;
|
95 |
alexandre_ |
567 |
$requete .= ') ';
|
93 |
alexandre_ |
568 |
}
|
111 |
alexandre_ |
569 |
$utilisateur = new Administrateur_bazar ($GLOBALS['AUTH']) ;
|
64 |
florian |
570 |
if ($valide!=0) {
|
96 |
alexandre_ |
571 |
|
95 |
alexandre_ |
572 |
if ($utilisateur->isSuperAdmin()) {
|
96 |
alexandre_ |
573 |
$req_where=1;
|
83 |
alexandre_ |
574 |
} else {
|
96 |
alexandre_ |
575 |
if ($req_where==1) {
|
|
|
576 |
$requete .= ' AND ';
|
|
|
577 |
}
|
83 |
alexandre_ |
578 |
$requete .= '(bf_date_debut_validite_fiche<=NOW() or bf_date_debut_validite_fiche="0000-00-00")'.
|
|
|
579 |
' AND (bf_date_fin_validite_fiche>=NOW() or bf_date_fin_validite_fiche="0000-00-00") AND bn_id_nature=bf_ce_nature';
|
|
|
580 |
}
|
64 |
florian |
581 |
}
|
5 |
florian |
582 |
else $nomflux .= BAZ_A_MODERER;
|
69 |
alexandre_ |
583 |
if ($emetteur!='' && $emetteur!='tous') {
|
64 |
florian |
584 |
if ($req_where==1) {$requete .= ' AND ';}
|
|
|
585 |
$requete .= 'bf_ce_utilisateur='.$emetteur;
|
|
|
586 |
$req_where=1;
|
5 |
florian |
587 |
//requete pour afficher le nom de la structure
|
69 |
alexandre_ |
588 |
$requetenom = 'SELECT '.BAZ_CHAMPS_NOM.', '.BAZ_CHAMPS_PRENOM.' FROM '.
|
|
|
589 |
BAZ_ANNUAIRE.' WHERE '.BAZ_CHAMPS_ID.'='.$emetteur;
|
5 |
florian |
590 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requetenom) ;
|
|
|
591 |
if (DB::isError($resultat)) {
|
118 |
florian |
592 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
5 |
florian |
593 |
}
|
|
|
594 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
|
|
|
595 |
$nomflux .= ' ('.$ligne[BAZ_CHAMPS_NOM].' '.$ligne[BAZ_CHAMPS_PRENOM].')';
|
|
|
596 |
}
|
64 |
florian |
597 |
if ($requeteSQL!='') {
|
|
|
598 |
if ($req_where==1) {$requete .= ' AND ';}
|
|
|
599 |
$requete .= '('.$requeteSQL.')';
|
|
|
600 |
$req_where=1;
|
|
|
601 |
}
|
126 |
florian |
602 |
if ($categorie_nature!='') {
|
|
|
603 |
if ($req_where==1) {$requete .= ' AND ';}
|
|
|
604 |
$requete .= 'bn_ce_id_menu='.$categorie_nature.' ';
|
|
|
605 |
$req_where=1;
|
|
|
606 |
}
|
|
|
607 |
|
164 |
alexandre_ |
608 |
$requete .= ' ORDER BY bf_date_creation_fiche DESC, bf_date_fin_validite_fiche DESC, bf_date_maj_fiche DESC';
|
5 |
florian |
609 |
if ($nbitem!='') {$requete .= ' LIMIT 0,'.$nbitem;}
|
|
|
610 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
611 |
if (DB::isError($resultat)) {
|
83 |
alexandre_ |
612 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
5 |
florian |
613 |
}
|
64 |
florian |
614 |
// En-tete du flux RSS version 2.0
|
5 |
florian |
615 |
$xml = '<?xml version="1.0" encoding="ISO-8859-1"?>'."\n".'<rss version="2.0">'."\n";
|
|
|
616 |
$xml .= '<channel>'."\n".'<title>'.$nomflux.'</title>'."\n".'<link>'.BAZ_RSS_ADRESSESITE.'</link>'."\n";
|
|
|
617 |
$xml .= '<description>'.BAZ_RSS_DESCRIPTIONSITE.'</description>'."\n".'<language>fr-FR</language>'."\n".
|
|
|
618 |
'<copyright>Copyright 2005 '.BAZ_RSS_NOMSITE.'</copyright>'."\n";
|
|
|
619 |
// Ajout de la date actuelle de publication (suivant la DTD RSS)
|
|
|
620 |
$xml .= '<lastBuildDate>'.strftime('%d %b %Y %H:%M:%S GMT').'</lastBuildDate>'."\n";
|
64 |
florian |
621 |
// En-tete suite et fin
|
5 |
florian |
622 |
$xml .= '<docs>http://www.stervinou.com/projets/rss/</docs>'."\n".'<category>'.BAZ_RSS_CATEGORIE.'</category>'."\n".
|
|
|
623 |
'<managingEditor>'.BAZ_RSS_MANAGINGEDITOR.'</managingEditor>'."\n".'<webMaster>'.BAZ_RSS_WEBMASTER.'</webMaster>'."\n";
|
|
|
624 |
$xml .= '<ttl>60</ttl>'."\n".'<image>'."\n".'<title>'.BAZ_RSS_NOMSITE.'</title>'."\n".'<url>'.BAZ_RSS_LOGOSITE.'</url>'."\n".
|
|
|
625 |
'<link>'.BAZ_RSS_ADRESSESITE.'</link>'."\n".'</image>'."\n";
|
|
|
626 |
if ($resultat->numRows()>0) {
|
|
|
627 |
// Creation des items : titre + lien + description + date de publication
|
|
|
628 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
629 |
$xml .= '<item>'."\n";
|
|
|
630 |
$xml .= '<title>'.$ligne['bf_titre'].'</title>'."\n";
|
|
|
631 |
$lien=$GLOBALS['_BAZAR_']['url'];
|
|
|
632 |
$lien->addQueryString('action', BAZ_VOIR_FICHE);
|
|
|
633 |
$lien->addQueryString('id_fiche', $ligne['bf_id_fiche']);
|
|
|
634 |
$xml .= '<link>'.str_replace ('&', '&', $lien->getURL()).'</link>'."\n";
|
87 |
alexandre_ |
635 |
$xml .= '<description>'."\n".'<![CDATA[' ;
|
|
|
636 |
if ($_GET['action'] != BAZ_VOIR_TOUTES_ANNONCES) {
|
125 |
alexandre_ |
637 |
//$xml .= baz_voir_fiche(0,$ligne['bf_id_fiche']) ;
|
|
|
638 |
$xml .= $ligne['bf_description'] ;
|
87 |
alexandre_ |
639 |
}
|
|
|
640 |
$xml .= ']]>'."\n".'</description>'."\n";
|
5 |
florian |
641 |
$xml .= '<pubDate>'.strftime('%d %b %Y %H:%M:%S GMT',strtotime($ligne['bf_date_debut_validite_fiche'])).'</pubDate>'."\n";
|
|
|
642 |
$xml .= '</item>'."\n";
|
|
|
643 |
}
|
|
|
644 |
}
|
|
|
645 |
else {//pas d'annonces
|
|
|
646 |
$xml .= '<item>'."\n";
|
10 |
ddelon |
647 |
$xml .= '<title>'.BAZ_PAS_D_ANNONCES.'</title>'."\n";
|
22 |
florian |
648 |
$xml .= '<link>#</link>'."\n";
|
10 |
ddelon |
649 |
$xml .= '<description>'.BAZ_PAS_D_ANNONCES.'</description>'."\n";
|
5 |
florian |
650 |
$xml .= '<pubDate>'.strftime('%d %b %Y %H:%M:%S GMT',strtotime('12/12/2004')).'</pubDate>'."\n";
|
|
|
651 |
$xml .= '</item>'."\n";
|
|
|
652 |
}
|
|
|
653 |
$xml .= '</channel>'."\n".'</rss>'."\n";
|
|
|
654 |
return $xml;
|
|
|
655 |
}
|
|
|
656 |
|
|
|
657 |
|
|
|
658 |
/** baz_liste() Formate la liste de toutes les annonces actuelles
|
|
|
659 |
*
|
64 |
florian |
660 |
* @return string le code HTML a afficher
|
5 |
florian |
661 |
*/
|
|
|
662 |
function baz_liste($typeannonce='toutes') {
|
45 |
florian |
663 |
//creation du lien pour le formulaire de recherche
|
22 |
florian |
664 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_VOIR_TOUTES_ANNONCES);
|
127 |
alexandre_ |
665 |
if (isset($_REQUEST['recherche_avancee'])) $GLOBALS['_BAZAR_']['url']->addQueryString ('recherche_avancee', $_REQUEST['recherche_avancee']);
|
93 |
alexandre_ |
666 |
$lien_formulaire = preg_replace ('/&/', '&', $GLOBALS['_BAZAR_']['url']->getURL()) ;
|
22 |
florian |
667 |
$formtemplate = new HTML_QuickForm('formulaire', 'post', $lien_formulaire) ;
|
126 |
florian |
668 |
$squelette =& $formtemplate->defaultRenderer();
|
|
|
669 |
$squelette->setFormTemplate("\n".'<form {attributes}>'."\n".'<table style="border:0;width:100%;">'."\n".'{content}'."\n".'</table>'."\n".'</form>'."\n");
|
|
|
670 |
$squelette->setElementTemplate( '<tr>'."\n".'<td style="font-size:12px;width:120px;text-align:right;">'."\n".'{label}'.
|
|
|
671 |
'<!-- BEGIN required --><span class="symbole_obligatoire"> *</span><!-- END required -->'."\n".
|
|
|
672 |
' :</td>'."\n".'<td style="text-align:left;padding:5px;"> '."\n".'{element}'."\n".
|
|
|
673 |
'<!-- BEGIN error --><span class="erreur">{error}</span><!-- END error -->'."\n".
|
|
|
674 |
'</td>'."\n".'</tr>'."\n");
|
|
|
675 |
$squelette->setElementTemplate( '<tr>'."\n".'<td colspan="2" class="liste_a_cocher"><strong>{label} {element}</strong>'."\n".
|
|
|
676 |
'<!-- BEGIN required --><span class="symbole_obligatoire"> *</span><!-- END required -->'."\n".'</td>'."\n".'</tr>'."\n", 'accept_condition');
|
134 |
florian |
677 |
$squelette->setElementTemplate( '<tr><td colspan="2">{label}{element}</td></tr>'."\n", 'rechercher');
|
126 |
florian |
678 |
|
|
|
679 |
$squelette->setRequiredNoteTemplate("\n".'<tr>'."\n".'<td colspan="2" class="symbole_obligatoire">* {requiredNote}</td></tr>'."\n");
|
|
|
680 |
//Traduction de champs requis
|
|
|
681 |
$formtemplate->setRequiredNote(BAZ_CHAMPS_REQUIS) ;
|
|
|
682 |
$formtemplate->setJsWarnings(BAZ_ERREUR_SAISIE,BAZ_VEUILLEZ_CORRIGER);
|
|
|
683 |
|
64 |
florian |
684 |
|
|
|
685 |
//cas du formulaire de recherche proposant de chercher parmis tous les types d'annonces
|
93 |
alexandre_ |
686 |
//requete pour obtenir l'id et le label des types d'annonces
|
|
|
687 |
$requete = 'SELECT bn_id_nature, bn_label_nature '.
|
126 |
florian |
688 |
'FROM bazar_nature WHERE bn_ce_id_menu='.$GLOBALS['_BAZAR_']['categorie_nature'].' '.
|
93 |
alexandre_ |
689 |
'ORDER BY bn_label_nature ASC';
|
|
|
690 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
691 |
if (DB::isError($resultat)) {
|
|
|
692 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
693 |
}
|
126 |
florian |
694 |
//on récupère le nb de types de fiches, pour plus tard
|
|
|
695 |
$nb_type_de_fiches=$resultat->numRows();
|
93 |
alexandre_ |
696 |
$type_annonce_select['toutes']=BAZ_TOUS_TYPES_FICHES;
|
|
|
697 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
105 |
florian |
698 |
$type_annonce_select[$ligne['bn_id_nature']] = $ligne['bn_label_nature'];
|
93 |
alexandre_ |
699 |
$tableau_typeannonces[] = $ligne['bn_id_nature'] ;
|
|
|
700 |
}
|
126 |
florian |
701 |
if ($nb_type_de_fiches>1 && $GLOBALS['_BAZAR_']['typeannonce']=='toutes') {
|
64 |
florian |
702 |
$res= '<h2>'.BAZ_TOUTES_LES_ANNONCES.'</h2><br />'."\n";
|
126 |
florian |
703 |
$option=array('style'=>'border:1px solid #000;width: 200px;font:12px Myriad, Arial, sans-serif;',
|
115 |
alexandre_ |
704 |
'onchange' => 'javascript:this.form.submit();');
|
64 |
florian |
705 |
$formtemplate->addElement ('select', 'nature', BAZ_TYPEANNONCE, $type_annonce_select, $option) ;
|
126 |
florian |
706 |
if (isset($_REQUEST['nature'])) {
|
|
|
707 |
$defauts=array('nature'=>$_REQUEST['nature']);
|
|
|
708 |
$formtemplate->setDefaults($defauts);
|
|
|
709 |
}
|
22 |
florian |
710 |
}
|
64 |
florian |
711 |
//cas du type d'annonces prédéfini
|
|
|
712 |
else {
|
154 |
florian |
713 |
if ($nb_type_de_fiches==1) {
|
|
|
714 |
$GLOBALS['_BAZAR_']['typeannonce']=end($type_annonce_select);
|
|
|
715 |
$GLOBALS['_BAZAR_']['id_typeannonce']=key($type_annonce_select);
|
|
|
716 |
}
|
105 |
florian |
717 |
$res = '<h2>'.BAZ_TOUTES_LES_ANNONCES_DE_TYPE.' '.$GLOBALS['_BAZAR_']['typeannonce'].'</h2>'."\n";
|
22 |
florian |
718 |
}
|
83 |
alexandre_ |
719 |
|
64 |
florian |
720 |
//requete pour obtenir l'id, le nom et prenom de toutes les personnes ayant depose une fiche
|
126 |
florian |
721 |
// dans le but de construire l'élément de formulaire select avec les noms des émetteurs de fiche
|
93 |
alexandre_ |
722 |
if (BAZ_RECHERCHE_PAR_EMETTEUR) {
|
|
|
723 |
$requete = 'SELECT '.BAZ_CHAMPS_ID.', '.BAZ_CHAMPS_NOM.', '.BAZ_CHAMPS_PRENOM.' '.
|
129 |
florian |
724 |
'FROM bazar_fiche,'.BAZ_ANNUAIRE.' WHERE ' ;
|
93 |
alexandre_ |
725 |
|
|
|
726 |
$requete .= ' bf_date_debut_validite_fiche<=NOW() AND bf_date_fin_validite_fiche>=NOW() and';
|
|
|
727 |
|
|
|
728 |
$requete .= ' bf_ce_utilisateur='.BAZ_CHAMPS_ID.' ';
|
|
|
729 |
if (!isset($_REQUEST['nature'])) {
|
126 |
florian |
730 |
if (isset($GLOBALS['_BAZAR_']['id_typeannonce'])) {
|
|
|
731 |
$requete .= 'AND bf_ce_nature="'.$GLOBALS['_BAZAR_']['id_typeannonce'].'" ';
|
|
|
732 |
}
|
|
|
733 |
}
|
|
|
734 |
else {
|
|
|
735 |
if ($_REQUEST['nature']!='toutes') {
|
|
|
736 |
$requete .= 'AND bf_ce_nature='.$_REQUEST['nature'].' ';
|
|
|
737 |
}
|
93 |
alexandre_ |
738 |
}
|
|
|
739 |
|
|
|
740 |
$requete .= 'ORDER BY '.BAZ_CHAMPS_NOM.' ASC';
|
|
|
741 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
742 |
if (DB::isError($resultat)) {
|
|
|
743 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
744 |
}
|
|
|
745 |
$personnes_select['tous']=BAZ_TOUS_LES_EMETTEURS;
|
|
|
746 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
747 |
$personnes_select[$ligne[BAZ_CHAMPS_ID]] = $ligne[BAZ_CHAMPS_NOM]." ".$ligne[BAZ_CHAMPS_PRENOM] ;
|
|
|
748 |
}
|
126 |
florian |
749 |
$option=array('style'=>'border:1px solid #000;width: 200px;font:12px Myriad, Arial, sans-serif;');
|
93 |
alexandre_ |
750 |
$formtemplate->addElement ('select', 'personnes', BAZ_EMETTEUR, $personnes_select, $option) ;
|
|
|
751 |
} else {
|
|
|
752 |
$formtemplate->addElement ('hidden', 'personnes', 'tous') ;
|
22 |
florian |
753 |
}
|
93 |
alexandre_ |
754 |
|
83 |
alexandre_ |
755 |
//pour les super-administrateurs, on peut voir les annonces non validées
|
64 |
florian |
756 |
//on verifie si l'utilisateur est administrateur
|
111 |
alexandre_ |
757 |
$utilisateur = new Administrateur_bazar($GLOBALS['AUTH']) ;
|
83 |
alexandre_ |
758 |
|
93 |
alexandre_ |
759 |
if ($utilisateur->isSuperAdmin()) {
|
126 |
florian |
760 |
$option=array('style'=>'border:1px solid #000;width: 200px;font:12px Myriad, Arial, sans-serif;');
|
64 |
florian |
761 |
$valide_select[0] = BAZ_FICHES_PAS_VALIDEES;
|
|
|
762 |
$valide_select[1] = BAZ_FICHES_VALIDEES;
|
|
|
763 |
$valide_select[2] = BAZ_LES_DEUX;
|
|
|
764 |
$formtemplate->addElement ('select', 'valides', BAZ_VALIDE, $valide_select, $option) ;
|
98 |
florian |
765 |
$defauts=array('valides'=>1);
|
64 |
florian |
766 |
$formtemplate->setDefaults($defauts);
|
|
|
767 |
}
|
|
|
768 |
|
|
|
769 |
//champs texte pour entrer les mots cles
|
126 |
florian |
770 |
$option=array('maxlength'=>60,'style'=>'border:1px solid #000;width:200px;font:12px Myriad, Arial, sans-serif;');
|
22 |
florian |
771 |
$formtemplate->addElement('text', 'recherche_mots_cles', BAZ_MOT_CLE, $option) ;
|
64 |
florian |
772 |
|
|
|
773 |
//option cachee pour savoir si le formulaire a ete appele deja
|
|
|
774 |
$formtemplate->addElement('hidden', 'recherche_effectuee', 1) ;
|
125 |
alexandre_ |
775 |
|
|
|
776 |
// Ajout des options si un type de fiche a ete choisie
|
154 |
florian |
777 |
if ( (isset($_REQUEST['nature']) && $_REQUEST['nature'] != 'toutes') || (isset($GLOBALS['_BAZAR_']['categorie_nature']) && $nb_type_de_fiches==1)) {
|
126 |
florian |
778 |
if ( BAZ_MOTEUR_RECHERCHE_AVANCEE || ( isset($_REQUEST['recherche_avancee'])&&$_REQUEST['recherche_avancee']==1) ) {
|
|
|
779 |
if ($GLOBALS['_BAZAR_']['categorie_nature'] != '') {
|
|
|
780 |
$champs_requete = '' ;
|
|
|
781 |
if (!isset($_REQUEST['nature']) || $_REQUEST['nature'] == '') {
|
|
|
782 |
$_REQUEST['nature'] = $tableau_typeannonces[0];
|
|
|
783 |
}
|
125 |
alexandre_ |
784 |
}
|
126 |
florian |
785 |
// Récupération du template
|
|
|
786 |
$requete = 'SELECT bn_template FROM bazar_nature WHERE bn_id_nature="'.$_REQUEST['nature'].'"';
|
|
|
787 |
$resultat = $GLOBALS['_BAZAR_']['db']->getOne($requete) ;
|
|
|
788 |
if (DB::isError($resultat)) {
|
|
|
789 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
790 |
}
|
|
|
791 |
|
154 |
florian |
792 |
if (isset($_REQUEST['recherche_avancee']) && $_REQUEST['recherche_avancee']==1) {
|
126 |
florian |
793 |
foreach(array_merge($_POST, $_GET) as $cle => $valeur) $GLOBALS['_BAZAR_']['url']->addQueryString($cle, $valeur);
|
|
|
794 |
$GLOBALS['_BAZAR_']['url']->addQueryString('recherche_avancee', '0');
|
|
|
795 |
$lien_recherche_de_base = '<a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_RECHERCHE_DE_BASE.'</a><br />';
|
|
|
796 |
//lien recherche de base
|
|
|
797 |
labelhtml($formtemplate,'',$lien_recherche_de_base,'','','','','');
|
|
|
798 |
}
|
|
|
799 |
|
|
|
800 |
$tableau = baz_valeurs_template($resultat) ;
|
|
|
801 |
for ($i=0; $i<count($tableau); $i++) {
|
|
|
802 |
if (($tableau[$i]['type'] == 'liste' || $tableau[$i]['type'] == 'checkbox') && $tableau[$i]['recherche'] == 1) {
|
|
|
803 |
$tableau[$i]['type']($formtemplate, $tableau[$i]['nom_bdd'], $tableau[$i]['label'], $tableau[$i]['limite1'],
|
|
|
804 |
$tableau[$i]['limite2'], $tableau[$i]['defaut'], $tableau[$i]['table_source'], $tableau[$i]['obligatoire'], 1) ;
|
125 |
alexandre_ |
805 |
}
|
|
|
806 |
}
|
126 |
florian |
807 |
|
|
|
808 |
}
|
|
|
809 |
else {
|
|
|
810 |
foreach(array_merge($_POST, $_GET) as $cle => $valeur) $GLOBALS['_BAZAR_']['url']->addQueryString($cle, $valeur);
|
|
|
811 |
$GLOBALS['_BAZAR_']['url']->addQueryString('recherche_avancee', '1');
|
|
|
812 |
$lien_recherche_avancee = '<a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_RECHERCHE_AVANCEE.'</a><br />';
|
|
|
813 |
}
|
125 |
alexandre_ |
814 |
}
|
126 |
florian |
815 |
|
|
|
816 |
//lien recherche avancee
|
|
|
817 |
if (isset($lien_recherche_avancee)) {
|
|
|
818 |
labelhtml($formtemplate,'',$lien_recherche_avancee,'','','','','');
|
|
|
819 |
}
|
|
|
820 |
|
22 |
florian |
821 |
//Bouton de validation du formulaire
|
154 |
florian |
822 |
$option=array('style'=>'border:1px solid #000;width:100px;font:12px Myriad, Arial, sans-serif;');
|
134 |
florian |
823 |
$formtemplate->addElement('submit', 'rechercher', BAZ_RECHERCHER, $option);
|
64 |
florian |
824 |
|
|
|
825 |
//affichage du formulaire
|
23 |
florian |
826 |
$res.=$formtemplate->toHTML()."\n";
|
64 |
florian |
827 |
|
125 |
alexandre_ |
828 |
|
115 |
alexandre_ |
829 |
// Ajout de la table bazar_fiche_liste_valeur dans le from de la requete
|
|
|
830 |
$case_coche = false ;
|
126 |
florian |
831 |
$nb_jointures=0;
|
115 |
alexandre_ |
832 |
$requeteFrom = '' ;
|
154 |
florian |
833 |
$requeteWhere = ' bn_ce_id_menu='.$GLOBALS['_BAZAR_']['categorie_nature'].' AND bn_id_nature=bf_ce_nature AND ' ;
|
115 |
alexandre_ |
834 |
$requeteWhereListe = '' ;
|
|
|
835 |
|
126 |
florian |
836 |
if ( isset($tableau) ) {
|
|
|
837 |
for ($i = 0; $i < count ($tableau); $i++) {
|
|
|
838 |
if ($tableau[$i]['type'] == 'checkbox' || $tableau[$i]['type'] == 'liste') {
|
|
|
839 |
$nb_jointures++;
|
|
|
840 |
$nom_liste = $tableau[$i]['type'].$tableau[$i]['nom_bdd'] ;
|
|
|
841 |
if (isset($_REQUEST[$nom_liste]) && is_array($_REQUEST[$nom_liste])) {
|
|
|
842 |
$case_coche = true;
|
|
|
843 |
$requeteWhereListe .= ' bfvl'.$nb_jointures.'.bfvl_ce_liste='.$tableau[$i]['nom_bdd'].' AND ' ; // Numéro de la liste
|
|
|
844 |
$requeteWhereListe .= ' bfvl'.$nb_jointures.'.bfvl_valeur IN (' ;
|
|
|
845 |
$chaine = '';
|
|
|
846 |
//var_dump($_REQUEST[$nom_liste]);
|
|
|
847 |
foreach ($_REQUEST[$nom_liste] as $cle =>$valeur) {
|
|
|
848 |
if ($valeur == 1) {
|
|
|
849 |
$chaine .= '"'.$cle.'",' ;
|
|
|
850 |
}
|
|
|
851 |
}
|
|
|
852 |
$requeteWhereListe .= substr ($chaine, 0, strlen ($chaine)-1) ;
|
|
|
853 |
$requeteWhereListe .= ') AND ';
|
|
|
854 |
} else {
|
|
|
855 |
if (isset ($_REQUEST[$nom_liste]) && $_REQUEST[$nom_liste]!=0) {
|
|
|
856 |
$requeteWhereListe .= ' bfvl'.$nb_jointures.'.bfvl_ce_liste='.$tableau[$i]['nom_bdd'].' AND ' ; // Numéro de la liste
|
|
|
857 |
$requeteWhereListe .= ' bfvl'.$nb_jointures.'.bfvl_valeur='.$_REQUEST[$nom_liste].' AND ';
|
|
|
858 |
$case_coche = true;
|
125 |
alexandre_ |
859 |
}
|
|
|
860 |
}
|
|
|
861 |
}
|
|
|
862 |
}
|
126 |
florian |
863 |
}
|
125 |
alexandre_ |
864 |
if ($case_coche) {
|
126 |
florian |
865 |
for ($i = 0; $i < $nb_jointures ; $i++) {
|
|
|
866 |
$requeteFrom .= ', bazar_fiche_valeur_liste as bfvl'.($i+1) ;
|
|
|
867 |
$requeteWhere .= ' bfvl'.($i+1).'.bfvl_ce_fiche=bf_id_fiche AND ';
|
|
|
868 |
}
|
|
|
869 |
$requeteWhere .= $requeteWhereListe;
|
125 |
alexandre_ |
870 |
}
|
126 |
florian |
871 |
if (isset($_REQUEST['nature']) && $_REQUEST['nature']!='' && $_REQUEST['nature']!='toutes') {
|
125 |
alexandre_ |
872 |
$requeteWhere = 'bf_ce_nature="'.$_REQUEST['nature'].'" AND '.$requeteWhere;
|
|
|
873 |
}
|
|
|
874 |
|
64 |
florian |
875 |
//affichage des resultats de la recherche si le formulaire a ete envoye
|
87 |
alexandre_ |
876 |
$requeteSQL='';
|
64 |
florian |
877 |
if (isset($_REQUEST['recherche_effectuee'])) {
|
|
|
878 |
//preparation de la requete pour trouver les mots cles
|
125 |
alexandre_ |
879 |
if (($_REQUEST['recherche_mots_cles']!='')and($_REQUEST['recherche_mots_cles']!=BAZ_MOT_CLE)) {
|
64 |
florian |
880 |
//decoupage des mots cles
|
125 |
alexandre_ |
881 |
$recherche = split(' ', $_REQUEST['recherche_mots_cles']) ;
|
64 |
florian |
882 |
$nbmots=count($recherche);
|
|
|
883 |
$requeteSQL='';
|
22 |
florian |
884 |
for ($i=0; $i<$nbmots; $i++) {
|
|
|
885 |
if ($i>0) $requeteSQL.=' OR ';
|
|
|
886 |
$requeteSQL.='bf_titre LIKE "%'.$recherche[$i].'%" OR bf_description LIKE "%'.$recherche[$i].'%" ';
|
|
|
887 |
}
|
|
|
888 |
}
|
93 |
alexandre_ |
889 |
if (!isset($_REQUEST['nature'])) {
|
|
|
890 |
if (!isset ($GLOBALS['_BAZAR_']['id_nature'])) $typedefiches = $tableau_typeannonces;
|
|
|
891 |
else $typedefiches = $GLOBALS['_BAZAR_']['id_nature'] ;
|
|
|
892 |
} else {
|
|
|
893 |
$typedefiches = $_REQUEST['nature'] ;
|
|
|
894 |
if ($typedefiches == 'toutes') $typedefiches = $tableau_typeannonces ;
|
|
|
895 |
}
|
97 |
florian |
896 |
if ($typeannonce!='toutes') $typedefiches=$typeannonce;
|
125 |
alexandre_ |
897 |
if (isset($_REQUEST['valides'])) {$valides=$_REQUEST['valides'];}
|
64 |
florian |
898 |
else {$valides=1;}
|
|
|
899 |
//generation de la liste de flux a afficher
|
126 |
florian |
900 |
if (!isset($_REQUEST['personne'])) $_REQUEST['personne']='tous';
|
|
|
901 |
$res .= baz_liste_pagine_HTML($typedefiches, '', $_REQUEST['personne'], $valides, $requeteSQL, $requeteFrom, $requeteWhere);
|
22 |
florian |
902 |
}
|
|
|
903 |
else {
|
23 |
florian |
904 |
//on affiche toutes les annonces
|
107 |
florian |
905 |
$res .= '<br /><p class="zone_info">'."\n".BAZ_ENTRER_VOS_CRITERES_DE_RECHERCHE.'</p>'."\n";
|
|
|
906 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
|
|
907 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_VOIR_FLUX_RSS);
|
126 |
florian |
908 |
$GLOBALS['_BAZAR_']['url']->addQueryString('annonce', $typeannonce);
|
|
|
909 |
$GLOBALS['_BAZAR_']['url']->addQueryString('categorie_nature', $GLOBALS['_BAZAR_']['categorie_nature']);
|
134 |
florian |
910 |
$res .= '{{Syndication titre="Les dernières fiches enregistrées" url="'.preg_replace ('/&/', '&', $GLOBALS['_BAZAR_']['url']->getURL()).
|
126 |
florian |
911 |
'" nb=10 nouvellefenetre=0 formatdate="'.BAZ_TYPE_AFFICHAGE_LISTE.'"}}';
|
22 |
florian |
912 |
}
|
5 |
florian |
913 |
return $res;
|
|
|
914 |
}
|
125 |
alexandre_ |
915 |
|
|
|
916 |
/**
|
|
|
917 |
* Cette fonction renvoie du HTML
|
|
|
918 |
*/
|
129 |
florian |
919 |
function baz_liste_pagine_HTML($typeannonce, $nbitem, $emetteur, $valide, $requeteSQL = '', $requeteFrom = '', $requeteWhere = '') {
|
125 |
alexandre_ |
920 |
// generation de la requete MySQL personnalisee
|
|
|
921 |
$req_where=0;
|
154 |
florian |
922 |
$requete = 'SELECT DISTINCT bf_id_fiche, bf_titre, bf_ce_utilisateur, bf_date_debut_validite_fiche '.
|
125 |
alexandre_ |
923 |
'FROM bazar_fiche, bazar_nature '.$requeteFrom.' WHERE '.$requeteWhere;
|
|
|
924 |
if ($valide!=2) {
|
129 |
florian |
925 |
if ($req_where==1) {$requete .= ' AND ';}
|
125 |
alexandre_ |
926 |
$req_where=1;
|
129 |
florian |
927 |
$requete .= 'bf_statut_fiche='.$valide;
|
136 |
alexandre_ |
928 |
} else {
|
|
|
929 |
$requete .= '1 ' ;
|
|
|
930 |
}
|
125 |
alexandre_ |
931 |
|
143 |
alexandre_ |
932 |
$utilisateur = new Administrateur_bazar ($GLOBALS['AUTH']) ;
|
125 |
alexandre_ |
933 |
if ($valide!=0) {
|
|
|
934 |
if ($utilisateur->isSuperAdmin()) {
|
|
|
935 |
$req_where=1;
|
|
|
936 |
} else {
|
134 |
florian |
937 |
if ($req_where==1) {$requete .= ' AND ';}
|
125 |
alexandre_ |
938 |
$requete .= '(bf_date_debut_validite_fiche<=NOW() or bf_date_debut_validite_fiche="0000-00-00")'.
|
|
|
939 |
' 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 |
940 |
$req_where=1;
|
125 |
alexandre_ |
941 |
}
|
|
|
942 |
}
|
|
|
943 |
if ($emetteur!='' && $emetteur!='tous') {
|
|
|
944 |
if ($req_where==1) {$requete .= ' AND ';}
|
|
|
945 |
$requete .= 'bf_ce_utilisateur='.$emetteur;
|
|
|
946 |
$req_where=1;
|
|
|
947 |
//requete pour afficher le nom de la structure
|
|
|
948 |
$requetenom = 'SELECT '.BAZ_CHAMPS_NOM.', '.BAZ_CHAMPS_PRENOM.' FROM '.
|
|
|
949 |
BAZ_ANNUAIRE.' WHERE '.BAZ_CHAMPS_ID.'='.$emetteur;
|
|
|
950 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requetenom) ;
|
|
|
951 |
if (DB::isError($resultat)) {
|
|
|
952 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
953 |
}
|
|
|
954 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
|
|
|
955 |
$nomflux .= ' ('.$ligne[BAZ_CHAMPS_NOM].' '.$ligne[BAZ_CHAMPS_PRENOM].')';
|
|
|
956 |
}
|
|
|
957 |
if ($requeteSQL!='') {
|
|
|
958 |
if ($req_where==1) {$requete .= ' AND ';}
|
|
|
959 |
$requete .= '('.$requeteSQL.')';
|
|
|
960 |
$req_where=1;
|
|
|
961 |
}
|
|
|
962 |
$requete .= ' ORDER BY bf_date_debut_validite_fiche DESC, bf_date_fin_validite_fiche DESC, bf_date_maj_fiche DESC';
|
|
|
963 |
if ($nbitem!='') {$requete .= ' LIMIT 0,'.$nbitem;}
|
126 |
florian |
964 |
|
125 |
alexandre_ |
965 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
966 |
if (DB::isError($resultat)) {
|
|
|
967 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
968 |
}
|
|
|
969 |
$res = '<br /><h4>'.BAZ_IL_Y_A.($resultat->numRows()).' '.BAZ_FICHES_CORRESPONDANTES.'</h4><br />'."\n";
|
|
|
970 |
$res .= '<ul>' ;
|
|
|
971 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_VOIR_FICHE);
|
|
|
972 |
|
|
|
973 |
$donnees = array();
|
|
|
974 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_OBJECT)) {
|
|
|
975 |
$GLOBALS['_BAZAR_']['url']->addQueryString('id_fiche', $ligne->bf_id_fiche) ;
|
154 |
florian |
976 |
array_push ($donnees, array ($ligne->bf_id_fiche,$ligne->bf_titre,$ligne->bf_ce_utilisateur));
|
125 |
alexandre_ |
977 |
}
|
|
|
978 |
// Mise en place du Pager
|
126 |
florian |
979 |
include_once PAP_CHEMIN_API_PEAR.'Pager/Pager.php';
|
125 |
alexandre_ |
980 |
$params = array(
|
|
|
981 |
'mode' => BAZ_MODE_DIVISION,
|
|
|
982 |
'perPage' => BAZ_NOMBRE_RES_PAR_PAGE,
|
|
|
983 |
'delta' => BAZ_DELTA,
|
|
|
984 |
'httpMethod' => 'GET',
|
126 |
florian |
985 |
'extraVars' => array_merge($_POST, $_GET),
|
125 |
alexandre_ |
986 |
'altNext' => BAZ_SUIVANT,
|
|
|
987 |
'altPrev' => BAZ_PRECEDENT,
|
|
|
988 |
'nextImg' => BAZ_SUIVANT,
|
|
|
989 |
'prevImg' => BAZ_PRECEDENT,
|
|
|
990 |
'itemData' => $donnees
|
|
|
991 |
);
|
|
|
992 |
$pager = & Pager::factory($params);
|
|
|
993 |
$data = $pager->getPageData();
|
|
|
994 |
$links = $pager->getLinks();
|
128 |
alexandre_ |
995 |
$res .= '<div class="bazar_numero">'.$pager->links.'</div>'."\n";
|
125 |
alexandre_ |
996 |
foreach ($data as $valeur) {
|
|
|
997 |
$GLOBALS['_BAZAR_']['url']->addQueryString('id_fiche', $valeur[0]) ;
|
139 |
alexandre_ |
998 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_VOIR_FICHE) ;
|
138 |
alexandre_ |
999 |
$res .= '<li><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.$valeur[1].'</a>'."\n" ;
|
154 |
florian |
1000 |
if ($utilisateur->isSuperAdmin() || $GLOBALS['id_user']==$valeur[2]) {
|
|
|
1001 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_ACTION_MODIFIER);
|
|
|
1002 |
$res .= '<a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">('.BAZ_MODIFIER.')</a> ' ;
|
|
|
1003 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
138 |
alexandre_ |
1004 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_ACTION_SUPPRESSION);
|
|
|
1005 |
$res .= '<a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'" onclick="javascript:return confirm(\''.BAZ_SUPPRIMER.'\');">('.BAZ_SUPPRIMER.')</a>' ;
|
139 |
alexandre_ |
1006 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
138 |
alexandre_ |
1007 |
}
|
|
|
1008 |
$res .= '</li>';
|
125 |
alexandre_ |
1009 |
}
|
|
|
1010 |
$res .= '</ul>';
|
128 |
alexandre_ |
1011 |
$res .= '<div class="bazar_numero">'.$pager->links.'</div>'."\n";
|
125 |
alexandre_ |
1012 |
|
|
|
1013 |
return $res ;
|
|
|
1014 |
}
|
|
|
1015 |
|
|
|
1016 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
1017 |
*
|
126 |
florian |
1018 |
* $Log: not supported by cvs2svn $
|
170 |
alexandre_ |
1019 |
* Revision 1.60.2.2 2007/01/17 16:01:27 alexandre_tb
|
|
|
1020 |
* les dates ne s'affichent pas si elles sont vides.
|
|
|
1021 |
* les champs dates propose 4 années avant l'année actuelle
|
165 |
alexandre_ |
1022 |
*
|
170 |
alexandre_ |
1023 |
* Revision 1.60.2.1 2007/01/05 14:41:49 alexandre_tb
|
|
|
1024 |
* backport ordre d affichage des dernieres news et suppression de la taille des images uploadees
|
|
|
1025 |
*
|
164 |
alexandre_ |
1026 |
* Revision 1.60 2006/10/05 08:53:50 florian
|
|
|
1027 |
* amelioration moteur de recherche, correction de bugs
|
|
|
1028 |
*
|
154 |
florian |
1029 |
* Revision 1.59 2006/09/21 14:19:39 florian
|
|
|
1030 |
* amélioration des fonctions liés au wikini
|
|
|
1031 |
*
|
152 |
florian |
1032 |
* Revision 1.58 2006/09/15 12:31:40 alexandre_tb
|
|
|
1033 |
* correction du nom du flux RSS.
|
|
|
1034 |
*
|
149 |
alexandre_ |
1035 |
* Revision 1.57 2006/07/25 13:22:27 alexandre_tb
|
|
|
1036 |
* réorganisation du code, sans grand changement
|
|
|
1037 |
*
|
143 |
alexandre_ |
1038 |
* Revision 1.56 2006/07/18 14:13:35 alexandre_tb
|
|
|
1039 |
* Ajout d identifiant HTML
|
|
|
1040 |
*
|
139 |
alexandre_ |
1041 |
* Revision 1.55 2006/07/04 14:29:18 alexandre_tb
|
|
|
1042 |
* Ajout du bouton supprimer pour les administrateurs
|
|
|
1043 |
*
|
138 |
alexandre_ |
1044 |
* Revision 1.54 2006/07/03 09:51:21 alexandre_tb
|
|
|
1045 |
* correction du bug recherche sur fiches validés et invalidés.
|
|
|
1046 |
*
|
136 |
alexandre_ |
1047 |
* Revision 1.53 2006/06/29 10:29:51 florian
|
|
|
1048 |
* correction bug moteur de recherche
|
|
|
1049 |
*
|
134 |
florian |
1050 |
* Revision 1.52 2006/06/02 09:29:07 florian
|
|
|
1051 |
* debut d'integration de wikini
|
|
|
1052 |
*
|
129 |
florian |
1053 |
* Revision 1.51 2006/05/23 15:41:27 alexandre_tb
|
|
|
1054 |
* 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
|
|
|
1055 |
*
|
128 |
alexandre_ |
1056 |
* Revision 1.50 2006/05/22 09:55:12 alexandre_tb
|
|
|
1057 |
* ajout de la variable recherche_avancee dans l'action du formulaire
|
|
|
1058 |
*
|
127 |
alexandre_ |
1059 |
* Revision 1.49 2006/05/19 13:54:11 florian
|
|
|
1060 |
* stabilisation du moteur de recherche, corrections bugs, lien recherche avancee
|
|
|
1061 |
*
|
126 |
florian |
1062 |
* Revision 1.48 2006/05/17 09:50:13 alexandre_tb
|
|
|
1063 |
* Ajout du moteur de recherche évolué et du découpage par page
|
|
|
1064 |
*
|
125 |
alexandre_ |
1065 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
1066 |
*/
|
23 |
florian |
1067 |
?>
|