5 |
florian |
1 |
<?php
|
|
|
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 |
// +------------------------------------------------------------------------------------------------------+
|
316 |
alexandre_ |
22 |
// CVS : $Id: bazar.fonct.php,v 1.70 2007-10-10 13:26:36 alexandre_tb Exp $
|
5 |
florian |
23 |
/**
|
|
|
24 |
*
|
|
|
25 |
* Fonctions du module bazar
|
61 |
ddelon |
26 |
*
|
5 |
florian |
27 |
*
|
|
|
28 |
*@package bazar
|
|
|
29 |
//Auteur original :
|
|
|
30 |
*@author Alexandre Granier <alexandre@tela-botanica.org>
|
|
|
31 |
*@author Florian Schmitt <florian@ecole-et-nature.org>
|
|
|
32 |
//Autres auteurs :
|
|
|
33 |
*@copyright Tela-Botanica 2000-2004
|
316 |
alexandre_ |
34 |
*@version $Revision: 1.70 $ $Date: 2007-10-10 13:26:36 $
|
5 |
florian |
35 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
36 |
*/
|
|
|
37 |
|
|
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
39 |
// | ENTETE du PROGRAMME |
|
|
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
118 |
florian |
41 |
require_once PAP_CHEMIN_API_PEAR.'HTML/QuickForm.php' ;
|
|
|
42 |
require_once PAP_CHEMIN_API_PEAR.'HTML/QuickForm/checkbox.php' ;
|
|
|
43 |
require_once PAP_CHEMIN_API_PEAR.'HTML/QuickForm/textarea.php' ;
|
|
|
44 |
require_once PAP_CHEMIN_API_PEAR.'HTML/Table.php' ;
|
259 |
alexandre_ |
45 |
require_once GEN_CHEMIN_API.'formulaire/formulaire.fonct.inc.php';
|
5 |
florian |
46 |
require_once 'bazar.fonct.rss.php';
|
|
|
47 |
|
|
|
48 |
|
316 |
alexandre_ |
49 |
/** fiches_a_valider () - Renvoie les annonces restant a valider par un administrateur
|
5 |
florian |
50 |
*
|
|
|
51 |
* @return string HTML
|
|
|
52 |
*/
|
|
|
53 |
function fiches_a_valider() {
|
|
|
54 |
// Pour les administrateurs d'une rubrique, on affiche les fiches a valider de cette rubrique
|
|
|
55 |
// On effectue une requete sur le bazar pour voir les fiches a administrer
|
271 |
alexandre_ |
56 |
$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_ADMIN);
|
64 |
florian |
57 |
$res= '<h2>'.BAZ_ANNONCES_A_ADMINISTRER.'</h2><br />'."\n";
|
271 |
alexandre_ |
58 |
$requete = 'SELECT * FROM bazar_fiche, bazar_nature WHERE bf_statut_fiche=0 AND ' .
|
|
|
59 |
'bn_id_nature=bf_ce_nature AND bn_ce_id_menu IN ('.$GLOBALS['_BAZAR_']['categorie_nature'].') ' .
|
|
|
60 |
'ORDER BY bf_date_maj_fiche DESC' ;
|
5 |
florian |
61 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
62 |
if (DB::isError($resultat)) {
|
|
|
63 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
64 |
}
|
|
|
65 |
if ($resultat->numRows() != 0) {
|
|
|
66 |
$tableAttr = array('id' => 'table_bazar') ;
|
|
|
67 |
$table = new HTML_Table($tableAttr) ;
|
|
|
68 |
$entete = array (BAZ_TITREANNONCE ,BAZ_ANNONCEUR, BAZ_TYPEANNONCE, BAZ_PUBLIER, BAZ_SUPPRIMER) ;
|
|
|
69 |
$table->addRow($entete) ;
|
|
|
70 |
$table->setRowType (0, 'th') ;
|
|
|
71 |
|
|
|
72 |
// On affiche une ligne par proposition
|
|
|
73 |
while ($ligne = $resultat->fetchRow (DB_FETCHMODE_ASSOC)) {
|
271 |
alexandre_ |
74 |
//Requete pour trouver le nom et prenom de l'annonceur
|
69 |
alexandre_ |
75 |
$requetenomprenom = 'SELECT '.BAZ_CHAMPS_PRENOM.', '.BAZ_CHAMPS_NOM.' FROM '.BAZ_ANNUAIRE.
|
|
|
76 |
' WHERE '.BAZ_CHAMPS_ID.'='.$ligne['bf_ce_utilisateur'] ;
|
5 |
florian |
77 |
$resultatnomprenom = $GLOBALS['_BAZAR_']['db']->query ($requetenomprenom) ;
|
|
|
78 |
if (DB::isError($resultatnomprenom)) {
|
69 |
alexandre_ |
79 |
echo ("Echec de la requete<br />".$resultatnomprenom->getMessage()."<br />".$resultatnomprenom->getDebugInfo()) ;
|
5 |
florian |
80 |
}
|
|
|
81 |
while ($lignenomprenom = $resultatnomprenom->fetchRow (DB_FETCHMODE_ASSOC)) {
|
|
|
82 |
$annonceur=$lignenomprenom[BAZ_CHAMPS_PRENOM]." ".$lignenomprenom[BAZ_CHAMPS_NOM];
|
|
|
83 |
}
|
|
|
84 |
$lien_voir=$GLOBALS['_BAZAR_']['url'];
|
|
|
85 |
$lien_voir->addQueryString('action', BAZ_VOIR_FICHE);
|
|
|
86 |
$lien_voir->addQueryString('id_fiche', $ligne['bf_id_fiche']);
|
64 |
florian |
87 |
$lien_voir->addQueryString('typeannonce', $ligne['bn_id_nature']);
|
5 |
florian |
88 |
|
263 |
alexandre_ |
89 |
// Nettoyage de l'url
|
|
|
90 |
// NOTE (jpm - 23 mai 2007): pour être compatible avec PHP5 il faut utiliser tjrs $GLOBALS['_BAZAR_']['url'] car en php4 on
|
|
|
91 |
// copie bien une variable mais pas en php5, cela reste une référence...
|
|
|
92 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
|
|
93 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('id_fiche');
|
|
|
94 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('typeannonce');
|
5 |
florian |
95 |
|
263 |
alexandre_ |
96 |
$GLOBALS['_BAZAR_']['url']->addQueryString('id_fiche', $ligne['bf_id_fiche']);
|
|
|
97 |
$GLOBALS['_BAZAR_']['url']->addQueryString('typeannonce', $ligne['bn_id_nature']);
|
5 |
florian |
98 |
|
263 |
alexandre_ |
99 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_VOIR_FICHE);
|
|
|
100 |
$lien_voir = $GLOBALS['_BAZAR_']['url']->getURL();
|
|
|
101 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
|
|
102 |
|
|
|
103 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_ACTION_PUBLIER);
|
|
|
104 |
$lien_publie_oui = $GLOBALS['_BAZAR_']['url']->getURL();
|
|
|
105 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
5 |
florian |
106 |
|
263 |
alexandre_ |
107 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_ACTION_PAS_PUBLIER);
|
|
|
108 |
$lien_publie_non = $GLOBALS['_BAZAR_']['url']->getURL();
|
|
|
109 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
|
|
110 |
|
|
|
111 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_ACTION_SUPPRESSION);
|
|
|
112 |
$lien_supprimer = $GLOBALS['_BAZAR_']['url']->getURL();
|
|
|
113 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
|
|
114 |
|
|
|
115 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('id_fiche');
|
|
|
116 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('typeannonce');
|
|
|
117 |
|
5 |
florian |
118 |
$table->addRow (array(
|
263 |
alexandre_ |
119 |
'<a href="'.$lien_voir.'">'.$ligne['bf_titre'].'</a>'."\n", // col 1 : le nom
|
5 |
florian |
120 |
$annonceur."\n", // col 2 : annonceur
|
166 |
alexandre_ |
121 |
$ligne['bn_label_nature']."\n", // col 3 : type annonce
|
263 |
alexandre_ |
122 |
"<a href=\"".$lien_publie_oui."\">".BAZ_OUI."</a> / \n".
|
|
|
123 |
"<a href=\"".$lien_publie_non."\">".BAZ_NON."</a>", // col 4 : publier ou pas
|
|
|
124 |
"<a href=\"".$lien_supprimer."\"".
|
5 |
florian |
125 |
" onclick=\"javascript:return confirm('".BAZ_CONFIRMATION_SUPPRESSION."');\">".BAZ_SUPPRIMER."</a>\n")) ; // col 5 : supprimer
|
|
|
126 |
|
|
|
127 |
}
|
|
|
128 |
$table->altRowAttributes(1, array("class" => "ligne_impaire"), array("class" => "ligne_paire"));
|
|
|
129 |
$table->updateColAttributes(1, array("align" => "center"));
|
|
|
130 |
$table->updateColAttributes(2, array("align" => "center"));
|
|
|
131 |
$table->updateColAttributes(3, array("align" => "center"));
|
|
|
132 |
$table->updateColAttributes(4, array("align" => "center"));
|
|
|
133 |
$res .= $table->toHTML() ;
|
|
|
134 |
}
|
|
|
135 |
else {
|
118 |
florian |
136 |
$res .= '<p class="zone_info">'.BAZ_PAS_DE_FICHE_A_VALIDER.'</p>'."\n" ;
|
5 |
florian |
137 |
}
|
154 |
florian |
138 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_VOIR_TOUTES_ANNONCES);
|
271 |
alexandre_ |
139 |
|
286 |
alexandre_ |
140 |
//$res .= '<br /><ul style="clear:both;"><li><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'" title="'.BAZ_CONSULTER_FICHES_VALIDEES.'">'.BAZ_CONSULTER_FICHES_VALIDEES.'</a></li></ul>';
|
205 |
jp_milcent |
141 |
|
|
|
142 |
// Nettoyage de l'url
|
154 |
florian |
143 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
205 |
jp_milcent |
144 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('id_fiche');
|
|
|
145 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('typeannonce');
|
271 |
alexandre_ |
146 |
|
|
|
147 |
// Les autres fiches, deja validees
|
|
|
148 |
$res .= '<h2>'.BAZ_TOUTES_LES_FICHES.'</h2>'."\n";
|
|
|
149 |
$requete = 'SELECT * FROM bazar_fiche, bazar_nature WHERE bf_statut_fiche=1 AND ' .
|
|
|
150 |
'bn_id_nature=bf_ce_nature AND bn_ce_id_menu IN ('.$GLOBALS['_BAZAR_']['categorie_nature'].') ' .
|
|
|
151 |
'ORDER BY bf_date_maj_fiche DESC' ;
|
|
|
152 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
153 |
if (DB::isError($resultat)) {
|
|
|
154 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
155 |
}
|
|
|
156 |
if ($resultat->numRows() != 0) {
|
|
|
157 |
$tableAttr = array('id' => 'table_bazar') ;
|
|
|
158 |
$table = new HTML_Table($tableAttr) ;
|
|
|
159 |
$entete = array (BAZ_TITREANNONCE ,BAZ_ANNONCEUR, BAZ_TYPEANNONCE, BAZ_PUBLIER, BAZ_SUPPRIMER) ;
|
|
|
160 |
$table->addRow($entete) ;
|
|
|
161 |
$table->setRowType (0, 'th') ;
|
|
|
162 |
|
|
|
163 |
// On affiche une ligne par proposition
|
|
|
164 |
while ($ligne = $resultat->fetchRow (DB_FETCHMODE_ASSOC)) {
|
|
|
165 |
//Requete pour trouver le nom et prenom de l'annonceur
|
|
|
166 |
$requetenomprenom = 'SELECT '.BAZ_CHAMPS_PRENOM.', '.BAZ_CHAMPS_NOM.' FROM '.BAZ_ANNUAIRE.
|
|
|
167 |
' WHERE '.BAZ_CHAMPS_ID.'='.$ligne['bf_ce_utilisateur'] ;
|
|
|
168 |
$resultatnomprenom = $GLOBALS['_BAZAR_']['db']->query ($requetenomprenom) ;
|
|
|
169 |
if (DB::isError($resultatnomprenom)) {
|
|
|
170 |
echo ("Echec de la requete<br />".$resultatnomprenom->getMessage()."<br />".$resultatnomprenom->getDebugInfo()) ;
|
|
|
171 |
}
|
|
|
172 |
while ($lignenomprenom = $resultatnomprenom->fetchRow (DB_FETCHMODE_ASSOC)) {
|
|
|
173 |
$annonceur=$lignenomprenom[BAZ_CHAMPS_PRENOM]." ".$lignenomprenom[BAZ_CHAMPS_NOM];
|
|
|
174 |
}
|
|
|
175 |
$lien_voir=$GLOBALS['_BAZAR_']['url'];
|
|
|
176 |
$lien_voir->addQueryString('action', BAZ_VOIR_FICHE);
|
|
|
177 |
$lien_voir->addQueryString('id_fiche', $ligne['bf_id_fiche']);
|
|
|
178 |
$lien_voir->addQueryString('typeannonce', $ligne['bn_id_nature']);
|
|
|
179 |
|
|
|
180 |
// Nettoyage de l'url
|
|
|
181 |
// NOTE (jpm - 23 mai 2007): pour être compatible avec PHP5 il faut utiliser tjrs $GLOBALS['_BAZAR_']['url'] car en php4 on
|
|
|
182 |
// copie bien une variable mais pas en php5, cela reste une référence...
|
|
|
183 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
|
|
184 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('id_fiche');
|
|
|
185 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('typeannonce');
|
|
|
186 |
|
|
|
187 |
$GLOBALS['_BAZAR_']['url']->addQueryString('id_fiche', $ligne['bf_id_fiche']);
|
|
|
188 |
$GLOBALS['_BAZAR_']['url']->addQueryString('typeannonce', $ligne['bn_id_nature']);
|
|
|
189 |
|
|
|
190 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_VOIR_FICHE);
|
|
|
191 |
$lien_voir = $GLOBALS['_BAZAR_']['url']->getURL();
|
|
|
192 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
205 |
jp_milcent |
193 |
|
271 |
alexandre_ |
194 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_ACTION_PUBLIER);
|
|
|
195 |
$lien_publie_oui = $GLOBALS['_BAZAR_']['url']->getURL();
|
|
|
196 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
|
|
197 |
|
|
|
198 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_ACTION_PAS_PUBLIER);
|
|
|
199 |
$lien_publie_non = $GLOBALS['_BAZAR_']['url']->getURL();
|
|
|
200 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
|
|
201 |
|
|
|
202 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_ACTION_SUPPRESSION);
|
|
|
203 |
$lien_supprimer = $GLOBALS['_BAZAR_']['url']->getURL();
|
|
|
204 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
|
|
205 |
|
|
|
206 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('id_fiche');
|
|
|
207 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('typeannonce');
|
|
|
208 |
|
|
|
209 |
$table->addRow (array(
|
|
|
210 |
'<a href="'.$lien_voir.'">'.$ligne['bf_titre'].'</a>'."\n", // col 1 : le nom
|
|
|
211 |
$annonceur."\n", // col 2 : annonceur
|
|
|
212 |
$ligne['bn_label_nature']."\n", // col 3 : type annonce
|
|
|
213 |
"<a href=\"".$lien_publie_oui."\">".BAZ_OUI."</a> / \n".
|
|
|
214 |
"<a href=\"".$lien_publie_non."\">".BAZ_NON."</a>", // col 4 : publier ou pas
|
|
|
215 |
"<a href=\"".$lien_supprimer."\"".
|
|
|
216 |
" onclick=\"javascript:return confirm('".BAZ_CONFIRMATION_SUPPRESSION."');\">".BAZ_SUPPRIMER."</a>\n")) ; // col 5 : supprimer
|
|
|
217 |
|
|
|
218 |
}
|
|
|
219 |
$table->altRowAttributes(1, array("class" => "ligne_impaire"), array("class" => "ligne_paire"));
|
|
|
220 |
$table->updateColAttributes(1, array("align" => "center"));
|
|
|
221 |
$table->updateColAttributes(2, array("align" => "center"));
|
|
|
222 |
$table->updateColAttributes(3, array("align" => "center"));
|
|
|
223 |
$table->updateColAttributes(4, array("align" => "center"));
|
|
|
224 |
$res .= $table->toHTML() ;
|
|
|
225 |
}
|
|
|
226 |
$GLOBALS['_BAZAR_']['url']->removeQueryString(BAZ_VARIABLE_VOIR);
|
5 |
florian |
227 |
return $res;
|
|
|
228 |
}
|
|
|
229 |
|
|
|
230 |
|
|
|
231 |
/** mes_fiches () - Renvoie les fiches bazar d'un utilisateur
|
|
|
232 |
*
|
|
|
233 |
* @return string HTML
|
|
|
234 |
*/
|
|
|
235 |
function mes_fiches() {
|
154 |
florian |
236 |
$res= '<h2>'.BAZ_VOS_ANNONCES.'</h2><br />'."\n";
|
286 |
alexandre_ |
237 |
if ($GLOBALS['AUTH']->getAuth()) {
|
67 |
alexandre_ |
238 |
// requete pour voir si l'utilisateur a des fiches a son nom, classees par date de MAJ et nature d'annonce
|
24 |
florian |
239 |
$requete = 'SELECT * FROM bazar_fiche, bazar_nature WHERE bf_ce_utilisateur='. $GLOBALS['id_user'].
|
185 |
jp_milcent |
240 |
' AND bn_id_nature=bf_ce_nature AND bn_ce_id_menu IN ('.$GLOBALS['_BAZAR_']['categorie_nature'].') ORDER BY bf_date_maj_fiche DESC,bf_ce_nature ASC';
|
68 |
florian |
241 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
24 |
florian |
242 |
if (DB::isError($resultat)) {
|
|
|
243 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
244 |
}
|
|
|
245 |
if ($resultat->numRows() != 0) {
|
|
|
246 |
$tableAttr = array('id' => 'table_bazar') ;
|
|
|
247 |
$table = new HTML_Table($tableAttr) ;
|
|
|
248 |
$entete = array (BAZ_TITREANNONCE , BAZ_TYPEANNONCE, BAZ_ETATPUBLICATION, BAZ_MODIFIER, BAZ_SUPPRIMER) ;
|
|
|
249 |
$table->addRow($entete) ;
|
|
|
250 |
$table->setRowType (0, "th") ;
|
|
|
251 |
|
5 |
florian |
252 |
// On affiche une ligne par proposition
|
|
|
253 |
while ($ligne = $resultat->fetchRow (DB_FETCHMODE_ASSOC)) {
|
|
|
254 |
if ($ligne['bf_statut_fiche']==1) $publiee=BAZ_PUBLIEE;
|
|
|
255 |
elseif ($ligne['bf_statut_fiche']==0) $publiee=BAZ_ENCOURSDEVALIDATION;
|
|
|
256 |
else $publiee=BAZ_REJETEE;
|
|
|
257 |
|
263 |
alexandre_ |
258 |
$lien_voir = $GLOBALS['_BAZAR_']['url'];
|
5 |
florian |
259 |
$lien_voir->addQueryString('action', BAZ_VOIR_FICHE);
|
|
|
260 |
$lien_voir->addQueryString('id_fiche', $ligne['bf_id_fiche']);
|
64 |
florian |
261 |
$lien_voir->addQueryString('typeannonce', $ligne['bn_id_nature']);
|
12 |
ddelon |
262 |
$lien_voir_url=$lien_voir->getURL();
|
5 |
florian |
263 |
|
263 |
alexandre_ |
264 |
$lien_modifier = $GLOBALS['_BAZAR_']['url'];
|
5 |
florian |
265 |
$lien_modifier->addQueryString('action', BAZ_ACTION_MODIFIER);
|
|
|
266 |
$lien_modifier->addQueryString('id_fiche', $ligne['bf_id_fiche']);
|
64 |
florian |
267 |
$lien_modifier->addQueryString('typeannonce', $ligne['bn_id_nature']);
|
12 |
ddelon |
268 |
$lien_modifier_url=$lien_modifier->getURL();
|
5 |
florian |
269 |
|
263 |
alexandre_ |
270 |
$lien_supprimer = $GLOBALS['_BAZAR_']['url'];
|
5 |
florian |
271 |
$lien_supprimer->addQueryString('action', BAZ_ACTION_SUPPRESSION);
|
|
|
272 |
$lien_supprimer->addQueryString('id_fiche', $ligne['bf_id_fiche']);
|
64 |
florian |
273 |
$lien_supprimer->addQueryString('typeannonce', $ligne['bn_id_nature']);
|
12 |
ddelon |
274 |
$lien_supprimer_url=$lien_supprimer->getURL();
|
5 |
florian |
275 |
|
|
|
276 |
$table->addRow (array(
|
89 |
alexandre_ |
277 |
'<a href="'.$lien_voir_url.'">'.$ligne['bf_titre'].'</a>'."\n", // col 1 : le nom
|
105 |
florian |
278 |
$ligne['bn_label_nature']."\n", // col 2: type annonce
|
5 |
florian |
279 |
$publiee."\n", // col 3 : publiee ou non
|
12 |
ddelon |
280 |
'<a href="'.$lien_modifier_url.'">'.BAZ_MODIFIER.'</a>'."\n", // col 4 : modifier
|
89 |
alexandre_ |
281 |
'<a href="'.$lien_supprimer_url.'" onclick="javascript:return '.
|
|
|
282 |
'confirm(\''.BAZ_CONFIRMATION_SUPPRESSION.'\');" >'.BAZ_SUPPRIMER.'</a>'."\n")) ; // col 5 : supprimer
|
5 |
florian |
283 |
}
|
|
|
284 |
$table->altRowAttributes(1, array("class" => "ligne_impaire"), array("class" => "ligne_paire"));
|
154 |
florian |
285 |
$table->updateColAttributes(1, array("align" => "left"));
|
5 |
florian |
286 |
$table->updateColAttributes(2, array("align" => "center"));
|
|
|
287 |
$table->updateColAttributes(3, array("align" => "center"));
|
|
|
288 |
$table->updateColAttributes(4, array("align" => "center"));
|
|
|
289 |
$res .= $table->toHTML() ;
|
24 |
florian |
290 |
}
|
|
|
291 |
else {
|
118 |
florian |
292 |
$res .= '<p class="zone_info">'.BAZ_PAS_DE_FICHE.'</p>'."\n" ;
|
24 |
florian |
293 |
}
|
154 |
florian |
294 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_DEPOSER_ANNONCE);
|
205 |
jp_milcent |
295 |
$res .= '<br /><ul id="liste_liens"><li id="lien_saisir"><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'" title="'.BAZ_SAISIR_UNE_NOUVELLE_FICHE.'">'.BAZ_SAISIR_UNE_NOUVELLE_FICHE.'</a></li></ul>';
|
154 |
florian |
296 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
5 |
florian |
297 |
}
|
154 |
florian |
298 |
else {
|
286 |
alexandre_ |
299 |
/* $res .= '<p class="zone_info">'.BAZ_IDENTIFIEZ_VOUS_POUR_SAISIR.'</p>'."\n" ;
|
191 |
alexandre_ |
300 |
$res .= '<form id="form_connexion" class="form_identification" action="' ;
|
154 |
florian |
301 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_ACTION_VOIR_VOS_ANNONCES);
|
|
|
302 |
$res .= $GLOBALS['_BAZAR_']['url']->getURL();
|
|
|
303 |
$res .= '" method="post">
|
|
|
304 |
<fieldset>
|
|
|
305 |
<legend>Identifiez vous</legend>
|
|
|
306 |
<label for="username">Courriel : </label>
|
|
|
307 |
<input type="text" id="username" name="username" maxlength="80" tabindex="1" value="courriel" />
|
|
|
308 |
<label for="password">Mot de passe : </label>
|
|
|
309 |
<input type="password" id="password" name="password" maxlength="80" tabindex="2" value="mot de passe" />
|
|
|
310 |
<input type="submit" id="connexion" name="connexion" tabindex="3" value="ok" />
|
|
|
311 |
</fieldset>
|
|
|
312 |
</form>';
|
|
|
313 |
}
|
205 |
jp_milcent |
314 |
// Nettoyage de l'url
|
|
|
315 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
|
|
316 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('id_fiche');
|
286 |
alexandre_ |
317 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('typeannonce');*/
|
|
|
318 |
include_once BAZ_CHEMIN_APPLI.'bibliotheque/bazarTemplate.class.php';
|
|
|
319 |
$modele = new bazarTemplate($GLOBALS['_BAZAR_']['db']);
|
|
|
320 |
$res .= $modele->getTemplate(BAZ_TEMPLATE_MESSAGE_LOGIN, $GLOBALS['_BAZAR_']['langue']);
|
|
|
321 |
}
|
5 |
florian |
322 |
return $res;
|
|
|
323 |
}
|
|
|
324 |
|
68 |
florian |
325 |
/** baz_gestion_droits() interface de gestion des droits
|
|
|
326 |
*
|
|
|
327 |
* return string le code HTML
|
|
|
328 |
*/
|
|
|
329 |
function baz_gestion_droits() {
|
|
|
330 |
$lien_formulaire=$GLOBALS['_BAZAR_']['url'];
|
|
|
331 |
$lien_formulaire->addQueryString('action', BAZ_GERER_DROITS);
|
5 |
florian |
332 |
|
68 |
florian |
333 |
//contruction du squelette du formulaire
|
|
|
334 |
$formtemplate = new HTML_QuickForm('formulaire', 'post', preg_replace ('/&/', '&', $lien_formulaire->getURL()) );
|
|
|
335 |
$squelette =& $formtemplate->defaultRenderer();
|
|
|
336 |
$squelette->setFormTemplate("\n".'<form {attributes}>'."\n".'<table style="border:0;">'."\n".'{content}'."\n".'</table>'."\n".'</form>'."\n");
|
|
|
337 |
$squelette->setElementTemplate( '<tr>'."\n".'<td style="font-size:12px;width:150px;text-align:right;">'."\n".'{label} :</td>'."\n".'<td style="text-align:left;padding:5px;"> '."\n".'{element}'."\n".
|
|
|
338 |
'<!-- BEGIN required --><span class="symbole_obligatoire">*</span><!-- END required -->'."\n".
|
|
|
339 |
'<!-- BEGIN error --><span class="erreur">{error}</span><!-- END error -->'."\n".
|
|
|
340 |
'</td>'."\n".'</tr>'."\n");
|
|
|
341 |
$squelette->setElementTemplate( '<tr>'."\n".'<td colspan="2" class="liste_a_cocher"><strong>{label} {element}</strong>'."\n".
|
|
|
342 |
'<!-- BEGIN required --><span class="symbole_obligatoire"> *</span><!-- END required -->'."\n".'</td>'."\n".'</tr>'."\n", 'accept_condition');
|
|
|
343 |
$squelette->setElementTemplate( '<tr><td colspan="2" class="bouton">{label}{element}</td></tr>'."\n", 'valider');
|
|
|
344 |
$squelette->setRequiredNoteTemplate("\n".'<tr>'."\n".'<td colspan="2" class="symbole_obligatoire">* {requiredNote}</td></tr>'."\n");
|
|
|
345 |
//Traduction de champs requis
|
|
|
346 |
$formtemplate->setRequiredNote(BAZ_CHAMPS_REQUIS) ;
|
|
|
347 |
$formtemplate->setJsWarnings(BAZ_ERREUR_SAISIE,BAZ_VEUILLEZ_CORRIGER);
|
|
|
348 |
//Initialisation de la variable personne
|
|
|
349 |
if ( isset($_POST['personnes']) ) {
|
|
|
350 |
$personne=$_POST['personnes'];
|
|
|
351 |
}
|
|
|
352 |
else $personne=0;
|
|
|
353 |
|
|
|
354 |
//Cas ou les droits ont etes changes
|
|
|
355 |
if (isset($_GET['pers'])) {
|
|
|
356 |
$personne=$_GET['pers'];
|
|
|
357 |
//CAS DES DROITS POUR UN TYPE D'ANNONCE: On efface tous les droits de la personne pour ce type d'annonce
|
|
|
358 |
if (isset($_GET['idtypeannonce'])) {
|
|
|
359 |
$requete = 'DELETE FROM bazar_droits WHERE bd_id_utilisateur='.$_GET['pers'].
|
|
|
360 |
' AND bd_id_nature_offre='.$_GET['idtypeannonce'];
|
|
|
361 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
362 |
if (DB::isError($resultat)) {
|
|
|
363 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
364 |
}
|
|
|
365 |
}
|
|
|
366 |
//CAS DU SUPER ADMIN: On efface tous les droits de la personne en general
|
|
|
367 |
else {
|
|
|
368 |
$requete = 'DELETE FROM bazar_droits WHERE bd_id_utilisateur='.$_GET['pers'];
|
|
|
369 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
370 |
if (DB::isError($resultat)) {
|
|
|
371 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
372 |
}
|
|
|
373 |
}
|
|
|
374 |
if ($_GET['droits']=='superadmin') {
|
|
|
375 |
$requete = 'INSERT INTO bazar_droits VALUES ('.$_GET['pers'].',0,0)';
|
|
|
376 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
377 |
if (DB::isError($resultat)) {
|
|
|
378 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
379 |
}
|
|
|
380 |
}
|
|
|
381 |
elseif ($_GET['droits']=='redacteur') {
|
|
|
382 |
$requete = 'INSERT INTO bazar_droits VALUES ('.$_GET['pers'].','.$_GET['idtypeannonce'].',1)';
|
|
|
383 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
384 |
if (DB::isError($resultat)) {
|
|
|
385 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
386 |
}
|
|
|
387 |
}
|
|
|
388 |
elseif ($_GET['droits']=='admin') {
|
|
|
389 |
$requete = 'INSERT INTO bazar_droits VALUES ('.$_GET['pers'].','.$_GET['idtypeannonce'].',2)';
|
|
|
390 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
391 |
if (DB::isError($resultat)) {
|
|
|
392 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
393 |
}
|
|
|
394 |
}
|
|
|
395 |
}
|
|
|
396 |
|
|
|
397 |
//requete pour obtenir l'id, le nom et prenom des personnes inscrites a l'annuaire sauf soi meme
|
|
|
398 |
$requete = 'SELECT '.BAZ_CHAMPS_ID.', '.BAZ_CHAMPS_NOM.', '.BAZ_CHAMPS_PRENOM.' FROM '.BAZ_ANNUAIRE.
|
205 |
jp_milcent |
399 |
' WHERE '.BAZ_CHAMPS_ID." != ".$GLOBALS['id_user'].' ORDER BY '.BAZ_CHAMPS_NOM.' ASC';
|
68 |
florian |
400 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
401 |
if (DB::isError($resultat)) {
|
69 |
alexandre_ |
402 |
echo ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
68 |
florian |
403 |
}
|
|
|
404 |
$res='<h2>'.BAZ_GESTION_DES_DROITS.'</h2><br />'."\n";
|
|
|
405 |
$res.=BAZ_DESCRIPTION_GESTION_DES_DROITS.'<br /><br />'."\n";
|
|
|
406 |
$personnes_select[0]=BAZ_SELECTION;
|
|
|
407 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
408 |
$personnes_select[$ligne[BAZ_CHAMPS_ID]] = $ligne[BAZ_CHAMPS_NOM]." ".$ligne[BAZ_CHAMPS_PRENOM] ;
|
|
|
409 |
}
|
|
|
410 |
$java=array ('style'=>'width:250px;','onchange'=>'this.form.submit();');
|
|
|
411 |
$formtemplate->addElement ('select', 'personnes', BAZ_LABEL_CHOIX_PERSONNE, $personnes_select, $java) ;
|
|
|
412 |
$defauts=array ('personnes'=>$personne);
|
|
|
413 |
$formtemplate->setDefaults($defauts);
|
|
|
414 |
$res.= $formtemplate->toHTML().'<br />'."\n" ;
|
109 |
alexandre_ |
415 |
|
68 |
florian |
416 |
if ($personne!=0) {
|
|
|
417 |
//cas du super utilisateur
|
111 |
alexandre_ |
418 |
$utilisateur = new Utilisateur_bazar($personne) ;
|
|
|
419 |
if ($utilisateur->isSuperAdmin()) {
|
68 |
florian |
420 |
$res.= '<br />'.BAZ_EST_SUPERADMINISTRATEUR.'<br /><br />'."\n";
|
|
|
421 |
$lien_enlever_superadmin=$GLOBALS['_BAZAR_']['url'];
|
|
|
422 |
$lien_enlever_superadmin->addQueryString('action', BAZ_GERER_DROITS);
|
|
|
423 |
$lien_enlever_superadmin->addQueryString('pers', $personne);
|
|
|
424 |
$lien_enlever_superadmin->addQueryString('droits', 'aucun');
|
|
|
425 |
$res.= '<a href='.$lien_enlever_superadmin->getURL().'>'.BAZ_CHANGER_SUPERADMINISTRATEUR.'</a><br />'."\n";
|
|
|
426 |
}
|
|
|
427 |
else {
|
|
|
428 |
$lien_passer_superadmin=$GLOBALS['_BAZAR_']['url'];
|
|
|
429 |
$lien_passer_superadmin->addQueryString('action', BAZ_GERER_DROITS);
|
|
|
430 |
$lien_passer_superadmin->addQueryString('pers', $personne);
|
|
|
431 |
$lien_passer_superadmin->addQueryString('droits', 'superadmin');
|
|
|
432 |
$res.= '<a href='.$lien_passer_superadmin->getURL().'>'.BAZ_PASSER_SUPERADMINISTRATEUR.'</a><br />'."\n";
|
|
|
433 |
|
|
|
434 |
//on cherche les differentes rubriques d'annonces
|
126 |
florian |
435 |
$requete = 'SELECT bn_id_nature, bn_label_nature, bn_image_titre FROM bazar_nature';
|
68 |
florian |
436 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
437 |
if (DB::isError($resultat)) {
|
|
|
438 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
439 |
}
|
|
|
440 |
$res.='<br /><b>'.BAZ_DROITS_PAR_TYPE.'</b><br /><br />';
|
|
|
441 |
|
|
|
442 |
$table = new HTML_Table(array ('width' => '100%', 'class' => 'table_bazar')) ;
|
|
|
443 |
$table->addRow(array ('<strong>'.BAZ_TYPE_ANNONCES.'</strong>',
|
|
|
444 |
'<strong>'.BAZ_DROITS_ACTUELS.'</strong>',
|
|
|
445 |
'<strong>'.BAZ_PASSER_EN.'</strong>',
|
|
|
446 |
'<strong>'.BAZ_OU_PASSER_EN.'</strong>')) ;
|
|
|
447 |
$table->setRowType (0, 'th') ;
|
|
|
448 |
|
|
|
449 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
450 |
$lien_aucun_droit=$GLOBALS['_BAZAR_']['url'];
|
|
|
451 |
$lien_aucun_droit->addQueryString('action', BAZ_GERER_DROITS);
|
|
|
452 |
$lien_aucun_droit->addQueryString('pers', $personne);
|
|
|
453 |
$lien_aucun_droit->addQueryString('droits', 'aucun');
|
|
|
454 |
$lien_aucun_droit->addQueryString('idtypeannonce', $ligne["bn_id_nature"]);
|
|
|
455 |
|
|
|
456 |
$lien_passer_redacteur=$GLOBALS['_BAZAR_']['url'];
|
|
|
457 |
$lien_passer_redacteur->addQueryString('action', BAZ_GERER_DROITS);
|
|
|
458 |
$lien_passer_redacteur->addQueryString('pers', $personne);
|
|
|
459 |
$lien_passer_redacteur->addQueryString('droits', 'redacteur');
|
|
|
460 |
$lien_passer_redacteur->addQueryString('idtypeannonce', $ligne["bn_id_nature"]);
|
|
|
461 |
|
|
|
462 |
$lien_passer_admin=$GLOBALS['_BAZAR_']['url'];
|
|
|
463 |
$lien_passer_admin->addQueryString('action', BAZ_GERER_DROITS);
|
|
|
464 |
$lien_passer_admin->addQueryString('pers', $personne);
|
|
|
465 |
$lien_passer_admin->addQueryString('droits', 'admin');
|
|
|
466 |
$lien_passer_admin->addQueryString('idtypeannonce', $ligne["bn_id_nature"]);
|
111 |
alexandre_ |
467 |
if (isset($ligne['bn_image_titre'])) {
|
|
|
468 |
$titre=' <img src="client/bazar/images/'.$ligne['bn_image_titre'].'" alt="'.$ligne['bn_label_nature'].'" />'."\n";
|
|
|
469 |
} else {
|
|
|
470 |
$titre='<strong> '.$ligne['bn_label_nature'].'</strong>'."\n";
|
|
|
471 |
}
|
|
|
472 |
if ($utilisateur->isAdmin($ligne['bn_id_nature'])) {
|
68 |
florian |
473 |
$table->addRow(array($titre,
|
111 |
alexandre_ |
474 |
BAZ_DROIT_ADMIN,
|
|
|
475 |
'<a href='.$lien_aucun_droit->getURL().'>'.BAZ_AUCUN_DROIT.'</a>',
|
271 |
alexandre_ |
476 |
'<a href='.$lien_passer_redacteur->getURL().'>'.BAZ_LABEL_REDACTEUR.'</a>'));
|
68 |
florian |
477 |
}
|
111 |
alexandre_ |
478 |
elseif ($utilisateur->isRedacteur($ligne['bn_id_nature'])) {
|
68 |
florian |
479 |
$table->addRow(array($titre,
|
271 |
alexandre_ |
480 |
BAZ_LABEL_REDACTEUR,
|
68 |
florian |
481 |
'<a href='.$lien_aucun_droit->getURL().'>'.BAZ_AUCUN_DROIT.'</a>',
|
|
|
482 |
'<a href='.$lien_passer_admin->getURL().'>'.BAZ_DROIT_ADMIN.'</a>'));
|
|
|
483 |
}
|
|
|
484 |
else {
|
|
|
485 |
$table->addRow(array($titre,
|
111 |
alexandre_ |
486 |
BAZ_AUCUN_DROIT,
|
271 |
alexandre_ |
487 |
'<a href='.$lien_passer_redacteur->getURL().'>'.BAZ_LABEL_REDACTEUR.'</a>',
|
111 |
alexandre_ |
488 |
'<a href='.$lien_passer_admin->getURL().'>'.BAZ_DROIT_ADMIN.'</a>'));
|
|
|
489 |
|
68 |
florian |
490 |
}
|
|
|
491 |
}
|
225 |
neiluj |
492 |
|
68 |
florian |
493 |
$table->altRowAttributes(1, array('class' => 'ligne_impaire'), array('class' => 'ligne_paire'));
|
|
|
494 |
$table->updateColAttributes(0, array('align' => 'left'));
|
|
|
495 |
$table->updateColAttributes(1, array('align' => 'left'));
|
|
|
496 |
$table->updateColAttributes(2, array('align' => 'left'));
|
|
|
497 |
$table->updateColAttributes(3, array('align' => 'left'));
|
|
|
498 |
$res.=$table->toHTML() ;
|
|
|
499 |
}
|
|
|
500 |
}
|
205 |
jp_milcent |
501 |
|
|
|
502 |
// Nettoyage de l'url
|
|
|
503 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
|
|
504 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('pers');
|
|
|
505 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('droits');
|
|
|
506 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('idtypeannonce');
|
|
|
507 |
|
68 |
florian |
508 |
return $res;
|
|
|
509 |
}
|
|
|
510 |
|
5 |
florian |
511 |
/** baz_formulaire() - Renvoie le menu pour les saisies et modification des annonces
|
|
|
512 |
*
|
67 |
alexandre_ |
513 |
* @param string choix du formulaire a afficher (soit formulaire personnalise de
|
|
|
514 |
* l'annonce, soit choix du type d'annonce)
|
5 |
florian |
515 |
*
|
|
|
516 |
* @return string HTML
|
|
|
517 |
*/
|
68 |
florian |
518 |
function baz_formulaire($mode) {
|
118 |
florian |
519 |
$res = '';
|
24 |
florian |
520 |
if ($GLOBALS['AUTH']->getAuth()) {
|
56 |
florian |
521 |
$lien_formulaire=$GLOBALS['_BAZAR_']['url'];
|
|
|
522 |
|
|
|
523 |
//Definir le lien du formulaire en fonction du mode de formulaire choisi
|
89 |
alexandre_ |
524 |
if ($mode == BAZ_DEPOSER_ANNONCE) {
|
|
|
525 |
$lien_formulaire->addQueryString('action', BAZ_ACTION_NOUVEAU);
|
109 |
alexandre_ |
526 |
if (isset($GLOBALS['_BAZAR_']['id_typeannonce']) && $GLOBALS['_BAZAR_']['id_typeannonce'] != 'toutes') {
|
|
|
527 |
$mode = BAZ_ACTION_NOUVEAU ;
|
|
|
528 |
}
|
89 |
alexandre_ |
529 |
}
|
56 |
florian |
530 |
if ($mode == BAZ_ACTION_NOUVEAU) {
|
68 |
florian |
531 |
if ((!isset($_POST['accept_condition']))and($GLOBALS['_BAZAR_']['condition']!=NULL)) {
|
56 |
florian |
532 |
$lien_formulaire->addQueryString('action', BAZ_ACTION_NOUVEAU);
|
|
|
533 |
} else {
|
|
|
534 |
$lien_formulaire->addQueryString('action', BAZ_ACTION_NOUVEAU_V);
|
|
|
535 |
}
|
5 |
florian |
536 |
}
|
56 |
florian |
537 |
if ($mode == BAZ_ACTION_MODIFIER) {
|
68 |
florian |
538 |
if (!isset($_POST['accept_condition'])and($GLOBALS['_BAZAR_']['condition']!=NULL)) {
|
56 |
florian |
539 |
$lien_formulaire->addQueryString('action', BAZ_ACTION_MODIFIER);
|
|
|
540 |
} else {
|
|
|
541 |
$lien_formulaire->addQueryString('action', BAZ_ACTION_MODIFIER_V);
|
|
|
542 |
}
|
|
|
543 |
$lien_formulaire->addQueryString('id_fiche', $GLOBALS['_BAZAR_']['id_fiche']);
|
5 |
florian |
544 |
}
|
56 |
florian |
545 |
if ($mode == BAZ_ACTION_MODIFIER_V) {
|
|
|
546 |
$lien_formulaire->addQueryString('action', BAZ_ACTION_MODIFIER_V);
|
|
|
547 |
$lien_formulaire->addQueryString('id_fiche', $GLOBALS['_BAZAR_']['id_fiche']);
|
54 |
florian |
548 |
}
|
5 |
florian |
549 |
|
56 |
florian |
550 |
//contruction du squelette du formulaire
|
|
|
551 |
$formtemplate = new HTML_QuickForm('formulaire', 'post', preg_replace ('/&/', '&', $lien_formulaire->getURL()) );
|
|
|
552 |
$squelette =& $formtemplate->defaultRenderer();
|
118 |
florian |
553 |
$squelette->setFormTemplate("\n".'<form {attributes}>'."\n".'<table style="border:0;width:100%;">'."\n".'{content}'."\n".'</table>'."\n".'</form>'."\n");
|
126 |
florian |
554 |
$squelette->setElementTemplate( '<tr>'."\n".'<td style="font-size:12px;width:120px;text-align:right;">'."\n".'{label}'.
|
118 |
florian |
555 |
'<!-- BEGIN required --><span class="symbole_obligatoire"> *</span><!-- END required -->'."\n".
|
271 |
alexandre_ |
556 |
' </td>'."\n".'<td style="text-align:left;padding:5px;"> '."\n".'{element}'."\n".
|
54 |
florian |
557 |
'<!-- BEGIN error --><span class="erreur">{error}</span><!-- END error -->'."\n".
|
68 |
florian |
558 |
'</td>'."\n".'</tr>'."\n");
|
89 |
alexandre_ |
559 |
$squelette->setElementTemplate( '<tr>'."\n".'<td colspan="2" class="liste_a_cocher"><strong>{label} {element}</strong>'."\n".
|
68 |
florian |
560 |
'<!-- BEGIN required --><span class="symbole_obligatoire"> *</span><!-- END required -->'."\n".'</td>'."\n".'</tr>'."\n", 'accept_condition');
|
89 |
alexandre_ |
561 |
$squelette->setElementTemplate( '<tr><td colspan="2" class="bouton">{label}{element}</td></tr>'."\n", 'valider');
|
118 |
florian |
562 |
|
89 |
alexandre_ |
563 |
$squelette->setRequiredNoteTemplate("\n".'<tr>'."\n".'<td colspan="2" class="symbole_obligatoire">* {requiredNote}</td></tr>'."\n");
|
56 |
florian |
564 |
//Traduction de champs requis
|
|
|
565 |
$formtemplate->setRequiredNote(BAZ_CHAMPS_REQUIS) ;
|
|
|
566 |
$formtemplate->setJsWarnings(BAZ_ERREUR_SAISIE,BAZ_VEUILLEZ_CORRIGER);
|
46 |
florian |
567 |
|
56 |
florian |
568 |
//------------------------------------------------------------------------------------------------
|
|
|
569 |
//AFFICHAGE DU FORMULAIRE GENERAL DE CHOIX DU TYPE D'ANNONCE
|
|
|
570 |
//------------------------------------------------------------------------------------------------
|
|
|
571 |
if ($mode == BAZ_DEPOSER_ANNONCE) {
|
118 |
florian |
572 |
$res = '';
|
56 |
florian |
573 |
//requete pour obtenir le nom et la description des types d'annonce
|
185 |
jp_milcent |
574 |
$requete = 'SELECT * FROM bazar_nature WHERE bn_ce_id_menu IN ('.$GLOBALS['_BAZAR_']['categorie_nature'].') ORDER BY bn_label_nature ASC';
|
56 |
florian |
575 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
576 |
if (DB::isError($resultat)) {
|
271 |
alexandre_ |
577 |
return ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
56 |
florian |
578 |
}
|
286 |
alexandre_ |
579 |
//$res.='<h2>'.BAZ_DEPOSE_UNE_NOUVELLE_ANNONCE.'</h2>'."\n";
|
|
|
580 |
include_once BAZ_CHEMIN_APPLI.'bibliotheque/bazarTemplate.class.php';
|
|
|
581 |
$modele = new bazarTemplate($GLOBALS['_BAZAR_']['db']);
|
316 |
alexandre_ |
582 |
$res .= $modele->getTemplate(BAZ_TEMPLATE_FORMULAIRE_ACCUEIL, $GLOBALS['_BAZAR_']['langue'], $GLOBALS['_BAZAR_']['categorie_nature']);
|
118 |
florian |
583 |
if ($resultat->numRows()==1) {
|
|
|
584 |
$ligne = $resultat->fetchRow (DB_FETCHMODE_ASSOC);
|
|
|
585 |
$GLOBALS['_BAZAR_']['id_typeannonce']=$ligne['bn_id_nature'];
|
|
|
586 |
$GLOBALS['_BAZAR_']['typeannonce']=$ligne['bn_label_nature'];
|
|
|
587 |
$GLOBALS['_BAZAR_']['condition']=$ligne['bn_condition'];
|
|
|
588 |
$GLOBALS['_BAZAR_']['template']=$ligne['bn_template'];
|
|
|
589 |
$GLOBALS['_BAZAR_']['commentaire']=$ligne['bn_commentaire'];
|
|
|
590 |
$GLOBALS['_BAZAR_']['appropriation']=$ligne['bn_appropriation'];
|
|
|
591 |
$GLOBALS['_BAZAR_']['image_titre']=$ligne['bn_image_titre'];
|
|
|
592 |
$GLOBALS['_BAZAR_']['image_logo']=$ligne['bn_image_logo'];
|
140 |
alexandre_ |
593 |
$mode = BAZ_ACTION_NOUVEAU;
|
|
|
594 |
$lien_formulaire->addQueryString('action', BAZ_ACTION_NOUVEAU_V);
|
|
|
595 |
|
118 |
florian |
596 |
} else {
|
316 |
alexandre_ |
597 |
//$res.='<br />'.BAZ_CHOIX_TYPEANNONCE.'<br /><br />'."\n";
|
118 |
florian |
598 |
while ($ligne = $resultat->fetchRow (DB_FETCHMODE_ASSOC)) {
|
316 |
alexandre_ |
599 |
$utilisateur = new Administrateur_bazar($GLOBALS['AUTH']);
|
|
|
600 |
if (($utilisateur->isRedacteur($ligne['bn_id_nature'])) || ($utilisateur->isAdmin($ligne['bn_id_nature']))
|
|
|
601 |
|| ($utilisateur->isSuperAdmin() || !BAZ_RESTREINDRE_DEPOT)) {
|
118 |
florian |
602 |
if ($ligne['bn_image_titre']!='') {
|
|
|
603 |
$titre=' <img src="client/bazar/images/'.$ligne['bn_image_titre'].'" alt="'.
|
131 |
alexandre_ |
604 |
$ligne['bn_label_nature'].'" />'.'<br />'."\n";
|
118 |
florian |
605 |
} else {
|
|
|
606 |
$titre='<h3>'.$ligne['bn_label_nature'].' : </h3>'."\n";
|
|
|
607 |
}
|
|
|
608 |
$formtemplate->addElement('radio', 'typeannonce', '',
|
|
|
609 |
$titre.$ligne['bn_description'].'<br /><br />'."\n",
|
|
|
610 |
$ligne['bn_id_nature'], array("id" => 'select'.$ligne['bn_id_nature'],
|
|
|
611 |
"style" => 'float:left;'));
|
|
|
612 |
}
|
|
|
613 |
}
|
|
|
614 |
$squelette->setElementTemplate( '<div class="listechoix">'."\n".'{element}'."\n".'</div>'."\n");
|
|
|
615 |
|
|
|
616 |
//Mettre les annonces en choix par defaut
|
|
|
617 |
$formtemplate->setdefaults(array('typeannonce'=>'1'));
|
271 |
alexandre_ |
618 |
|
|
|
619 |
// Bouton d annulation
|
|
|
620 |
$lien_formulaire->removeQueryString('action');
|
|
|
621 |
$buttons[] = &HTML_QuickForm::createElement('link', 'annuler', BAZ_ANNULER,
|
|
|
622 |
preg_replace ("/&/", "&", $lien_formulaire->getURL()), BAZ_ANNULER); // Le preg_replace contourne un pb de QuickForm et Net_URL
|
|
|
623 |
// qui remplacent deux fois les & par des &
|
|
|
624 |
//Bouton de validation du formulaire // ce qui fait échouer le lien
|
|
|
625 |
$buttons[] = &HTML_QuickForm::createElement('submit', 'valider', BAZ_VALIDER);
|
|
|
626 |
$formtemplate->addGroup($buttons, null, null, ' ');
|
118 |
florian |
627 |
|
|
|
628 |
//Affichage a l'ecran
|
205 |
jp_milcent |
629 |
$res.= $formtemplate->toHTML()."\n";
|
5 |
florian |
630 |
}
|
|
|
631 |
}
|
|
|
632 |
|
56 |
florian |
633 |
//------------------------------------------------------------------------------------------------
|
|
|
634 |
//AFFICHAGE DU FORMULAIRE CORRESPONDANT AU TYPE DE L'ANNONCE CHOISI PAR L'UTILISATEUR
|
|
|
635 |
//------------------------------------------------------------------------------------------------
|
|
|
636 |
if ($mode == BAZ_ACTION_NOUVEAU) {
|
89 |
alexandre_ |
637 |
unset ($_SESSION['formulaire_annonce_valide']) ;
|
140 |
alexandre_ |
638 |
$lien_formulaire->addQueryString('action', BAZ_ACTION_NOUVEAU_V);
|
225 |
neiluj |
639 |
$formtemplate->updateAttributes(array('action' => str_replace('&', '&', $lien_formulaire->getURL())));
|
286 |
alexandre_ |
640 |
// Appel du modele
|
|
|
641 |
include_once BAZ_CHEMIN_APPLI.'bibliotheque/bazarTemplate.class.php';
|
|
|
642 |
$modele = new bazarTemplate($GLOBALS['_BAZAR_']['db']);
|
|
|
643 |
$html = $modele->getTemplate(BAZ_TEMPLATE_FORMULAIRE, $GLOBALS['_BAZAR_']['langue'],$GLOBALS['_BAZAR_']['categorie_nature']);
|
|
|
644 |
if (!PEAR::isError($html)) {
|
|
|
645 |
$res = str_replace ('{FORMULAIRE}', baz_afficher_formulaire_annonce('insertion',$formtemplate), $html);
|
|
|
646 |
} else {
|
|
|
647 |
$res = baz_afficher_formulaire_annonce('insertion',$formtemplate);
|
|
|
648 |
}
|
5 |
florian |
649 |
}
|
|
|
650 |
|
56 |
florian |
651 |
//------------------------------------------------------------------------------------------------
|
|
|
652 |
//CAS DE LA MODIFICATION D'UNE ANNONCE (FORMULAIRE DE MODIFICATION)
|
|
|
653 |
//------------------------------------------------------------------------------------------------
|
|
|
654 |
if ($mode == BAZ_ACTION_MODIFIER) {
|
|
|
655 |
$res=baz_afficher_formulaire_annonce('modification',$formtemplate);
|
5 |
florian |
656 |
}
|
|
|
657 |
|
205 |
jp_milcent |
658 |
// Nettoyage de l'url avant les return
|
|
|
659 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
|
|
660 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('id_fiche');
|
|
|
661 |
|
56 |
florian |
662 |
//------------------------------------------------------------------------------------------------
|
|
|
663 |
//CAS DE L'INSCRIPTION D'UNE ANNONCE
|
|
|
664 |
//------------------------------------------------------------------------------------------------
|
68 |
florian |
665 |
if ($mode == BAZ_ACTION_NOUVEAU_V) {
|
56 |
florian |
666 |
if ($formtemplate->validate() && !isset($_SESSION['formulaire_annonce_valide'])) {
|
|
|
667 |
$formtemplate->process('baz_insertion', false) ;
|
|
|
668 |
$_SESSION['formulaire_annonce_valide'] = 1;
|
|
|
669 |
return;
|
|
|
670 |
}
|
|
|
671 |
}
|
5 |
florian |
672 |
|
56 |
florian |
673 |
//------------------------------------------------------------------------------------------------
|
|
|
674 |
//CAS DE LA MODIFICATION D'UNE ANNONCE (VALIDATION ET MAJ)
|
|
|
675 |
//------------------------------------------------------------------------------------------------
|
|
|
676 |
if ($mode == BAZ_ACTION_MODIFIER_V) {
|
|
|
677 |
if ($formtemplate->validate()) {
|
|
|
678 |
$formtemplate->process('baz_mise_a_jour', false) ;
|
|
|
679 |
return ;
|
5 |
florian |
680 |
}
|
56 |
florian |
681 |
}
|
24 |
florian |
682 |
}
|
118 |
florian |
683 |
else {
|
271 |
alexandre_ |
684 |
/*
|
118 |
florian |
685 |
$res .= '<h2>'.BAZ_DEPOSE_UNE_NOUVELLE_ANNONCE.'</h2><br />'."\n";
|
|
|
686 |
$res .= '<p class="zone_info">'.BAZ_IDENTIFIEZ_VOUS_POUR_SAISIR.'</p>'."\n" ;
|
191 |
alexandre_ |
687 |
$res .= '<form id="form_connexion" class="form_identification" action="' ;
|
153 |
alexandre_ |
688 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_DEPOSER_ANNONCE);
|
140 |
alexandre_ |
689 |
$res .= $GLOBALS['_BAZAR_']['url']->getURL();
|
|
|
690 |
$res .= '" method="post">
|
|
|
691 |
<fieldset>
|
|
|
692 |
<legend>Identifiez vous</legend>
|
|
|
693 |
<label for="username">Courriel : </label>
|
|
|
694 |
<input type="text" id="username" name="username" maxlength="80" tabindex="1" value="courriel" />
|
|
|
695 |
<label for="password">Mot de passe : </label>
|
|
|
696 |
<input type="password" id="password" name="password" maxlength="80" tabindex="2" value="mot de passe" />
|
|
|
697 |
<input type="submit" id="connexion" name="connexion" tabindex="3" value="ok" />
|
|
|
698 |
</fieldset>
|
271 |
alexandre_ |
699 |
</form>';*/
|
|
|
700 |
include_once BAZ_CHEMIN_APPLI.'bibliotheque/bazarTemplate.class.php';
|
|
|
701 |
$modele = new bazarTemplate($GLOBALS['_BAZAR_']['db']);
|
|
|
702 |
$res .= $modele->getTemplate(BAZ_TEMPLATE_MESSAGE_LOGIN, $GLOBALS['_BAZAR_']['langue']);
|
118 |
florian |
703 |
}
|
225 |
neiluj |
704 |
|
5 |
florian |
705 |
return $res;
|
|
|
706 |
}
|
|
|
707 |
|
54 |
florian |
708 |
/** baz_afficher_formulaire_annonce() - Genere le formulaire de saisie d'une annonce
|
|
|
709 |
*
|
|
|
710 |
* @param string type de formulaire: insertion ou modification
|
|
|
711 |
* @param mixed objet quickform du formulaire
|
|
|
712 |
*
|
|
|
713 |
* @return string code HTML avec formulaire
|
|
|
714 |
*/
|
|
|
715 |
function baz_afficher_formulaire_annonce($mode='insertion',$formtemplate) {
|
118 |
florian |
716 |
if ($mode=='modification') {
|
|
|
717 |
//initialisation de la variable globale id_fiche
|
|
|
718 |
$GLOBALS['_BAZAR_']['id_fiche'] = $_REQUEST['id_fiche'];
|
|
|
719 |
|
|
|
720 |
//suppression eventuelle d'une url, d'un fichier ou d'une image
|
|
|
721 |
if (isset($_GET['id_url'])) {
|
|
|
722 |
baz_suppression_url($_GET['id_url']);
|
|
|
723 |
}
|
|
|
724 |
if (isset($_GET['id_fichier'])) {
|
|
|
725 |
baz_suppression_fichier($_GET['id_fichier']);
|
|
|
726 |
}
|
|
|
727 |
if (isset($_GET['image'])) {
|
|
|
728 |
baz_suppression_image($GLOBALS['_BAZAR_']['id_fiche']);
|
|
|
729 |
}
|
54 |
florian |
730 |
}
|
299 |
alexandre_ |
731 |
$res = '';
|
54 |
florian |
732 |
//titre de la rubrique
|
286 |
alexandre_ |
733 |
if (!BAZ_UTILISE_TEMPLATE) $res= '<h2>'.BAZ_TITRE_SAISIE_ANNONCE.' '.$GLOBALS['_BAZAR_']['typeannonce'].'</h2><br />'."\n";
|
68 |
florian |
734 |
if (($GLOBALS['_BAZAR_']['condition']!='')AND(!isset($_POST['accept_condition']))AND(!isset($_GET['url'])OR(!isset($_GET['fichier']))OR(!isset($_GET['image'])))) {
|
118 |
florian |
735 |
require_once PAP_CHEMIN_API_PEAR.'HTML/QuickForm/html.php';
|
68 |
florian |
736 |
$conditions= new HTML_QuickForm_html('<tr><td colspan="2" style="padding:5px; margin:5px; width: 90%; background: #C1CBA7;">'.$GLOBALS['_BAZAR_']['condition'].'</td>'."\n".'</tr>'."\n");
|
54 |
florian |
737 |
$formtemplate->addElement($conditions);
|
|
|
738 |
$formtemplate->addElement('checkbox', 'accept_condition',BAZ_ACCEPTE_CONDITIONS) ;
|
68 |
florian |
739 |
$formtemplate->addElement('hidden', 'typeannonce', $GLOBALS['_BAZAR_']['id_typeannonce']);
|
54 |
florian |
740 |
$formtemplate->addRule('accept_condition', BAZ_ACCEPTE_CONDITIONS_REQUIS, 'required', '', 'client') ;
|
|
|
741 |
$formtemplate->addElement('submit', 'valider', BAZ_VALIDER);
|
|
|
742 |
}
|
118 |
florian |
743 |
//affichage du formulaire si conditions acceptees
|
54 |
florian |
744 |
else {
|
118 |
florian |
745 |
//Parcours du fichier de templates, pour mettre les valeurs des champs
|
|
|
746 |
$tableau=baz_valeurs_template($GLOBALS['_BAZAR_']['template']);
|
|
|
747 |
if ($mode=='modification') {
|
|
|
748 |
//Ajout des valeurs par defaut
|
|
|
749 |
$valeurs_par_defaut = baz_valeurs_fiche($GLOBALS['_BAZAR_']['id_fiche']) ;
|
271 |
alexandre_ |
750 |
|
118 |
florian |
751 |
for ($i=0; $i<count($tableau); $i++) {
|
|
|
752 |
if ( $tableau[$i]['type']=='liste' || $tableau[$i]['type']=='checkbox' ) {
|
|
|
753 |
$def=$tableau[$i]['type'].$tableau[$i]['nom_bdd'];
|
|
|
754 |
}
|
271 |
alexandre_ |
755 |
elseif ( $tableau[$i]['type']=='texte' || $tableau[$i]['type']=='textelong' || $tableau[$i]['type']=='listedatedeb' || $tableau[$i]['type']=='listedatefin' || $tableau[$i]['type']=='champs_cache') {
|
118 |
florian |
756 |
$def=$tableau[$i]['nom_bdd'];
|
250 |
alexandre_ |
757 |
} elseif ($tableau[$i]['type']=='carte_google') {
|
|
|
758 |
$def = 'carte_google';
|
|
|
759 |
$valeurs_par_defaut[$def] = array ('latitude' => $valeurs_par_defaut['bf_latitude'], 'longitude' => $valeurs_par_defaut['bf_longitude']);
|
118 |
florian |
760 |
}
|
|
|
761 |
$tableau[$i]['type']($formtemplate, $tableau[$i]['nom_bdd'], $tableau[$i]['label'], $tableau[$i]['limite1'],
|
271 |
alexandre_ |
762 |
$tableau[$i]['limite2'], $valeurs_par_defaut[$def], $tableau[$i]['table_source'], $tableau[$i]['obligatoire']) ;
|
|
|
763 |
if ($tableau[$i]['type']=='carte_google') {
|
|
|
764 |
include_once GEN_CHEMIN_API.'formulaire/formulaire.fonct.google.php';
|
|
|
765 |
GEN_stockerCodeScript($script);
|
|
|
766 |
}
|
79 |
florian |
767 |
}
|
54 |
florian |
768 |
}
|
|
|
769 |
else {
|
118 |
florian |
770 |
for ($i=0; $i<count($tableau); $i++) {
|
|
|
771 |
$tableau[$i]['type']($formtemplate, $tableau[$i]['nom_bdd'], $tableau[$i]['label'], $tableau[$i]['limite1'],
|
|
|
772 |
$tableau[$i]['limite2'], $tableau[$i]['defaut'], $tableau[$i]['table_source'], $tableau[$i]['obligatoire']) ;
|
271 |
alexandre_ |
773 |
if ($tableau[$i]['type'] == 'carte_google') {
|
|
|
774 |
include_once GEN_CHEMIN_API.'formulaire/formulaire.fonct.google.php';
|
|
|
775 |
GEN_stockerCodeScript($script);
|
|
|
776 |
}
|
118 |
florian |
777 |
}
|
54 |
florian |
778 |
}
|
118 |
florian |
779 |
$formtemplate->addElement('hidden', 'typeannonce', $GLOBALS['_BAZAR_']['id_typeannonce']);
|
271 |
alexandre_ |
780 |
|
|
|
781 |
// Bouton d annulation
|
|
|
782 |
$attr = $formtemplate->getAttributes();
|
|
|
783 |
$lien_formulaire = new Net_URL($attr['action']);
|
|
|
784 |
$lien_formulaire->addQueryString('action', BAZ_ACTION_VOIR_VOS_ANNONCES);
|
|
|
785 |
$buttons[] = &HTML_QuickForm::createElement('link', 'annuler', BAZ_ANNULER,
|
|
|
786 |
preg_replace ("/&/", "&", $lien_formulaire->getURL()), BAZ_ANNULER); // Le preg_replace contourne un pb de QuickForm et Net_URL
|
|
|
787 |
// qui remplacent deux fois les & par des &
|
|
|
788 |
//Bouton de validation du formulaire // ce qui fait échouer le lien
|
|
|
789 |
$buttons[] = &HTML_QuickForm::createElement('submit', 'valider', BAZ_VALIDER);
|
|
|
790 |
$formtemplate->addGroup($buttons, null, null, ' ');
|
|
|
791 |
|
54 |
florian |
792 |
}
|
118 |
florian |
793 |
|
54 |
florian |
794 |
//Affichage a l'ecran
|
118 |
florian |
795 |
$res .= $formtemplate->toHTML()."\n";
|
54 |
florian |
796 |
return $res;
|
|
|
797 |
}
|
|
|
798 |
|
|
|
799 |
|
205 |
jp_milcent |
800 |
/** requete_bazar_fiche() - preparer la requete d'insertion ou de MAJ de la table bazar_fiche a partir du template
|
5 |
florian |
801 |
*
|
|
|
802 |
* @global mixed L'objet contenant les valeurs issues de la saisie du formulaire
|
|
|
803 |
* @return void
|
|
|
804 |
*/
|
|
|
805 |
function requete_bazar_fiche($valeur) {
|
|
|
806 |
$requete=NULL;
|
|
|
807 |
//l'annonce est directement publiée pour les admins
|
316 |
alexandre_ |
808 |
$utilisateur = new Administrateur_bazar($GLOBALS['AUTH']);
|
|
|
809 |
|
|
|
810 |
if ($utilisateur->isAdmin($GLOBALS['_BAZAR_']['id_typeannonce']) ||
|
|
|
811 |
$utilisateur->isSuperAdmin()) {
|
68 |
florian |
812 |
$requete.='bf_statut_fiche=1, ';
|
5 |
florian |
813 |
}
|
|
|
814 |
else {
|
68 |
florian |
815 |
$requete.='bf_statut_fiche="'.BAZ_ETAT_VALIDATION.'", ';
|
75 |
florian |
816 |
}
|
69 |
alexandre_ |
817 |
$tableau=baz_valeurs_template($GLOBALS['_BAZAR_']['template']);
|
5 |
florian |
818 |
for ($i=0; $i<count($tableau); $i++) {
|
118 |
florian |
819 |
//cas des checkbox et des listes
|
|
|
820 |
if ($tableau[$i]['type']=='checkbox' || $tableau[$i]['type']=='liste') {
|
|
|
821 |
//on supprime les anciennes valeurs de la table bazar_fiche_valeur_liste
|
|
|
822 |
$requetesuppression='DELETE FROM bazar_fiche_valeur_liste WHERE bfvl_ce_fiche='.$GLOBALS['_BAZAR_']['id_fiche'].' AND bfvl_ce_liste='.$tableau[$i]['nom_bdd'];
|
|
|
823 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requetesuppression) ;
|
|
|
824 |
if (DB::isError($resultat)) {
|
|
|
825 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
826 |
}
|
126 |
florian |
827 |
if (isset($valeur[$tableau[$i]['type'].$tableau[$i]['nom_bdd']]) && ($valeur[$tableau[$i]['type'].$tableau[$i]['nom_bdd']]!=0)) {
|
74 |
florian |
828 |
//on insere les nouvelles valeurs
|
|
|
829 |
$requeteinsertion='INSERT INTO bazar_fiche_valeur_liste (bfvl_ce_fiche, bfvl_ce_liste, bfvl_valeur) VALUES ';
|
|
|
830 |
//pour les checkbox, les différentes valeurs sont dans un tableau
|
|
|
831 |
if (is_array($valeur[$tableau[$i]['type'].$tableau[$i]['nom_bdd']])) {
|
76 |
florian |
832 |
$nb=0;
|
74 |
florian |
833 |
while (list($cle, $val) = each($valeur[$tableau[$i]['type'].$tableau[$i]['nom_bdd']])) {
|
118 |
florian |
834 |
|
76 |
florian |
835 |
if ($nb>0) $requeteinsertion .= ', ';
|
|
|
836 |
$requeteinsertion .= '('.$GLOBALS['_BAZAR_']['id_fiche'].', '.$tableau[$i]['nom_bdd'].', '.$cle.') ';
|
|
|
837 |
$nb++;
|
74 |
florian |
838 |
}
|
|
|
839 |
}
|
|
|
840 |
//pour les listes, une insertion de la valeur suffit
|
|
|
841 |
else {
|
126 |
florian |
842 |
$requeteinsertion .= '('.$GLOBALS['_BAZAR_']['id_fiche'].', '.$tableau[$i]['nom_bdd'].', '.$valeur[$tableau[$i]['type'].$tableau[$i]['nom_bdd']].')';
|
74 |
florian |
843 |
}
|
118 |
florian |
844 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requeteinsertion) ;
|
74 |
florian |
845 |
if (DB::isError($resultat)) {
|
|
|
846 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
55 |
florian |
847 |
}
|
118 |
florian |
848 |
}
|
|
|
849 |
}
|
|
|
850 |
//cas des fichiers
|
|
|
851 |
elseif ($tableau[$i]['type']=='fichier') {
|
|
|
852 |
if (isset($valeur['texte_fichier'.$tableau[$i]['nom_bdd']]) && $valeur['texte_fichier'.$tableau[$i]['nom_bdd']]!='') {
|
|
|
853 |
baz_insertion_fichier($valeur['texte_fichier'.$tableau[$i]['nom_bdd']], $GLOBALS['_BAZAR_']['id_fiche'], 'fichier'.$tableau[$i]['nom_bdd']);
|
|
|
854 |
}
|
|
|
855 |
}
|
|
|
856 |
//cas des urls
|
|
|
857 |
elseif ($tableau[$i]['type']=='url') {
|
|
|
858 |
if (isset($valeur['url_lien'.$tableau[$i]['nom_bdd']]) && $valeur['url_lien'.$tableau[$i]['nom_bdd']]!='' ) {
|
|
|
859 |
baz_insertion_url($valeur['url_lien'.$tableau[$i]['nom_bdd']], $valeur['url_texte'.$tableau[$i]['nom_bdd']], $GLOBALS['_BAZAR_']['id_fiche']);
|
54 |
florian |
860 |
}
|
118 |
florian |
861 |
}
|
|
|
862 |
//cas des images
|
|
|
863 |
elseif ($tableau[$i]['type']=='image') {
|
|
|
864 |
if (isset($_FILES['image']['name']) && $_FILES['image']['name']!='') {
|
144 |
florian |
865 |
$requete .= baz_insertion_image($GLOBALS['_BAZAR_']['id_fiche']);
|
103 |
florian |
866 |
}
|
5 |
florian |
867 |
}
|
118 |
florian |
868 |
//cas des dates
|
|
|
869 |
elseif ( $tableau[$i]['type']=='listedatedeb' || $tableau[$i]['type']=='listedatefin' ) {
|
225 |
neiluj |
870 |
|
|
|
871 |
// On construit la date selon le format YYYY-mm-dd
|
|
|
872 |
$date = $valeur[$tableau[$i]['nom_bdd']]['Y'].'-'.$valeur[$tableau[$i]['nom_bdd']]['m'].'-'.$valeur[$tableau[$i]['nom_bdd']]['d'] ;
|
|
|
873 |
|
|
|
874 |
// si la date de fin evenement est anterieure a la date de debut, on met la date de debut
|
|
|
875 |
// pour eviter les incoherence
|
|
|
876 |
|
|
|
877 |
if ($tableau[$i]['nom_bdd'] == 'bf_date_fin_evenement' &&
|
|
|
878 |
mktime(0,0,0, $valeur['bf_date_debut_evenement']['m'], $valeur['bf_date_debut_evenement']['d'], $valeur['bf_date_debut_evenement']['Y']) >
|
|
|
879 |
mktime(0,0,0, $valeur['bf_date_fin_evenement']['m'], $valeur['bf_date_fin_evenement']['d'], $valeur['bf_date_fin_evenement']['Y'])) {
|
|
|
880 |
$val = $valeur['bf_date_debut_evenement']['Y'].'-'.$valeur['bf_date_debut_evenement']['m'].'-'.$valeur['bf_date_debut_evenement']['d'] ;
|
|
|
881 |
} else {
|
|
|
882 |
$val = $valeur[$tableau[$i]['nom_bdd']]['Y'].'-'.$valeur[$tableau[$i]['nom_bdd']]['m'].'-'.$valeur[$tableau[$i]['nom_bdd']]['d'] ;
|
|
|
883 |
}
|
118 |
florian |
884 |
$requete .= $tableau[$i]['nom_bdd'].'="'.$val.'", ' ;
|
|
|
885 |
}
|
|
|
886 |
//cas des champs texte
|
271 |
alexandre_ |
887 |
elseif ( $tableau[$i]['type']=='texte' || $tableau[$i]['type']=='textelong' || $tableau[$i]['type']=='champs_cache' ) {
|
118 |
florian |
888 |
//on mets les slashes pour les saisies dans les champs texte et textearea
|
|
|
889 |
$val=addslashes($valeur[$tableau[$i]['nom_bdd']]) ;
|
|
|
890 |
$requete .= $tableau[$i]['nom_bdd'].'="'.$val.'", ' ;
|
129 |
florian |
891 |
}
|
|
|
892 |
//cas des wikinis
|
|
|
893 |
elseif ( $tableau[$i]['type']=='wikini' && $_REQUEST['action']==BAZ_ACTION_NOUVEAU_V ) {
|
|
|
894 |
//on appelle les pages des apis et de l'integrateur wikini
|
|
|
895 |
include_once PAP_CHEMIN_RACINE.'api/sql/SQL_manipulation.fonct.php';
|
|
|
896 |
include_once PAP_CHEMIN_RACINE.'client/integrateur_wikini/configuration/adwi_configuration.inc.php' ;
|
152 |
florian |
897 |
include_once PAP_CHEMIN_RACINE.'client/integrateur_wikini/bibliotheque/adwi_wikini.fonct.php' ;
|
|
|
898 |
//génération du titre du wiki, sous la forme id-titre du projet
|
|
|
899 |
$titre=baz_titre_wiki($valeur["bf_titre"]);
|
|
|
900 |
//création du wiki
|
|
|
901 |
$valeur=array ("action"=> "nouveau_v", "code_alpha_wikini"=>$titre, "page"=>"AccueiL", "bdd_hote"=> "",
|
|
|
902 |
"bdd_nom"=> "", "bdd_utilisateur"=> "", "bdd_mdp" => "", "table_prefix"=> "", "chemin" => "wikini/".$titre, "valider"=> "Valider");
|
129 |
florian |
903 |
$val = insertion($valeur, $GLOBALS['_BAZAR_']['db']);
|
250 |
alexandre_ |
904 |
}
|
|
|
905 |
// Cas de la carte google
|
|
|
906 |
elseif ($tableau[$i]['type'] == 'carte_google') {
|
|
|
907 |
$requete .= 'bf_latitude="'.$valeur['latitude'].'", bf_longitude="'.$valeur['longitude'].'",';
|
|
|
908 |
}
|
118 |
florian |
909 |
}
|
74 |
florian |
910 |
$requete.=' bf_date_maj_fiche=NOW()';
|
5 |
florian |
911 |
return $requete;
|
|
|
912 |
}
|
|
|
913 |
|
|
|
914 |
/** baz_insertion() - inserer une nouvelle fiche
|
|
|
915 |
*
|
67 |
alexandre_ |
916 |
* @array Le tableau des valeurs a inserer
|
5 |
florian |
917 |
* @integer Valeur de l'identifiant de la fiche
|
|
|
918 |
* @return void
|
|
|
919 |
*/
|
68 |
florian |
920 |
function baz_insertion($valeur) {
|
53 |
florian |
921 |
// =========== Insertion d'une nouvelle fiche ===================
|
5 |
florian |
922 |
//requete d'insertion dans bazar_fiche
|
74 |
florian |
923 |
$GLOBALS['_BAZAR_']['id_fiche'] = baz_nextid('bazar_fiche', 'bf_id_fiche', $GLOBALS['_BAZAR_']['db']) ;
|
|
|
924 |
$requete = 'INSERT INTO bazar_fiche SET bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'].','.
|
5 |
florian |
925 |
'bf_ce_utilisateur='.$GLOBALS['id_user'].', bf_ce_nature='.$GLOBALS['_BAZAR_']['id_typeannonce'].','.
|
13 |
alexandre_ |
926 |
'bf_date_creation_fiche=NOW(),';
|
185 |
jp_milcent |
927 |
if (!isset($_REQUEST['bf_date_debut_validite_fiche'])) {
|
|
|
928 |
$requete .= 'bf_date_debut_validite_fiche=now(), bf_date_fin_validite_fiche="0000-00-00", ' ;
|
53 |
florian |
929 |
}
|
74 |
florian |
930 |
$requete .=requete_bazar_fiche(&$valeur) ;
|
53 |
florian |
931 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
932 |
if (DB::isError($resultat)) {
|
271 |
alexandre_ |
933 |
return ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
53 |
florian |
934 |
}
|
271 |
alexandre_ |
935 |
// Envoie d un mail aux administrateurs
|
|
|
936 |
$utilisateur = new Administrateur_bazar($GLOBALS['AUTH']);
|
|
|
937 |
if ($utilisateur->isRedacteur($GLOBALS['_BAZAR_']['id_typeannonce'])) {
|
|
|
938 |
$mails = bazar::getMailAdmin($GLOBALS['_BAZAR_']['id_typeannonce']);
|
299 |
alexandre_ |
939 |
include_once BAZ_CHEMIN_APPLI.'bibliotheque/bazarTemplate.class.php';
|
271 |
alexandre_ |
940 |
$template = new bazarTemplate($GLOBALS['_BAZAR_']['db']);
|
|
|
941 |
$sujet = $template->getTemplate(BAZ_TEMPLATE_MAIL_NOUVELLE_FICHE_SUJET, $GLOBALS['_BAZAR_']['langue'], $GLOBALS['_BAZAR_']['id_typeannonce']);
|
|
|
942 |
$corps = $template->getTemplate(BAZ_TEMPLATE_MAIL_NOUVELLE_FICHE_CORPS, $GLOBALS['_BAZAR_']['langue'], $GLOBALS['_BAZAR_']['id_typeannonce']);
|
|
|
943 |
if (is_array ($mails)) {
|
|
|
944 |
foreach ($mails as $mail) {
|
|
|
945 |
mail ($mail, $sujet, $corps);
|
|
|
946 |
}
|
|
|
947 |
}
|
|
|
948 |
}
|
53 |
florian |
949 |
return;
|
5 |
florian |
950 |
}
|
|
|
951 |
|
|
|
952 |
|
118 |
florian |
953 |
/** baz_insertion_url() - inserer un lien URL a une fiche
|
5 |
florian |
954 |
*
|
|
|
955 |
* @global string L'url du lien
|
|
|
956 |
* @global string Le texte du lien
|
|
|
957 |
* @global integer L'identifiant de la fiche
|
|
|
958 |
* @return void
|
|
|
959 |
*/
|
|
|
960 |
function baz_insertion_url($url_lien, $url_texte, $idfiche) {
|
|
|
961 |
//requete d'insertion dans bazar_url
|
|
|
962 |
$id_url = baz_nextId('bazar_url', 'bu_id_url', $GLOBALS['_BAZAR_']['db']) ;
|
|
|
963 |
$requete = 'INSERT INTO bazar_url SET bu_id_url='.$id_url.', bu_ce_fiche='.$idfiche.', '.
|
|
|
964 |
'bu_url="'.$url_lien.'", bu_descriptif_url="'.addslashes($url_texte).'"';
|
|
|
965 |
|
|
|
966 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
967 |
if (DB::isError($resultat)) {
|
|
|
968 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
969 |
}
|
|
|
970 |
return;
|
|
|
971 |
}
|
|
|
972 |
|
|
|
973 |
|
67 |
alexandre_ |
974 |
/** baz_insertion_fichier() - inserer un fichier a une fiche
|
5 |
florian |
975 |
*
|
|
|
976 |
* @global string Le label du fichier
|
|
|
977 |
* @global string La description du fichier
|
|
|
978 |
* @global integer L'identifiant de la fiche
|
|
|
979 |
* @return void
|
|
|
980 |
*/
|
103 |
florian |
981 |
function baz_insertion_fichier($fichier_description, $idfiche, $nom_fichier='fichier_joint') {
|
68 |
florian |
982 |
//verification de la presence de ce fichier
|
103 |
florian |
983 |
$requete = 'SELECT bfj_id_fichier FROM bazar_fichier_joint WHERE bfj_fichier="'.$_FILES[$nom_fichier]['name'].'"';
|
5 |
florian |
984 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
985 |
if (DB::isError($resultat)) {
|
|
|
986 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
987 |
}
|
|
|
988 |
if ($resultat->numRows()==0) {
|
103 |
florian |
989 |
$chemin_destination=BAZ_CHEMIN_APPLI.'upload/'.$_FILES[$nom_fichier]['name'];
|
|
|
990 |
move_uploaded_file($_FILES[$nom_fichier]['tmp_name'], $chemin_destination);
|
250 |
alexandre_ |
991 |
chmod ($chemin_destination, 0755);
|
5 |
florian |
992 |
}
|
|
|
993 |
$id_fichier_joint = baz_nextId('bazar_fichier_joint', 'bfj_id_fichier', $GLOBALS['_BAZAR_']['db']) ;
|
|
|
994 |
$requete = 'INSERT INTO bazar_fichier_joint SET bfj_id_fichier='.$id_fichier_joint.', bfj_ce_fiche='.$idfiche.
|
103 |
florian |
995 |
', bfj_description="'.addslashes($fichier_description).'", bfj_fichier="'.$_FILES[$nom_fichier]['name'].'"';
|
5 |
florian |
996 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
997 |
if (DB::isError($resultat)) {
|
|
|
998 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
999 |
}
|
|
|
1000 |
return;
|
|
|
1001 |
}
|
|
|
1002 |
|
|
|
1003 |
|
118 |
florian |
1004 |
/** baz_insertion_image() - inserer une image a une fiche
|
5 |
florian |
1005 |
*
|
|
|
1006 |
* @global integer L'identifiant de la fiche
|
144 |
florian |
1007 |
* @return string requete SQL
|
5 |
florian |
1008 |
*/
|
|
|
1009 |
function baz_insertion_image($idfiche) {
|
68 |
florian |
1010 |
//verification de la presence de ce fichier
|
144 |
florian |
1011 |
$requete = 'SELECT bf_id_fiche FROM bazar_fiche WHERE bf_url_image="'.$_FILES['image']['name'].'" AND bf_id_fiche!='.$idfiche;
|
5 |
florian |
1012 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1013 |
if (DB::isError($resultat)) {
|
|
|
1014 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
1015 |
}
|
|
|
1016 |
if ($resultat->numRows()==0) {
|
118 |
florian |
1017 |
$chemin_destination=BAZ_CHEMIN_APPLI.'upload/'.$_FILES['image']['name'];
|
5 |
florian |
1018 |
move_uploaded_file($_FILES['image']['tmp_name'], $chemin_destination);
|
250 |
alexandre_ |
1019 |
chmod ($chemin_destination, 0755);
|
5 |
florian |
1020 |
}
|
144 |
florian |
1021 |
return 'bf_url_image="'.$_FILES['image']['name'].'", ' ;
|
5 |
florian |
1022 |
}
|
|
|
1023 |
|
|
|
1024 |
|
|
|
1025 |
/** baz_mise_a_jour() - Mettre a jour une fiche
|
|
|
1026 |
*
|
|
|
1027 |
* @global Le contenu du formulaire de saisie de l'annonce
|
|
|
1028 |
* @return void
|
|
|
1029 |
*/
|
|
|
1030 |
function baz_mise_a_jour($valeur) {
|
|
|
1031 |
//MAJ de bazar_fiche
|
|
|
1032 |
$requete = 'UPDATE bazar_fiche SET '.requete_bazar_fiche(&$valeur,$GLOBALS['_BAZAR_']['id_typeannonce']);
|
|
|
1033 |
$requete.= ' WHERE bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
|
|
|
1034 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1035 |
if (DB::isError($resultat)) {
|
|
|
1036 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
1037 |
}
|
|
|
1038 |
return;
|
|
|
1039 |
}
|
|
|
1040 |
|
|
|
1041 |
|
|
|
1042 |
/** baz_suppression() - Supprime une fiche
|
|
|
1043 |
*
|
67 |
alexandre_ |
1044 |
* @global L'identifiant de la fiche a supprimer
|
5 |
florian |
1045 |
* @return void
|
|
|
1046 |
*/
|
|
|
1047 |
function baz_suppression() {
|
152 |
florian |
1048 |
$valeurs=baz_valeurs_fiche($_GET['id_fiche']);
|
|
|
1049 |
|
|
|
1050 |
//suppression des wikinis associes
|
|
|
1051 |
//génération du titre du wiki, sous la forme id-titre du projet
|
|
|
1052 |
$titre=baz_titre_wiki($valeurs["bf_titre"]);
|
|
|
1053 |
$requete = 'SELECT gewi_id_wikini FROM gen_wikini WHERE gewi_code_alpha_wikini = "'.$titre.'"';
|
5 |
florian |
1054 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
152 |
florian |
1055 |
if ($resultat->numRows()>0) {
|
|
|
1056 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
1057 |
$id_wikini=$ligne['gewi_id_wikini'];
|
|
|
1058 |
}
|
|
|
1059 |
include_once PAP_CHEMIN_RACINE.'api/sql/SQL_manipulation.fonct.php';
|
|
|
1060 |
include_once PAP_CHEMIN_RACINE.'client/integrateur_wikini/configuration/adwi_configuration.inc.php' ;
|
|
|
1061 |
include_once PAP_CHEMIN_RACINE.'client/integrateur_wikini/bibliotheque/adwi_wikini.fonct.php' ;
|
|
|
1062 |
adwi_supprimer_wikini($id_wikini, $GLOBALS['_BAZAR_']['db']);
|
|
|
1063 |
}
|
|
|
1064 |
|
74 |
florian |
1065 |
// suppression des valeurs des listes et des cases à cocher
|
|
|
1066 |
$requete = 'DELETE FROM bazar_fiche_valeur_liste WHERE bfvl_ce_fiche='.$_GET['id_fiche'];
|
|
|
1067 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1068 |
if (DB::isError($resultat)) {
|
|
|
1069 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
1070 |
}
|
67 |
alexandre_ |
1071 |
|
|
|
1072 |
//suppression des urls associes
|
74 |
florian |
1073 |
$requete = 'SELECT bu_id_url FROM bazar_url WHERE bu_ce_fiche = '.$_GET['id_fiche'];
|
5 |
florian |
1074 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1075 |
if (DB::isError($resultat)) {
|
|
|
1076 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo().'<br />'."\n") ;
|
|
|
1077 |
}
|
|
|
1078 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
1079 |
baz_suppression_url($ligne['bu_id_url']);
|
|
|
1080 |
}
|
|
|
1081 |
|
67 |
alexandre_ |
1082 |
//suppression des fichiers associes
|
74 |
florian |
1083 |
$requete = 'SELECT bfj_id_fichier FROM bazar_fichier_joint WHERE bfj_ce_fiche = '.$_GET['id_fiche'];
|
5 |
florian |
1084 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1085 |
if (DB::isError($resultat)) {
|
|
|
1086 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo().'<br />'."\n") ;
|
|
|
1087 |
}
|
|
|
1088 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
1089 |
baz_suppression_fichier($ligne['bfj_id_fichier']);
|
|
|
1090 |
}
|
74 |
florian |
1091 |
|
152 |
florian |
1092 |
//suppression dans bazar_fiche
|
|
|
1093 |
$requete = 'DELETE FROM bazar_fiche WHERE bf_id_fiche = '.$_GET['id_fiche'];
|
|
|
1094 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1095 |
if (DB::isError($resultat)) {
|
|
|
1096 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo().'<br />'."\n") ;
|
|
|
1097 |
}
|
5 |
florian |
1098 |
return ;
|
|
|
1099 |
}
|
|
|
1100 |
|
|
|
1101 |
|
|
|
1102 |
/** baz_suppression_url() - Supprimer un lien d'une fiche
|
|
|
1103 |
*
|
|
|
1104 |
* @global integer L'identifiant du lien
|
|
|
1105 |
* @return void
|
|
|
1106 |
*/
|
|
|
1107 |
function baz_suppression_url($id_url) {
|
|
|
1108 |
//suppression dans bazar_url
|
|
|
1109 |
$requete = 'DELETE FROM bazar_url WHERE bu_id_url = '.$id_url;
|
|
|
1110 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1111 |
if (DB::isError($resultat)) {
|
|
|
1112 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
1113 |
}
|
|
|
1114 |
return;
|
|
|
1115 |
}
|
|
|
1116 |
|
|
|
1117 |
|
|
|
1118 |
/** baz_suppression_fichier() - Supprimer un fichier d'une fiche
|
|
|
1119 |
*
|
|
|
1120 |
* @global integer L'identifiant du fichier
|
|
|
1121 |
* @return void
|
|
|
1122 |
*/
|
|
|
1123 |
function baz_suppression_fichier($id_fichier) {
|
68 |
florian |
1124 |
//verification de l'utilisation du fichier joint pour une autre annonce
|
5 |
florian |
1125 |
$requete = 'SELECT bfj_fichier FROM bazar_fichier_joint WHERE bfj_id_fichier='.$id_fichier;
|
|
|
1126 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1127 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
|
|
|
1128 |
$requete = 'SELECT bfj_fichier FROM bazar_fichier_joint WHERE bfj_fichier="'.$ligne['bfj_fichier'].'"';
|
|
|
1129 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
118 |
florian |
1130 |
//si le fichier n'est que utilise dans cette fiche, on le supprime, on le laisse sinon
|
5 |
florian |
1131 |
if ($resultat->numRows()==1) {
|
|
|
1132 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
|
118 |
florian |
1133 |
unlink(BAZ_CHEMIN_APPLI.'upload/'.$ligne['bfj_fichier']);
|
5 |
florian |
1134 |
}
|
|
|
1135 |
|
|
|
1136 |
//suppression dans la table bazar_fichier
|
|
|
1137 |
$requete = 'DELETE FROM bazar_fichier_joint WHERE bfj_id_fichier = '.$id_fichier;
|
|
|
1138 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1139 |
if (DB::isError($resultat)) {
|
|
|
1140 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
1141 |
}
|
|
|
1142 |
return;
|
|
|
1143 |
}
|
|
|
1144 |
|
|
|
1145 |
|
|
|
1146 |
/** baz_suppression_image() - Supprimer une image d'une fiche
|
|
|
1147 |
*
|
|
|
1148 |
* @global integer L'identifiant de la fiche
|
|
|
1149 |
* @return void
|
|
|
1150 |
*/
|
|
|
1151 |
function baz_suppression_image($id_fiche) {
|
68 |
florian |
1152 |
//verification de l'utilisation de l'image pour une autre annonce
|
5 |
florian |
1153 |
$requete = 'SELECT bf_url_image FROM bazar_fiche WHERE bf_id_fiche='.$id_fiche;
|
|
|
1154 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1155 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
|
|
|
1156 |
$requete = 'SELECT bf_url_image FROM bazar_fiche WHERE bf_url_image="'.$ligne['bf_url_image'].'"';
|
|
|
1157 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
118 |
florian |
1158 |
//si le fichier n'est que utilise dans cette fiche, on le supprime, on le laisse sinon
|
5 |
florian |
1159 |
if ($resultat->numRows()==1) {
|
|
|
1160 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
|
118 |
florian |
1161 |
unlink(BAZ_CHEMIN_APPLI.'upload/'.$ligne['bf_url_image']);
|
5 |
florian |
1162 |
}
|
|
|
1163 |
|
|
|
1164 |
//suppression dans la table bazar_fiche
|
|
|
1165 |
$requete = 'UPDATE bazar_fiche SET bf_url_image=NULL WHERE bf_id_fiche = '.$id_fiche;
|
|
|
1166 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1167 |
if (DB::isError($resultat)) {
|
|
|
1168 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
1169 |
}
|
|
|
1170 |
return;
|
|
|
1171 |
}
|
|
|
1172 |
|
|
|
1173 |
|
|
|
1174 |
/** publier_fiche () - Publie ou non dans les fichiers XML la fiche bazar d'un utilisateur
|
|
|
1175 |
*
|
|
|
1176 |
* @global boolean Valide: oui ou non
|
|
|
1177 |
* @return void
|
|
|
1178 |
*/
|
|
|
1179 |
function publier_fiche($valid) {
|
|
|
1180 |
if (isset($_GET['id_fiche'])) $GLOBALS['_BAZAR_']['id_fiche']=$_GET['id_fiche'];
|
|
|
1181 |
if (isset($_GET['typeannonce'])) $typeannonce=$_GET['typeannonce'];
|
|
|
1182 |
if ($valid==0) {
|
|
|
1183 |
$requete = 'UPDATE bazar_fiche SET bf_statut_fiche=2 WHERE bf_id_fiche="'.$GLOBALS['_BAZAR_']['id_fiche'].'"' ;
|
|
|
1184 |
}
|
|
|
1185 |
else {
|
|
|
1186 |
$requete = 'UPDATE bazar_fiche SET bf_statut_fiche=1 WHERE bf_id_fiche="'.$GLOBALS['_BAZAR_']['id_fiche'].'"' ;
|
|
|
1187 |
}
|
|
|
1188 |
|
54 |
florian |
1189 |
// ====================Mise a jour de la table bazar_fiche====================
|
5 |
florian |
1190 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1191 |
if (DB::isError($resultat)) {
|
|
|
1192 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
1193 |
}
|
|
|
1194 |
unset ($resultat) ;
|
54 |
florian |
1195 |
//TODO envoie mail annonceur
|
5 |
florian |
1196 |
return;
|
|
|
1197 |
}
|
|
|
1198 |
|
|
|
1199 |
|
|
|
1200 |
/** baz_s_inscrire() affiche le formulaire qui permet de s'inscrire pour recevoir des annonces d'un type
|
|
|
1201 |
*
|
|
|
1202 |
* @return string le code HTML
|
|
|
1203 |
*/
|
|
|
1204 |
function baz_s_inscrire() {
|
205 |
jp_milcent |
1205 |
$res= '<h2>'.BAZ_S_INSCRIRE_AUX_ANNONCES.'</h2>'."\n";
|
5 |
florian |
1206 |
if (isset($_GET['inscrip'])) {
|
64 |
florian |
1207 |
//cas d'une desinscription
|
5 |
florian |
1208 |
if ($_GET['inscrip']==0) {
|
|
|
1209 |
$requete='DELETE FROM bazar_abonnement WHERE ba_id_utilisateur='.$GLOBALS['id_user'].' AND ba_id_rubrique='.$_GET['idtypeannonce'];
|
|
|
1210 |
}
|
|
|
1211 |
//cas d'une inscription
|
|
|
1212 |
else {
|
|
|
1213 |
$requete='INSERT INTO bazar_abonnement VALUES ('.$GLOBALS['id_user'].', '.$_GET['idtypeannonce'].')';
|
|
|
1214 |
}
|
|
|
1215 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1216 |
if (DB::isError($resultat)) {
|
|
|
1217 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
1218 |
}
|
|
|
1219 |
}
|
|
|
1220 |
|
24 |
florian |
1221 |
if ($GLOBALS['AUTH']->getAuth()) {
|
205 |
jp_milcent |
1222 |
$res .= '<p id="laius_abonnement">'.BAZ_LAIUS_S_ABONNER.'</p>'."\n";
|
5 |
florian |
1223 |
//requete pour obtenir l'id et le label des types d'annonces
|
64 |
florian |
1224 |
$requete = 'SELECT bn_id_nature, bn_label_nature, bn_image_titre '.
|
154 |
florian |
1225 |
'FROM bazar_nature WHERE 1'; /*bn_ce_id_menu='.$GLOBALS['_BAZAR_']['categorie_nature'];*/
|
5 |
florian |
1226 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1227 |
if (DB::isError($resultat)) {
|
|
|
1228 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
1229 |
}
|
|
|
1230 |
|
205 |
jp_milcent |
1231 |
$table = new HTML_Table(array ('width' => '100%', 'class' => 'table_bazar'));
|
|
|
1232 |
$table->addRow(array(BAZ_TYPE_ANNONCES, BAZ_STATUT, BAZ_PASSER_EN, BAZ_RSS));
|
|
|
1233 |
$table->setRowType(0, 'th');
|
5 |
florian |
1234 |
|
154 |
florian |
1235 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
1236 |
$tab_parametres_GET = explode ("&", $_SERVER["argv"][0]) ;
|
|
|
1237 |
foreach ($tab_parametres_GET as $cle_param => $valeur_param) {
|
|
|
1238 |
$tab_valeur = explode ('=', $valeur_param) ;
|
|
|
1239 |
$GLOBALS['_BAZAR_']['url']->addQueryString($tab_valeur[0], $tab_valeur[1]);
|
|
|
1240 |
}
|
|
|
1241 |
|
5 |
florian |
1242 |
$lien_s_abonner=$GLOBALS['_BAZAR_']['url'];
|
|
|
1243 |
$lien_s_abonner->addQueryString('action', BAZ_S_INSCRIRE);
|
|
|
1244 |
$lien_s_abonner->addQueryString('idtypeannonce', $ligne['bn_id_nature']);
|
|
|
1245 |
$lien_s_abonner->addQueryString('inscrip', 1);
|
|
|
1246 |
|
|
|
1247 |
$lien_se_desabonner=$GLOBALS['_BAZAR_']['url'];
|
|
|
1248 |
$lien_se_desabonner->addQueryString('action', BAZ_S_INSCRIRE);
|
|
|
1249 |
$lien_se_desabonner->addQueryString('idtypeannonce', $ligne['bn_id_nature']);
|
|
|
1250 |
$lien_se_desabonner->addQueryString('inscrip', 0);
|
|
|
1251 |
|
|
|
1252 |
$lien_RSS=$GLOBALS['_BAZAR_']['url'];
|
154 |
florian |
1253 |
$lien_RSS->addQueryString('action', BAZ_VOIR_FLUX_RSS);
|
5 |
florian |
1254 |
|
154 |
florian |
1255 |
//requete pour savoir si la personne est inscrite a ce type d'annonce
|
5 |
florian |
1256 |
$requete = 'SELECT ba_id_utilisateur '.
|
|
|
1257 |
'FROM bazar_abonnement '.
|
64 |
florian |
1258 |
'WHERE ba_id_utilisateur='.$GLOBALS['id_user'].' AND ba_id_rubrique='.$ligne['bn_id_nature'];
|
5 |
florian |
1259 |
$resultat2 = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1260 |
if (DB::isError($resultat2)) {
|
|
|
1261 |
die ($resultat2->getMessage().$resultat2->getDebugInfo()) ;
|
|
|
1262 |
}
|
107 |
florian |
1263 |
if (isset($ligne['bn_image_titre'])) {$titre=' <img src="client/bazar/images/'.$ligne['bn_image_titre'].'" alt="'.$ligne['bn_label_nature'].'" />'."\n";}
|
|
|
1264 |
else {$titre='<strong> '.$ligne['bn_label_nature'].'</strong>'."\n";}
|
5 |
florian |
1265 |
if ($resultat2->numRows()>0) {
|
64 |
florian |
1266 |
$lien_RSS->addQueryString('annonce', $ligne['bn_id_nature']);
|
|
|
1267 |
$table->addRow(array($titre,
|
5 |
florian |
1268 |
BAZ_ABONNE,
|
|
|
1269 |
'<a href='.$lien_se_desabonner->getURL().'>'.BAZ_SE_DESABONNER.'</a>',
|
|
|
1270 |
'<a href='.$lien_RSS->getURL().'><img src="client/bazar/images/BAZ_rss.png" alt="'.BAZ_RSS.'"></a>'));
|
|
|
1271 |
$lien_RSS->removeQueryString('annonce');
|
|
|
1272 |
}
|
|
|
1273 |
else {
|
64 |
florian |
1274 |
$lien_RSS->addQueryString('annonce', $ligne['bn_id_nature']);
|
|
|
1275 |
$table->addRow(array($titre,
|
5 |
florian |
1276 |
BAZ_PAS_ABONNE,
|
|
|
1277 |
'<a href='.$lien_s_abonner->getURL().'>'.BAZ_S_ABONNER.'</a>',
|
|
|
1278 |
'<a href='.$lien_RSS->getURL().'><img src="client/bazar/images/BAZ_rss.png" alt="'.BAZ_RSS.'" /></a>'));
|
|
|
1279 |
$lien_RSS->removeQueryString('annonce');
|
|
|
1280 |
}
|
|
|
1281 |
}
|
|
|
1282 |
$table->altRowAttributes(1, array('class' => 'ligne_impaire'), array('class' => 'ligne_paire'));
|
205 |
jp_milcent |
1283 |
$table->updateColAttributes(0, array('id' => 'col1'));
|
|
|
1284 |
$table->updateColAttributes(1, array('id' => 'col2'));
|
|
|
1285 |
$table->updateColAttributes(2, array('id' => 'col3'));
|
|
|
1286 |
$table->updateColAttributes(3, array('id' => 'col4'));
|
5 |
florian |
1287 |
$res.=$table->toHTML() ;
|
24 |
florian |
1288 |
}
|
154 |
florian |
1289 |
else {
|
|
|
1290 |
$res .= '<p class="zone_info">'.BAZ_IDENTIFIEZ_VOUS_POUR_SAISIR.'</p>'."\n" ;
|
|
|
1291 |
$res .= '<form id="form_connexion" style="clear:both;" class="form_identification" action="' ;
|
|
|
1292 |
$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_S_INSCRIRE);
|
|
|
1293 |
$res .= $GLOBALS['_BAZAR_']['url']->getURL();
|
|
|
1294 |
$res .= '" method="post">
|
|
|
1295 |
<fieldset>
|
|
|
1296 |
<legend>Identifiez vous</legend>
|
|
|
1297 |
<label for="username">Courriel : </label>
|
|
|
1298 |
<input type="text" id="username" name="username" maxlength="80" tabindex="1" value="courriel" />
|
|
|
1299 |
<label for="password">Mot de passe : </label>
|
|
|
1300 |
<input type="password" id="password" name="password" maxlength="80" tabindex="2" value="mot de passe" />
|
|
|
1301 |
<input type="submit" id="connexion" name="connexion" tabindex="3" value="ok" />
|
|
|
1302 |
</fieldset>
|
|
|
1303 |
</form>';
|
|
|
1304 |
}
|
5 |
florian |
1305 |
|
205 |
jp_milcent |
1306 |
// Nettoyage de l'url
|
|
|
1307 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
|
|
|
1308 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('idtypeannonce');
|
|
|
1309 |
$GLOBALS['_BAZAR_']['url']->removeQueryString('inscrip');
|
|
|
1310 |
|
5 |
florian |
1311 |
return $res;
|
|
|
1312 |
}
|
|
|
1313 |
|
|
|
1314 |
|
74 |
florian |
1315 |
/** baz_valeurs_fiche() - Renvoie un tableau avec les valeurs par defaut du formulaire d'inscription
|
5 |
florian |
1316 |
*
|
|
|
1317 |
* @param integer Identifiant de la fiche
|
|
|
1318 |
*
|
74 |
florian |
1319 |
* @return array Valeurs enregistrees pour cette fiche
|
5 |
florian |
1320 |
*/
|
|
|
1321 |
function baz_valeurs_fiche($idfiche) {
|
|
|
1322 |
$requete = 'SELECT * FROM bazar_fiche WHERE bf_id_fiche='.$idfiche;
|
|
|
1323 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1324 |
if (DB::isError($resultat)) {
|
|
|
1325 |
die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
1326 |
}
|
|
|
1327 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC) ;
|
|
|
1328 |
$valeurs_fiche = array() ;
|
72 |
alexandre_ |
1329 |
$tableau = baz_valeurs_template($GLOBALS['_BAZAR_']['template']);
|
5 |
florian |
1330 |
for ($i=0; $i<count($tableau); $i++) {
|
118 |
florian |
1331 |
if ($tableau[$i]['type']=='liste' || $tableau[$i]['type']=='checkbox') {
|
|
|
1332 |
$requete = 'SELECT bfvl_valeur FROM bazar_fiche_valeur_liste WHERE bfvl_ce_fiche='.$idfiche.
|
|
|
1333 |
' AND bfvl_ce_liste='.$tableau[$i]['nom_bdd'];
|
|
|
1334 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1335 |
if (DB::isError ($resultat)) {
|
|
|
1336 |
die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
1337 |
}
|
|
|
1338 |
$nb=0;$val='';
|
|
|
1339 |
while ($result = $resultat->fetchRow()) {
|
|
|
1340 |
if ($nb>0) $val .= ', ';
|
|
|
1341 |
$val .= $result[0];
|
|
|
1342 |
$nb++;
|
|
|
1343 |
}
|
|
|
1344 |
$valeurs_fiche[$tableau[$i]['type'].$tableau[$i]['nom_bdd']] = $val;
|
|
|
1345 |
}
|
271 |
alexandre_ |
1346 |
elseif ($tableau[$i]['type']=='champs_cache' || $tableau[$i]['type']=='texte' || $tableau[$i]['type']=='textelong' || $tableau[$i]['type']=='listedatedeb' || $tableau[$i]['type']=='listedatefin') {
|
118 |
florian |
1347 |
$valeurs_fiche[$tableau[$i]['nom_bdd']] = stripslashes($ligne[$tableau[$i]['nom_bdd']]);
|
250 |
alexandre_ |
1348 |
} elseif ($tableau[$i]['type']=='carte_google') {
|
|
|
1349 |
$valeurs_fiche['bf_latitude'] = $ligne['bf_latitude'];
|
|
|
1350 |
$valeurs_fiche['bf_longitude'] = $ligne['bf_longitude'];
|
|
|
1351 |
}
|
5 |
florian |
1352 |
}
|
|
|
1353 |
return $valeurs_fiche;
|
|
|
1354 |
}
|
|
|
1355 |
|
79 |
florian |
1356 |
/** function baz_nextId () Renvoie le prochain identifiant numerique libre d'une table
|
5 |
florian |
1357 |
*
|
|
|
1358 |
* @param string Nom de la table
|
|
|
1359 |
* @param string Nom du champs identifiant
|
79 |
florian |
1360 |
* @param mixed Objet DB de PEAR pour la connexion a la base de donnees
|
5 |
florian |
1361 |
*
|
79 |
florian |
1362 |
* return integer Le prochain numero d'identifiant disponible
|
5 |
florian |
1363 |
*/
|
|
|
1364 |
function baz_nextId($table, $colonne_identifiant, $bdd) {
|
|
|
1365 |
$requete = 'SELECT MAX('.$colonne_identifiant.') AS maxi FROM '.$table;
|
|
|
1366 |
$resultat = $bdd->query($requete) ;
|
|
|
1367 |
if (DB::isError($resultat)) {
|
|
|
1368 |
die (__FILE__ . __LINE__ . $resultat->getMessage() . $requete);
|
|
|
1369 |
return $bdd->raiseError($resultat) ;
|
|
|
1370 |
}
|
|
|
1371 |
|
|
|
1372 |
if ($resultat->numRows() > 1) {
|
|
|
1373 |
return $bdd->raiseError('<br />La table '.$table.' a un identifiant non unique<br />') ;
|
|
|
1374 |
}
|
|
|
1375 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_OBJECT) ;
|
|
|
1376 |
return $ligne->maxi + 1 ;
|
|
|
1377 |
}
|
|
|
1378 |
|
152 |
florian |
1379 |
/** function baz_titre_wiki () Renvoie la chaine de caractere sous une forme compatible avec wikini
|
|
|
1380 |
*
|
|
|
1381 |
* @param string mot à transformer (enlever accents, espaces)
|
|
|
1382 |
*
|
|
|
1383 |
* return string mot transformé
|
|
|
1384 |
*/
|
|
|
1385 |
function baz_titre_wiki($nom) {
|
|
|
1386 |
$titre=trim($nom);
|
|
|
1387 |
for ($j = 0; $j < strlen ($titre); $j++) {
|
|
|
1388 |
if (!preg_match ('/[a-zA-Z0-9]/', $titre[$j])) {
|
|
|
1389 |
$titre[$j] = '_' ;
|
|
|
1390 |
}
|
|
|
1391 |
}
|
|
|
1392 |
return $titre;
|
|
|
1393 |
}
|
|
|
1394 |
|
5 |
florian |
1395 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
1396 |
*
|
|
|
1397 |
* $Log: not supported by cvs2svn $
|
316 |
alexandre_ |
1398 |
* Revision 1.69 2007-09-18 07:39:42 alexandre_tb
|
|
|
1399 |
* correction d un bug lors d une insertion
|
|
|
1400 |
*
|
299 |
alexandre_ |
1401 |
* Revision 1.68 2007-08-27 12:31:31 alexandre_tb
|
|
|
1402 |
* mise en place de modele
|
|
|
1403 |
*
|
286 |
alexandre_ |
1404 |
* Revision 1.67 2007-07-04 10:01:30 alexandre_tb
|
|
|
1405 |
* mise en place de divers templates :
|
|
|
1406 |
* - mail pour admin (sujet et corps)
|
|
|
1407 |
* - modele carte_google
|
|
|
1408 |
* ajout de lignes dans bazar_template
|
|
|
1409 |
*
|
271 |
alexandre_ |
1410 |
* Revision 1.66 2007-06-25 12:15:06 alexandre_tb
|
|
|
1411 |
* merge from narmer
|
|
|
1412 |
*
|
263 |
alexandre_ |
1413 |
* Revision 1.65 2007-06-25 08:31:17 alexandre_tb
|
|
|
1414 |
* utilisation de la bibliotheque generale api/formulaire/formulaire.fonct.inc.php a la place de bazar.fonct.formulaire.php
|
|
|
1415 |
*
|
259 |
alexandre_ |
1416 |
* Revision 1.64 2007-06-04 15:25:39 alexandre_tb
|
|
|
1417 |
* ajout de la carto google
|
|
|
1418 |
*
|
250 |
alexandre_ |
1419 |
* Revision 1.63 2007/04/11 08:30:12 neiluj
|
|
|
1420 |
* remise en état du CVS...
|
|
|
1421 |
*
|
225 |
neiluj |
1422 |
* Revision 1.57.2.12 2007/03/16 14:49:24 alexandre_tb
|
|
|
1423 |
* si la date de debut d evenement est superieure a la date de fin alors on met
|
|
|
1424 |
* la meme date dans les deux champs (coherence)
|
|
|
1425 |
*
|
205 |
jp_milcent |
1426 |
* Revision 1.57.2.11 2007/03/07 17:40:57 jp_milcent
|
|
|
1427 |
* Ajout d'id sur les colonnes et gestion par les CSS des styles du tableau des abonnements.
|
|
|
1428 |
*
|
|
|
1429 |
* Revision 1.57.2.10 2007/03/07 17:20:19 jp_milcent
|
|
|
1430 |
* Ajout du nettoyage systématique des URLs.
|
|
|
1431 |
*
|
|
|
1432 |
* Revision 1.57.2.9 2007/03/06 16:23:24 jp_milcent
|
|
|
1433 |
* Nettoyage de l'url pour la gestion des droits.
|
|
|
1434 |
*
|
|
|
1435 |
* Revision 1.57.2.8 2007/03/05 14:33:44 jp_milcent
|
|
|
1436 |
* Suppression de l'appel à Mes_Fiches dans la fonction baz_formulaire
|
|
|
1437 |
*
|
|
|
1438 |
* Revision 1.57.2.7 2007/03/05 10:28:03 alexandre_tb
|
|
|
1439 |
* correction d un commentaire
|
|
|
1440 |
*
|
185 |
jp_milcent |
1441 |
* Revision 1.57.2.6 2007/02/15 13:42:16 jp_milcent
|
|
|
1442 |
* Utilisation de IN à la place du = dans les requêtes traitant les catégories de fiches.
|
|
|
1443 |
* Permet d'utiliser la syntaxe 1,2,3 dans la configuration de categorie_nature.
|
|
|
1444 |
*
|
|
|
1445 |
* Revision 1.57.2.5 2007/02/12 16:16:31 alexandre_tb
|
|
|
1446 |
* suppression du style clear:both dans les attribut du formulaire d identification
|
|
|
1447 |
*
|
|
|
1448 |
* Revision 1.57.2.4 2007/02/01 16:19:30 alexandre_tb
|
|
|
1449 |
* correction erreur de requete sur insertion bazar_fiche
|
|
|
1450 |
*
|
|
|
1451 |
* Revision 1.57.2.3 2007/02/01 16:11:05 alexandre_tb
|
|
|
1452 |
* correction erreur de requete sur insertion bazar_fiche
|
|
|
1453 |
*
|
|
|
1454 |
* Revision 1.57.2.2 2007/01/22 16:05:39 alexandre_tb
|
|
|
1455 |
* insertion de la date du jour dans bf_date_debut_validite_fiche quand il n'y a pas ce champs dans le formulaire (évite le 0000-00-00)
|
|
|
1456 |
*
|
|
|
1457 |
* Revision 1.57.2.1 2006/12/13 13:23:03 alexandre_tb
|
|
|
1458 |
* Remplacement de l appel d une constante par un appel direct. -> warning
|
|
|
1459 |
*
|
172 |
alexandre_ |
1460 |
* Revision 1.58 2006/12/13 13:20:16 alexandre_tb
|
|
|
1461 |
* Remplacement de l appel d une constante par un appel direct. -> warning
|
|
|
1462 |
*
|
166 |
alexandre_ |
1463 |
* Revision 1.57 2006/10/05 08:53:50 florian
|
|
|
1464 |
* amelioration moteur de recherche, correction de bugs
|
|
|
1465 |
*
|
154 |
florian |
1466 |
* Revision 1.56 2006/09/28 15:41:36 alexandre_tb
|
|
|
1467 |
* Le formulaire pour se logguer dans l'action saisir reste sur l'action saisir après
|
|
|
1468 |
*
|
153 |
alexandre_ |
1469 |
* Revision 1.55 2006/09/21 14:19:39 florian
|
|
|
1470 |
* amélioration des fonctions liés au wikini
|
|
|
1471 |
*
|
152 |
florian |
1472 |
* Revision 1.54 2006/09/14 15:11:23 alexandre_tb
|
|
|
1473 |
* suppression temporaire de la gestion des wikinis
|
|
|
1474 |
*
|
148 |
alexandre_ |
1475 |
* Revision 1.53 2006/07/25 13:24:44 florian
|
|
|
1476 |
* correction bug image
|
|
|
1477 |
*
|
144 |
florian |
1478 |
* Revision 1.52 2006/07/25 13:05:00 alexandre_tb
|
|
|
1479 |
* Remplacement d un die par un echo
|
|
|
1480 |
*
|
142 |
alexandre_ |
1481 |
* Revision 1.51 2006/07/18 14:17:32 alexandre_tb
|
|
|
1482 |
* Ajout d'un formulaire d identification
|
|
|
1483 |
*
|
140 |
alexandre_ |
1484 |
* Revision 1.50 2006/06/21 08:37:59 alexandre_tb
|
|
|
1485 |
* Correction de bug, d'un appel constant (....) qui ne fonctionnais plus.
|
|
|
1486 |
*
|
131 |
alexandre_ |
1487 |
* Revision 1.49 2006/06/02 09:29:07 florian
|
|
|
1488 |
* debut d'integration de wikini
|
|
|
1489 |
*
|
129 |
florian |
1490 |
* Revision 1.48 2006/05/19 13:54:11 florian
|
|
|
1491 |
* stabilisation du moteur de recherche, corrections bugs, lien recherche avancee
|
|
|
1492 |
*
|
126 |
florian |
1493 |
* Revision 1.47 2006/04/28 12:46:14 florian
|
|
|
1494 |
* integration des liens vers annuaire
|
|
|
1495 |
*
|
118 |
florian |
1496 |
* Revision 1.46 2006/03/29 13:04:35 alexandre_tb
|
|
|
1497 |
* utilisation de la classe Administrateur_bazar
|
|
|
1498 |
*
|
111 |
alexandre_ |
1499 |
* Revision 1.45 2006/03/24 09:28:02 alexandre_tb
|
126 |
florian |
1500 |
* utilisation de la variable globale $GLOBALS['_BAZAR_']['categorie_nature']
|
111 |
alexandre_ |
1501 |
*
|
109 |
alexandre_ |
1502 |
* Revision 1.44 2006/03/14 17:10:21 florian
|
|
|
1503 |
* ajout des fonctions de syndication, changement du moteur de recherche
|
|
|
1504 |
*
|
107 |
florian |
1505 |
* Revision 1.43 2006/03/02 20:36:52 florian
|
|
|
1506 |
* les entrees du formulaire de saisir ne sont plus dans les constantes mias dans des tables qui gerent le multilinguisme.
|
|
|
1507 |
*
|
105 |
florian |
1508 |
* Revision 1.42 2006/03/01 16:23:22 florian
|
|
|
1509 |
* modifs textes fr et correction bug "undefined index"
|
|
|
1510 |
*
|
104 |
florian |
1511 |
* Revision 1.41 2006/03/01 16:05:51 florian
|
|
|
1512 |
* ajout des fichiers joints
|
|
|
1513 |
*
|
103 |
florian |
1514 |
* Revision 1.40 2006/02/06 09:33:00 alexandre_tb
|
|
|
1515 |
* correction de bug
|
|
|
1516 |
*
|
89 |
alexandre_ |
1517 |
* Revision 1.39 2006/01/30 17:25:38 alexandre_tb
|
|
|
1518 |
* correction de bugs
|
|
|
1519 |
*
|
87 |
alexandre_ |
1520 |
* Revision 1.38 2006/01/30 10:27:04 florian
|
|
|
1521 |
* - ajout des entrées de formulaire fichier, url, et image
|
|
|
1522 |
* - correction bug d'affichage du mode de saisie
|
|
|
1523 |
*
|
86 |
florian |
1524 |
* Revision 1.37 2006/01/24 14:11:11 alexandre_tb
|
|
|
1525 |
* correction de bug sur l'ajout d'une image et d'un fichier
|
|
|
1526 |
*
|
81 |
alexandre_ |
1527 |
* Revision 1.36 2006/01/19 17:42:11 florian
|
|
|
1528 |
* ajout des cases à cocher pré-cochées pour les maj
|
|
|
1529 |
*
|
79 |
florian |
1530 |
* Revision 1.35 2006/01/18 11:06:51 florian
|
|
|
1531 |
* correction erreur saisie date
|
|
|
1532 |
*
|
77 |
florian |
1533 |
* Revision 1.34 2006/01/18 10:53:28 florian
|
|
|
1534 |
* corrections bugs affichage fiche
|
|
|
1535 |
*
|
76 |
florian |
1536 |
* Revision 1.33 2006/01/18 10:07:34 florian
|
|
|
1537 |
* recodage de l'insertion et de la maj des données relatives aux listes et checkbox dans des formulaires
|
|
|
1538 |
*
|
75 |
florian |
1539 |
* Revision 1.32 2006/01/18 10:03:36 florian
|
|
|
1540 |
* recodage de l'insertion et de la maj des données relatives aux listes et checkbox dans des formulaires
|
|
|
1541 |
*
|
74 |
florian |
1542 |
* Revision 1.31 2006/01/17 10:07:08 alexandre_tb
|
|
|
1543 |
* en cours
|
|
|
1544 |
*
|
72 |
alexandre_ |
1545 |
* Revision 1.30 2006/01/16 09:42:57 alexandre_tb
|
|
|
1546 |
* en cours
|
|
|
1547 |
*
|
69 |
alexandre_ |
1548 |
* Revision 1.29 2006/01/13 14:12:51 florian
|
|
|
1549 |
* utilisation des temlates dans la table bazar_nature
|
|
|
1550 |
*
|
68 |
florian |
1551 |
* Revision 1.28 2006/01/05 16:28:24 alexandre_tb
|
|
|
1552 |
* prise en chage des checkbox, reste la mise à jour à gérer
|
|
|
1553 |
*
|
67 |
alexandre_ |
1554 |
* Revision 1.27 2006/01/04 15:30:56 alexandre_tb
|
|
|
1555 |
* mise en forme du code
|
|
|
1556 |
*
|
65 |
alexandre_ |
1557 |
* Revision 1.26 2006/01/03 10:19:31 florian
|
|
|
1558 |
* Mise à jour pour accepter des parametres dans papyrus: faire apparaitre ou non le menu, afficher qu'un type de fiches, définir l'action par défaut...
|
|
|
1559 |
*
|
64 |
florian |
1560 |
* Revision 1.25 2005/12/20 14:49:35 ddelon
|
|
|
1561 |
* Fusion Head vers Livraison
|
|
|
1562 |
*
|
61 |
ddelon |
1563 |
* Revision 1.24 2005/12/16 15:44:40 alexandre_tb
|
|
|
1564 |
* ajout de l'option restreindre dépôt
|
|
|
1565 |
*
|
60 |
alexandre_ |
1566 |
* Revision 1.23 2005/12/01 17:03:34 florian
|
|
|
1567 |
* changement des chemins pour appli Pear
|
|
|
1568 |
*
|
58 |
florian |
1569 |
* Revision 1.22 2005/12/01 16:05:41 florian
|
|
|
1570 |
* changement des chemins pour appli Pear
|
|
|
1571 |
*
|
57 |
florian |
1572 |
* Revision 1.21 2005/12/01 15:31:30 florian
|
|
|
1573 |
* correction bug modifs et saisies
|
|
|
1574 |
*
|
56 |
florian |
1575 |
* Revision 1.20 2005/11/30 13:58:45 florian
|
|
|
1576 |
* ajouts graphisme (logos, boutons), changement structure SQL bazar_fiche
|
|
|
1577 |
*
|
55 |
florian |
1578 |
* Revision 1.19 2005/11/24 16:17:13 florian
|
|
|
1579 |
* corrections bugs, ajout des cases à cocher
|
|
|
1580 |
*
|
54 |
florian |
1581 |
* Revision 1.18 2005/11/18 16:03:23 florian
|
|
|
1582 |
* correction bug html entites
|
|
|
1583 |
*
|
53 |
florian |
1584 |
* Revision 1.17 2005/11/17 18:48:02 florian
|
|
|
1585 |
* corrections bugs + amélioration de l'application d'inscription
|
|
|
1586 |
*
|
52 |
florian |
1587 |
* Revision 1.16 2005/11/07 17:30:36 florian
|
|
|
1588 |
* ajout controle sur les listes pour la saisie
|
|
|
1589 |
*
|
46 |
florian |
1590 |
* Revision 1.15 2005/11/07 17:05:45 florian
|
|
|
1591 |
* amélioration validation conditions de saisie, ajout des règles spécifiques de saisie des formulaires
|
|
|
1592 |
*
|
45 |
florian |
1593 |
* Revision 1.14 2005/11/07 08:48:02 florian
|
|
|
1594 |
* correction pb guillemets pour saisie et modif de fiche
|
|
|
1595 |
*
|
44 |
florian |
1596 |
* Revision 1.13 2005/10/21 16:15:04 florian
|
|
|
1597 |
* mise a jour appropriation
|
|
|
1598 |
*
|
34 |
alexandre_ |
1599 |
* Revision 1.11 2005/10/12 17:20:33 ddelon
|
|
|
1600 |
* Reorganisation calendrier + applette
|
|
|
1601 |
*
|
30 |
ddelon |
1602 |
* Revision 1.10 2005/10/12 15:14:06 florian
|
|
|
1603 |
* amélioration de l'interface de bazar, de manière a simplifier les consultations, et à harmoniser par rapport aux Ressources
|
|
|
1604 |
*
|
24 |
florian |
1605 |
* Revision 1.9 2005/10/10 16:22:52 alexandre_tb
|
|
|
1606 |
* Correction de bug. Lorsqu'on revient en arrière après avoir validé un formulaire.
|
|
|
1607 |
*
|
21 |
alexandre_ |
1608 |
* Revision 1.8 2005/09/30 13:50:07 alexandre_tb
|
|
|
1609 |
* correction bug date parution ressource
|
|
|
1610 |
*
|
13 |
alexandre_ |
1611 |
* Revision 1.7 2005/09/30 13:15:58 ddelon
|
|
|
1612 |
* compatibilité php5
|
|
|
1613 |
*
|
12 |
ddelon |
1614 |
* Revision 1.6 2005/09/30 13:00:05 ddelon
|
|
|
1615 |
* Fiche bazar generique
|
|
|
1616 |
*
|
11 |
ddelon |
1617 |
* Revision 1.5 2005/09/30 12:22:54 florian
|
|
|
1618 |
* Ajouts commentaires pour fiche, modifications graphiques, maj SQL
|
|
|
1619 |
*
|
7 |
florian |
1620 |
* Revision 1.3 2005/07/21 19:03:12 florian
|
|
|
1621 |
* nouveautés bazar: templates fiches, correction de bugs, ...
|
|
|
1622 |
*
|
5 |
florian |
1623 |
* Revision 1.1.1.1 2005/02/17 18:05:11 florian
|
|
|
1624 |
* Import initial de Bazar
|
|
|
1625 |
*
|
|
|
1626 |
* Revision 1.1.1.1 2005/02/17 11:09:50 florian
|
|
|
1627 |
* Import initial
|
|
|
1628 |
*
|
|
|
1629 |
* Revision 1.1.1.1 2005/02/16 18:06:35 florian
|
|
|
1630 |
* import de la nouvelle version
|
|
|
1631 |
*
|
|
|
1632 |
* Revision 1.10 2004/07/08 17:25:25 florian
|
|
|
1633 |
* ajout commentaires + petits debuggages
|
|
|
1634 |
*
|
|
|
1635 |
* Revision 1.8 2004/07/07 14:30:19 florian
|
24 |
florian |
1636 |
* débogage RSS
|
5 |
florian |
1637 |
*
|
|
|
1638 |
* Revision 1.7 2004/07/06 16:22:01 florian
|
24 |
florian |
1639 |
* débogage modification + MAJ flux RSS
|
5 |
florian |
1640 |
*
|
|
|
1641 |
* Revision 1.6 2004/07/06 09:28:26 florian
|
|
|
1642 |
* changement interface de modification
|
|
|
1643 |
*
|
|
|
1644 |
* Revision 1.5 2004/07/05 15:10:23 florian
|
|
|
1645 |
* changement interface de saisie
|
|
|
1646 |
*
|
|
|
1647 |
* Revision 1.4 2004/07/02 14:51:14 florian
|
|
|
1648 |
* ajouts divers pour faire fonctionner l'insertion de fiches
|
|
|
1649 |
*
|
|
|
1650 |
* Revision 1.3 2004/07/01 16:37:42 florian
|
|
|
1651 |
* ajout de fonctions pour les templates
|
|
|
1652 |
*
|
|
|
1653 |
* Revision 1.2 2004/07/01 13:00:13 florian
|
|
|
1654 |
* modif Florian
|
|
|
1655 |
*
|
|
|
1656 |
* Revision 1.1 2004/06/23 09:58:32 alex
|
|
|
1657 |
* version initiale
|
|
|
1658 |
*
|
|
|
1659 |
* Revision 1.1 2004/06/18 09:00:37 alex
|
|
|
1660 |
* version initiale
|
|
|
1661 |
*
|
|
|
1662 |
*
|
|
|
1663 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
1664 |
*/
|
|
|
1665 |
|
153 |
alexandre_ |
1666 |
?>
|