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