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