5 |
florian |
1 |
<?php
|
|
|
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
|
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
4 |
// | PHP version 4.1 |
|
|
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
6 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
|
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
8 |
// | This library is free software; you can redistribute it and/or |
|
|
|
9 |
// | modify it under the terms of the GNU Lesser General Public |
|
|
|
10 |
// | License as published by the Free Software Foundation; either |
|
|
|
11 |
// | version 2.1 of the License, or (at your option) any later version. |
|
|
|
12 |
// | |
|
|
|
13 |
// | This library is distributed in the hope that it will be useful, |
|
|
|
14 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
15 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
16 |
// | Lesser General Public License for more details. |
|
|
|
17 |
// | |
|
|
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
|
|
19 |
// | License along with this library; if not, write to the Free Software |
|
|
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
|
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
142 |
alexandre_ |
22 |
// CVS : $Id: bazar.fonct.php,v 1.52 2006-07-25 13:05:00 alexandre_tb Exp $
|
5 |
florian |
23 |
/**
|
|
|
24 |
*
|
|
|
25 |
* Fonctions du module bazar
|
61 |
ddelon |
26 |
*
|
5 |
florian |
27 |
*
|
|
|
28 |
*@package bazar
|
|
|
29 |
//Auteur original :
|
|
|
30 |
*@author Alexandre Granier <alexandre@tela-botanica.org>
|
|
|
31 |
*@author Florian Schmitt <florian@ecole-et-nature.org>
|
|
|
32 |
//Autres auteurs :
|
|
|
33 |
*@copyright Tela-Botanica 2000-2004
|
142 |
alexandre_ |
34 |
*@version $Revision: 1.52 $ $Date: 2006-07-25 13:05:00 $
|
5 |
florian |
35 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
36 |
*/
|
|
|
37 |
|
|
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
39 |
// | ENTETE du PROGRAMME |
|
|
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
118 |
florian |
41 |
require_once PAP_CHEMIN_API_PEAR.'HTML/QuickForm.php' ;
|
|
|
42 |
require_once PAP_CHEMIN_API_PEAR.'HTML/QuickForm/checkbox.php' ;
|
|
|
43 |
require_once PAP_CHEMIN_API_PEAR.'HTML/QuickForm/textarea.php' ;
|
|
|
44 |
require_once PAP_CHEMIN_API_PEAR.'HTML/Table.php' ;
|
5 |
florian |
45 |
require_once 'bazar.fonct.formulaire.php';
|
|
|
46 |
require_once 'bazar.fonct.rss.php';
|
|
|
47 |
|
|
|
48 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
49 |
// | LISTE de FONCTIONS |
|
|
|
50 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
51 |
|
|
|
52 |
/** niveau_droit() - Retourne le niveau de droit de l'utilisateur
|
|
|
53 |
*
|
|
|
54 |
* @param integer Id de la nature d'offre pour connaitre les droits sur une rubrique
|
24 |
florian |
55 |
* @param integer Id de la personne (par défaut la personne loguée)
|
5 |
florian |
56 |
*
|
|
|
57 |
* @return string Retourne 'redacteur', 'administrateur', 'superadministrateur', ou 'aucun'
|
|
|
58 |
*/
|
|
|
59 |
function niveau_droit($id_nature_offre='0', $personne) {
|
39 |
florian |
60 |
$requete = 'select bd_niveau_droit FROM bazar_droits WHERE bd_id_utilisateur='.$personne.
|
69 |
alexandre_ |
61 |
' AND (bd_id_nature_offre="'.$id_nature_offre.'" OR bd_id_nature_offre=0)';
|
5 |
florian |
62 |
$resultat = $GLOBALS['_BAZAR_']['db']->query ($requete) ;
|
|
|
63 |
if (DB::isError($resultat)) {
|
|
|
64 |
die ("Echec de la requete<br />".$resultat->getMessage()."<br />".$resultat->getDebugInfo()) ;
|
|
|
65 |
}
|
|
|
66 |
if ($resultat->numRows() != 0) {
|
|
|
67 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
68 |
if ($ligne['bd_niveau_droit']==0) return 'superadministrateur';
|
|
|
69 |
if ($ligne['bd_niveau_droit']==1) return 'redacteur';
|
|
|
70 |
if ($ligne['bd_niveau_droit']==2) return 'administrateur';
|
|
|
71 |
}
|
|
|
72 |
}
|
|
|
73 |
else return 'aucun';
|
|
|
74 |
}
|
|
|
75 |
|
|
|
76 |
|
|
|
77 |
/** fiches_a_valider () - Renvoie les annonces restant à valider par un administrateur
|
|
|
78 |
*
|
|
|
79 |
* @return string HTML
|
|
|
80 |
*/
|
|
|
81 |
function fiches_a_valider() {
|
|
|
82 |
// Pour les administrateurs d'une rubrique, on affiche les fiches a valider de cette rubrique
|
|
|
83 |
// On effectue une requete sur le bazar pour voir les fiches a administrer
|
64 |
florian |
84 |
$res= '<h2>'.BAZ_ANNONCES_A_ADMINISTRER.'</h2><br />'."\n";
|
|
|
85 |
$requete = 'SELECT * FROM bazar_fiche, bazar_nature WHERE bf_statut_fiche=0 AND bn_id_nature=bf_ce_nature AND bn_ce_id_menu='.$GLOBALS['_BAZAR_']['categorie_nature'].' ORDER BY bf_date_maj_fiche DESC' ;
|
5 |
florian |
86 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
87 |
if (DB::isError($resultat)) {
|
|
|
88 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
89 |
}
|
|
|
90 |
if ($resultat->numRows() != 0) {
|
|
|
91 |
$tableAttr = array('id' => 'table_bazar') ;
|
|
|
92 |
$table = new HTML_Table($tableAttr) ;
|
|
|
93 |
$entete = array (BAZ_TITREANNONCE ,BAZ_ANNONCEUR, BAZ_TYPEANNONCE, BAZ_PUBLIER, BAZ_SUPPRIMER) ;
|
|
|
94 |
$table->addRow($entete) ;
|
|
|
95 |
$table->setRowType (0, 'th') ;
|
|
|
96 |
|
|
|
97 |
// On affiche une ligne par proposition
|
|
|
98 |
while ($ligne = $resultat->fetchRow (DB_FETCHMODE_ASSOC)) {
|
|
|
99 |
//Requete pour trouver le nom et prénom de l'annonceur
|
69 |
alexandre_ |
100 |
$requetenomprenom = 'SELECT '.BAZ_CHAMPS_PRENOM.', '.BAZ_CHAMPS_NOM.' FROM '.BAZ_ANNUAIRE.
|
|
|
101 |
' WHERE '.BAZ_CHAMPS_ID.'='.$ligne['bf_ce_utilisateur'] ;
|
5 |
florian |
102 |
$resultatnomprenom = $GLOBALS['_BAZAR_']['db']->query ($requetenomprenom) ;
|
|
|
103 |
if (DB::isError($resultatnomprenom)) {
|
69 |
alexandre_ |
104 |
echo ("Echec de la requete<br />".$resultatnomprenom->getMessage()."<br />".$resultatnomprenom->getDebugInfo()) ;
|
5 |
florian |
105 |
}
|
|
|
106 |
while ($lignenomprenom = $resultatnomprenom->fetchRow (DB_FETCHMODE_ASSOC)) {
|
|
|
107 |
$annonceur=$lignenomprenom[BAZ_CHAMPS_PRENOM]." ".$lignenomprenom[BAZ_CHAMPS_NOM];
|
|
|
108 |
}
|
|
|
109 |
$lien_voir=$GLOBALS['_BAZAR_']['url'];
|
|
|
110 |
$lien_voir->addQueryString('action', BAZ_VOIR_FICHE);
|
|
|
111 |
$lien_voir->addQueryString('id_fiche', $ligne['bf_id_fiche']);
|
64 |
florian |
112 |
$lien_voir->addQueryString('typeannonce', $ligne['bn_id_nature']);
|
5 |
florian |
113 |
|
|
|
114 |
$lien_publie_oui=$GLOBALS['_BAZAR_']['url'];
|
|
|
115 |
$lien_publie_oui->addQueryString('action', BAZ_ACTION_PUBLIER);
|
|
|
116 |
$lien_publie_oui->addQueryString('id_fiche', $ligne['bf_id_fiche']);
|
64 |
florian |
117 |
$lien_publie_oui->addQueryString('typeannonce', $ligne['bn_id_nature']);
|
5 |
florian |
118 |
|
|
|
119 |
$lien_publie_non=$GLOBALS['_BAZAR_']['url'];
|
|
|
120 |
$lien_publie_non->addQueryString('action', BAZ_ACTION_PAS_PUBLIER);
|
|
|
121 |
$lien_publie_non->addQueryString('id_fiche', $ligne['bf_id_fiche']);
|
64 |
florian |
122 |
$lien_publie_non->addQueryString('typeannonce', $ligne['bn_id_nature']);
|
5 |
florian |
123 |
|
|
|
124 |
$lien_supprimer=$GLOBALS['_BAZAR_']['url'];
|
|
|
125 |
$lien_supprimer->addQueryString('action', BAZ_ACTION_SUPPRESSION);
|
|
|
126 |
$lien_supprimer->addQueryString('id_fiche', $ligne['bf_id_fiche']);
|
64 |
florian |
127 |
$lien_supprimer->addQueryString('typeannonce', $ligne['bn_id_nature']);
|
5 |
florian |
128 |
|
|
|
129 |
$table->addRow (array(
|
|
|
130 |
'<a href="'.$lien_voir->getURL().'">'.$ligne['bf_titre'].'</a>'."\n", // col 1 : le nom
|
|
|
131 |
$annonceur."\n", // col 2 : annonceur
|
64 |
florian |
132 |
constant($ligne['bn_label_nature'])."\n", // col 3 : type annonce
|
5 |
florian |
133 |
"<a href=\"".$lien_publie_oui->getURL()."\">".BAZ_OUI."</a> / \n".
|
|
|
134 |
"<a href=\"".$lien_publie_non->getURL()."\">".BAZ_NON."</a>", // col 4 : publier ou pas
|
|
|
135 |
"<a href=\"".$lien_supprimer->getURL()."\"".
|
|
|
136 |
" onclick=\"javascript:return confirm('".BAZ_CONFIRMATION_SUPPRESSION."');\">".BAZ_SUPPRIMER."</a>\n")) ; // col 5 : supprimer
|
|
|
137 |
|
|
|
138 |
}
|
|
|
139 |
$table->altRowAttributes(1, array("class" => "ligne_impaire"), array("class" => "ligne_paire"));
|
|
|
140 |
$table->updateColAttributes(1, array("align" => "center"));
|
|
|
141 |
$table->updateColAttributes(2, array("align" => "center"));
|
|
|
142 |
$table->updateColAttributes(3, array("align" => "center"));
|
|
|
143 |
$table->updateColAttributes(4, array("align" => "center"));
|
|
|
144 |
$res .= $table->toHTML() ;
|
|
|
145 |
}
|
|
|
146 |
else {
|
118 |
florian |
147 |
$res .= '<p class="zone_info">'.BAZ_PAS_DE_FICHE_A_VALIDER.'</p>'."\n" ;
|
5 |
florian |
148 |
}
|
|
|
149 |
|
|
|
150 |
return $res;
|
|
|
151 |
}
|
|
|
152 |
|
|
|
153 |
|
|
|
154 |
/** mes_fiches () - Renvoie les fiches bazar d'un utilisateur
|
|
|
155 |
*
|
|
|
156 |
* @return string HTML
|
|
|
157 |
*/
|
|
|
158 |
function mes_fiches() {
|
24 |
florian |
159 |
if ($GLOBALS['AUTH']->getAuth()) {
|
64 |
florian |
160 |
$res= '<h2>'.BAZ_VOS_ANNONCES.'</h2><br />'."\n";
|
67 |
alexandre_ |
161 |
// requete pour voir si l'utilisateur a des fiches a son nom, classees par date de MAJ et nature d'annonce
|
24 |
florian |
162 |
$requete = 'SELECT * FROM bazar_fiche, bazar_nature WHERE bf_ce_utilisateur='. $GLOBALS['id_user'].
|
64 |
florian |
163 |
' AND bn_id_nature=bf_ce_nature AND bn_ce_id_menu='.$GLOBALS['_BAZAR_']['categorie_nature'].' ORDER BY bf_date_maj_fiche DESC,bf_ce_nature ASC';
|
68 |
florian |
164 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
24 |
florian |
165 |
if (DB::isError($resultat)) {
|
|
|
166 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
167 |
}
|
|
|
168 |
if ($resultat->numRows() != 0) {
|
|
|
169 |
$tableAttr = array('id' => 'table_bazar') ;
|
|
|
170 |
$table = new HTML_Table($tableAttr) ;
|
|
|
171 |
$entete = array (BAZ_TITREANNONCE , BAZ_TYPEANNONCE, BAZ_ETATPUBLICATION, BAZ_MODIFIER, BAZ_SUPPRIMER) ;
|
|
|
172 |
$table->addRow($entete) ;
|
|
|
173 |
$table->setRowType (0, "th") ;
|
|
|
174 |
|
5 |
florian |
175 |
// On affiche une ligne par proposition
|
|
|
176 |
while ($ligne = $resultat->fetchRow (DB_FETCHMODE_ASSOC)) {
|
|
|
177 |
if ($ligne['bf_statut_fiche']==1) $publiee=BAZ_PUBLIEE;
|
|
|
178 |
elseif ($ligne['bf_statut_fiche']==0) $publiee=BAZ_ENCOURSDEVALIDATION;
|
|
|
179 |
else $publiee=BAZ_REJETEE;
|
|
|
180 |
|
|
|
181 |
$lien_voir=$GLOBALS['_BAZAR_']['url'];
|
|
|
182 |
$lien_voir->addQueryString('action', BAZ_VOIR_FICHE);
|
|
|
183 |
$lien_voir->addQueryString('id_fiche', $ligne['bf_id_fiche']);
|
64 |
florian |
184 |
$lien_voir->addQueryString('typeannonce', $ligne['bn_id_nature']);
|
12 |
ddelon |
185 |
$lien_voir_url=$lien_voir->getURL();
|
5 |
florian |
186 |
|
|
|
187 |
$lien_modifier=$GLOBALS['_BAZAR_']['url'];
|
|
|
188 |
$lien_modifier->addQueryString('action', BAZ_ACTION_MODIFIER);
|
|
|
189 |
$lien_modifier->addQueryString('id_fiche', $ligne['bf_id_fiche']);
|
64 |
florian |
190 |
$lien_modifier->addQueryString('typeannonce', $ligne['bn_id_nature']);
|
12 |
ddelon |
191 |
$lien_modifier_url=$lien_modifier->getURL();
|
5 |
florian |
192 |
|
|
|
193 |
$lien_supprimer=$GLOBALS['_BAZAR_']['url'];
|
|
|
194 |
$lien_supprimer->addQueryString('action', BAZ_ACTION_SUPPRESSION);
|
|
|
195 |
$lien_supprimer->addQueryString('id_fiche', $ligne['bf_id_fiche']);
|
64 |
florian |
196 |
$lien_supprimer->addQueryString('typeannonce', $ligne['bn_id_nature']);
|
12 |
ddelon |
197 |
$lien_supprimer_url=$lien_supprimer->getURL();
|
5 |
florian |
198 |
|
|
|
199 |
$table->addRow (array(
|
89 |
alexandre_ |
200 |
'<a href="'.$lien_voir_url.'">'.$ligne['bf_titre'].'</a>'."\n", // col 1 : le nom
|
105 |
florian |
201 |
$ligne['bn_label_nature']."\n", // col 2: type annonce
|
5 |
florian |
202 |
$publiee."\n", // col 3 : publiee ou non
|
12 |
ddelon |
203 |
'<a href="'.$lien_modifier_url.'">'.BAZ_MODIFIER.'</a>'."\n", // col 4 : modifier
|
89 |
alexandre_ |
204 |
'<a href="'.$lien_supprimer_url.'" onclick="javascript:return '.
|
|
|
205 |
'confirm(\''.BAZ_CONFIRMATION_SUPPRESSION.'\');" >'.BAZ_SUPPRIMER.'</a>'."\n")) ; // col 5 : supprimer
|
5 |
florian |
206 |
}
|
|
|
207 |
$table->altRowAttributes(1, array("class" => "ligne_impaire"), array("class" => "ligne_paire"));
|
|
|
208 |
$table->updateColAttributes(1, array("align" => "center"));
|
|
|
209 |
$table->updateColAttributes(2, array("align" => "center"));
|
|
|
210 |
$table->updateColAttributes(3, array("align" => "center"));
|
|
|
211 |
$table->updateColAttributes(4, array("align" => "center"));
|
|
|
212 |
$res .= $table->toHTML() ;
|
24 |
florian |
213 |
}
|
|
|
214 |
else {
|
118 |
florian |
215 |
$res .= '<p class="zone_info">'.BAZ_PAS_DE_FICHE.'</p>'."\n" ;
|
24 |
florian |
216 |
}
|
5 |
florian |
217 |
}
|
64 |
florian |
218 |
else $res=BAZ_IDENTIFIEZ_VOUS_POUR_SAISIR;
|
5 |
florian |
219 |
return $res;
|
|
|
220 |
}
|
|
|
221 |
|
68 |
florian |
222 |
/** baz_gestion_droits() interface de gestion des droits
|
|
|
223 |
*
|
|
|
224 |
* return string le code HTML
|
|
|
225 |
*/
|
|
|
226 |
function baz_gestion_droits() {
|
|
|
227 |
$lien_formulaire=$GLOBALS['_BAZAR_']['url'];
|
|
|
228 |
$lien_formulaire->addQueryString('action', BAZ_GERER_DROITS);
|
5 |
florian |
229 |
|
68 |
florian |
230 |
//contruction du squelette du formulaire
|
|
|
231 |
$formtemplate = new HTML_QuickForm('formulaire', 'post', preg_replace ('/&/', '&', $lien_formulaire->getURL()) );
|
|
|
232 |
$squelette =& $formtemplate->defaultRenderer();
|
|
|
233 |
$squelette->setFormTemplate("\n".'<form {attributes}>'."\n".'<table style="border:0;">'."\n".'{content}'."\n".'</table>'."\n".'</form>'."\n");
|
|
|
234 |
$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".
|
|
|
235 |
'<!-- BEGIN required --><span class="symbole_obligatoire">*</span><!-- END required -->'."\n".
|
|
|
236 |
'<!-- BEGIN error --><span class="erreur">{error}</span><!-- END error -->'."\n".
|
|
|
237 |
'</td>'."\n".'</tr>'."\n");
|
|
|
238 |
$squelette->setElementTemplate( '<tr>'."\n".'<td colspan="2" class="liste_a_cocher"><strong>{label} {element}</strong>'."\n".
|
|
|
239 |
'<!-- BEGIN required --><span class="symbole_obligatoire"> *</span><!-- END required -->'."\n".'</td>'."\n".'</tr>'."\n", 'accept_condition');
|
|
|
240 |
$squelette->setElementTemplate( '<tr><td colspan="2" class="bouton">{label}{element}</td></tr>'."\n", 'valider');
|
|
|
241 |
$squelette->setRequiredNoteTemplate("\n".'<tr>'."\n".'<td colspan="2" class="symbole_obligatoire">* {requiredNote}</td></tr>'."\n");
|
|
|
242 |
//Traduction de champs requis
|
|
|
243 |
$formtemplate->setRequiredNote(BAZ_CHAMPS_REQUIS) ;
|
|
|
244 |
$formtemplate->setJsWarnings(BAZ_ERREUR_SAISIE,BAZ_VEUILLEZ_CORRIGER);
|
|
|
245 |
//Initialisation de la variable personne
|
|
|
246 |
if ( isset($_POST['personnes']) ) {
|
|
|
247 |
$personne=$_POST['personnes'];
|
|
|
248 |
}
|
|
|
249 |
else $personne=0;
|
|
|
250 |
|
|
|
251 |
//Cas ou les droits ont etes changes
|
|
|
252 |
if (isset($_GET['pers'])) {
|
|
|
253 |
$personne=$_GET['pers'];
|
|
|
254 |
//CAS DES DROITS POUR UN TYPE D'ANNONCE: On efface tous les droits de la personne pour ce type d'annonce
|
|
|
255 |
if (isset($_GET['idtypeannonce'])) {
|
|
|
256 |
$requete = 'DELETE FROM bazar_droits WHERE bd_id_utilisateur='.$_GET['pers'].
|
|
|
257 |
' AND bd_id_nature_offre='.$_GET['idtypeannonce'];
|
|
|
258 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
259 |
if (DB::isError($resultat)) {
|
|
|
260 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
261 |
}
|
|
|
262 |
}
|
|
|
263 |
//CAS DU SUPER ADMIN: On efface tous les droits de la personne en general
|
|
|
264 |
else {
|
|
|
265 |
$requete = 'DELETE FROM bazar_droits WHERE bd_id_utilisateur='.$_GET['pers'];
|
|
|
266 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
267 |
if (DB::isError($resultat)) {
|
|
|
268 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
269 |
}
|
|
|
270 |
}
|
|
|
271 |
if ($_GET['droits']=='superadmin') {
|
|
|
272 |
$requete = 'INSERT INTO bazar_droits VALUES ('.$_GET['pers'].',0,0)';
|
|
|
273 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
274 |
if (DB::isError($resultat)) {
|
|
|
275 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
276 |
}
|
|
|
277 |
}
|
|
|
278 |
elseif ($_GET['droits']=='redacteur') {
|
|
|
279 |
$requete = 'INSERT INTO bazar_droits VALUES ('.$_GET['pers'].','.$_GET['idtypeannonce'].',1)';
|
|
|
280 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
281 |
if (DB::isError($resultat)) {
|
|
|
282 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
283 |
}
|
|
|
284 |
}
|
|
|
285 |
elseif ($_GET['droits']=='admin') {
|
|
|
286 |
$requete = 'INSERT INTO bazar_droits VALUES ('.$_GET['pers'].','.$_GET['idtypeannonce'].',2)';
|
|
|
287 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
288 |
if (DB::isError($resultat)) {
|
|
|
289 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
290 |
}
|
|
|
291 |
}
|
|
|
292 |
}
|
|
|
293 |
|
|
|
294 |
//requete pour obtenir l'id, le nom et prenom des personnes inscrites a l'annuaire sauf soi meme
|
|
|
295 |
$requete = 'SELECT '.BAZ_CHAMPS_ID.', '.BAZ_CHAMPS_NOM.', '.BAZ_CHAMPS_PRENOM.' FROM '.BAZ_ANNUAIRE.
|
|
|
296 |
' WHERE '.BAZ_CHAMPS_ID."!=".$GLOBALS['id_user'].' ORDER BY '.BAZ_CHAMPS_NOM.' ASC';
|
|
|
297 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
298 |
if (DB::isError($resultat)) {
|
69 |
alexandre_ |
299 |
echo ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
68 |
florian |
300 |
}
|
|
|
301 |
$res='<h2>'.BAZ_GESTION_DES_DROITS.'</h2><br />'."\n";
|
|
|
302 |
$res.=BAZ_DESCRIPTION_GESTION_DES_DROITS.'<br /><br />'."\n";
|
|
|
303 |
$personnes_select[0]=BAZ_SELECTION;
|
|
|
304 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
305 |
$personnes_select[$ligne[BAZ_CHAMPS_ID]] = $ligne[BAZ_CHAMPS_NOM]." ".$ligne[BAZ_CHAMPS_PRENOM] ;
|
|
|
306 |
}
|
|
|
307 |
$java=array ('style'=>'width:250px;','onchange'=>'this.form.submit();');
|
|
|
308 |
$formtemplate->addElement ('select', 'personnes', BAZ_LABEL_CHOIX_PERSONNE, $personnes_select, $java) ;
|
|
|
309 |
$defauts=array ('personnes'=>$personne);
|
|
|
310 |
$formtemplate->setDefaults($defauts);
|
|
|
311 |
$res.= $formtemplate->toHTML().'<br />'."\n" ;
|
109 |
alexandre_ |
312 |
|
68 |
florian |
313 |
if ($personne!=0) {
|
|
|
314 |
//cas du super utilisateur
|
111 |
alexandre_ |
315 |
$utilisateur = new Utilisateur_bazar($personne) ;
|
|
|
316 |
if ($utilisateur->isSuperAdmin()) {
|
68 |
florian |
317 |
$res.= '<br />'.BAZ_EST_SUPERADMINISTRATEUR.'<br /><br />'."\n";
|
|
|
318 |
$lien_enlever_superadmin=$GLOBALS['_BAZAR_']['url'];
|
|
|
319 |
$lien_enlever_superadmin->addQueryString('action', BAZ_GERER_DROITS);
|
|
|
320 |
$lien_enlever_superadmin->addQueryString('pers', $personne);
|
|
|
321 |
$lien_enlever_superadmin->addQueryString('droits', 'aucun');
|
|
|
322 |
$res.= '<a href='.$lien_enlever_superadmin->getURL().'>'.BAZ_CHANGER_SUPERADMINISTRATEUR.'</a><br />'."\n";
|
|
|
323 |
}
|
|
|
324 |
else {
|
|
|
325 |
$lien_passer_superadmin=$GLOBALS['_BAZAR_']['url'];
|
|
|
326 |
$lien_passer_superadmin->addQueryString('action', BAZ_GERER_DROITS);
|
|
|
327 |
$lien_passer_superadmin->addQueryString('pers', $personne);
|
|
|
328 |
$lien_passer_superadmin->addQueryString('droits', 'superadmin');
|
|
|
329 |
$res.= '<a href='.$lien_passer_superadmin->getURL().'>'.BAZ_PASSER_SUPERADMINISTRATEUR.'</a><br />'."\n";
|
|
|
330 |
|
|
|
331 |
//on cherche les differentes rubriques d'annonces
|
126 |
florian |
332 |
$requete = 'SELECT bn_id_nature, bn_label_nature, bn_image_titre FROM bazar_nature';
|
68 |
florian |
333 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
334 |
if (DB::isError($resultat)) {
|
|
|
335 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
336 |
}
|
|
|
337 |
$res.='<br /><b>'.BAZ_DROITS_PAR_TYPE.'</b><br /><br />';
|
|
|
338 |
|
|
|
339 |
$table = new HTML_Table(array ('width' => '100%', 'class' => 'table_bazar')) ;
|
|
|
340 |
$table->addRow(array ('<strong>'.BAZ_TYPE_ANNONCES.'</strong>',
|
|
|
341 |
'<strong>'.BAZ_DROITS_ACTUELS.'</strong>',
|
|
|
342 |
'<strong>'.BAZ_PASSER_EN.'</strong>',
|
|
|
343 |
'<strong>'.BAZ_OU_PASSER_EN.'</strong>')) ;
|
|
|
344 |
$table->setRowType (0, 'th') ;
|
|
|
345 |
|
|
|
346 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
347 |
$droits=niveau_droit($ligne['bn_id_nature'],$personne);
|
|
|
348 |
|
|
|
349 |
$lien_aucun_droit=$GLOBALS['_BAZAR_']['url'];
|
|
|
350 |
$lien_aucun_droit->addQueryString('action', BAZ_GERER_DROITS);
|
|
|
351 |
$lien_aucun_droit->addQueryString('pers', $personne);
|
|
|
352 |
$lien_aucun_droit->addQueryString('droits', 'aucun');
|
|
|
353 |
$lien_aucun_droit->addQueryString('idtypeannonce', $ligne["bn_id_nature"]);
|
|
|
354 |
|
|
|
355 |
$lien_passer_redacteur=$GLOBALS['_BAZAR_']['url'];
|
|
|
356 |
$lien_passer_redacteur->addQueryString('action', BAZ_GERER_DROITS);
|
|
|
357 |
$lien_passer_redacteur->addQueryString('pers', $personne);
|
|
|
358 |
$lien_passer_redacteur->addQueryString('droits', 'redacteur');
|
|
|
359 |
$lien_passer_redacteur->addQueryString('idtypeannonce', $ligne["bn_id_nature"]);
|
|
|
360 |
|
|
|
361 |
$lien_passer_admin=$GLOBALS['_BAZAR_']['url'];
|
|
|
362 |
$lien_passer_admin->addQueryString('action', BAZ_GERER_DROITS);
|
|
|
363 |
$lien_passer_admin->addQueryString('pers', $personne);
|
|
|
364 |
$lien_passer_admin->addQueryString('droits', 'admin');
|
|
|
365 |
$lien_passer_admin->addQueryString('idtypeannonce', $ligne["bn_id_nature"]);
|
111 |
alexandre_ |
366 |
if (isset($ligne['bn_image_titre'])) {
|
|
|
367 |
$titre=' <img src="client/bazar/images/'.$ligne['bn_image_titre'].'" alt="'.$ligne['bn_label_nature'].'" />'."\n";
|
|
|
368 |
} else {
|
|
|
369 |
$titre='<strong> '.$ligne['bn_label_nature'].'</strong>'."\n";
|
|
|
370 |
}
|
|
|
371 |
if ($utilisateur->isAdmin($ligne['bn_id_nature'])) {
|
68 |
florian |
372 |
$table->addRow(array($titre,
|
111 |
alexandre_ |
373 |
BAZ_DROIT_ADMIN,
|
|
|
374 |
'<a href='.$lien_aucun_droit->getURL().'>'.BAZ_AUCUN_DROIT.'</a>',
|
|
|
375 |
'<a href='.$lien_passer_redacteur->getURL().'>'.BAZ_DROIT_REDACTEUR.'</a>'));
|
68 |
florian |
376 |
}
|
111 |
alexandre_ |
377 |
elseif ($utilisateur->isRedacteur($ligne['bn_id_nature'])) {
|
68 |
florian |
378 |
$table->addRow(array($titre,
|
|
|
379 |
BAZ_DROIT_REDACTEUR,
|
|
|
380 |
'<a href='.$lien_aucun_droit->getURL().'>'.BAZ_AUCUN_DROIT.'</a>',
|
|
|
381 |
'<a href='.$lien_passer_admin->getURL().'>'.BAZ_DROIT_ADMIN.'</a>'));
|
|
|
382 |
}
|
|
|
383 |
else {
|
|
|
384 |
$table->addRow(array($titre,
|
111 |
alexandre_ |
385 |
BAZ_AUCUN_DROIT,
|
|
|
386 |
'<a href='.$lien_passer_redacteur->getURL().'>'.BAZ_DROIT_REDACTEUR.'</a>',
|
|
|
387 |
'<a href='.$lien_passer_admin->getURL().'>'.BAZ_DROIT_ADMIN.'</a>'));
|
|
|
388 |
|
68 |
florian |
389 |
}
|
|
|
390 |
}
|
|
|
391 |
$table->altRowAttributes(1, array('class' => 'ligne_impaire'), array('class' => 'ligne_paire'));
|
|
|
392 |
$table->updateColAttributes(0, array('align' => 'left'));
|
|
|
393 |
$table->updateColAttributes(1, array('align' => 'left'));
|
|
|
394 |
$table->updateColAttributes(2, array('align' => 'left'));
|
|
|
395 |
$table->updateColAttributes(3, array('align' => 'left'));
|
|
|
396 |
$res.=$table->toHTML() ;
|
|
|
397 |
}
|
|
|
398 |
}
|
|
|
399 |
return $res;
|
|
|
400 |
}
|
|
|
401 |
|
5 |
florian |
402 |
/** baz_formulaire() - Renvoie le menu pour les saisies et modification des annonces
|
|
|
403 |
*
|
67 |
alexandre_ |
404 |
* @param string choix du formulaire a afficher (soit formulaire personnalise de
|
|
|
405 |
* l'annonce, soit choix du type d'annonce)
|
5 |
florian |
406 |
*
|
|
|
407 |
* @return string HTML
|
|
|
408 |
*/
|
68 |
florian |
409 |
function baz_formulaire($mode) {
|
118 |
florian |
410 |
$res = '';
|
24 |
florian |
411 |
if ($GLOBALS['AUTH']->getAuth()) {
|
56 |
florian |
412 |
$lien_formulaire=$GLOBALS['_BAZAR_']['url'];
|
|
|
413 |
|
|
|
414 |
//Definir le lien du formulaire en fonction du mode de formulaire choisi
|
89 |
alexandre_ |
415 |
if ($mode == BAZ_DEPOSER_ANNONCE) {
|
|
|
416 |
$lien_formulaire->addQueryString('action', BAZ_ACTION_NOUVEAU);
|
109 |
alexandre_ |
417 |
if (isset($GLOBALS['_BAZAR_']['id_typeannonce']) && $GLOBALS['_BAZAR_']['id_typeannonce'] != 'toutes') {
|
|
|
418 |
$mode = BAZ_ACTION_NOUVEAU ;
|
|
|
419 |
}
|
89 |
alexandre_ |
420 |
}
|
56 |
florian |
421 |
if ($mode == BAZ_ACTION_NOUVEAU) {
|
68 |
florian |
422 |
if ((!isset($_POST['accept_condition']))and($GLOBALS['_BAZAR_']['condition']!=NULL)) {
|
56 |
florian |
423 |
$lien_formulaire->addQueryString('action', BAZ_ACTION_NOUVEAU);
|
|
|
424 |
} else {
|
|
|
425 |
$lien_formulaire->addQueryString('action', BAZ_ACTION_NOUVEAU_V);
|
|
|
426 |
}
|
5 |
florian |
427 |
}
|
56 |
florian |
428 |
if ($mode == BAZ_ACTION_MODIFIER) {
|
68 |
florian |
429 |
if (!isset($_POST['accept_condition'])and($GLOBALS['_BAZAR_']['condition']!=NULL)) {
|
56 |
florian |
430 |
$lien_formulaire->addQueryString('action', BAZ_ACTION_MODIFIER);
|
|
|
431 |
} else {
|
|
|
432 |
$lien_formulaire->addQueryString('action', BAZ_ACTION_MODIFIER_V);
|
|
|
433 |
}
|
|
|
434 |
$lien_formulaire->addQueryString('id_fiche', $GLOBALS['_BAZAR_']['id_fiche']);
|
5 |
florian |
435 |
}
|
56 |
florian |
436 |
if ($mode == BAZ_ACTION_MODIFIER_V) {
|
|
|
437 |
$lien_formulaire->addQueryString('action', BAZ_ACTION_MODIFIER_V);
|
|
|
438 |
$lien_formulaire->addQueryString('id_fiche', $GLOBALS['_BAZAR_']['id_fiche']);
|
54 |
florian |
439 |
}
|
5 |
florian |
440 |
|
56 |
florian |
441 |
//contruction du squelette du formulaire
|
|
|
442 |
$formtemplate = new HTML_QuickForm('formulaire', 'post', preg_replace ('/&/', '&', $lien_formulaire->getURL()) );
|
|
|
443 |
$squelette =& $formtemplate->defaultRenderer();
|
118 |
florian |
444 |
$squelette->setFormTemplate("\n".'<form {attributes}>'."\n".'<table style="border:0;width:100%;">'."\n".'{content}'."\n".'</table>'."\n".'</form>'."\n");
|
126 |
florian |
445 |
$squelette->setElementTemplate( '<tr>'."\n".'<td style="font-size:12px;width:120px;text-align:right;">'."\n".'{label}'.
|
118 |
florian |
446 |
'<!-- BEGIN required --><span class="symbole_obligatoire"> *</span><!-- END required -->'."\n".
|
|
|
447 |
' :</td>'."\n".'<td style="text-align:left;padding:5px;"> '."\n".'{element}'."\n".
|
54 |
florian |
448 |
'<!-- BEGIN error --><span class="erreur">{error}</span><!-- END error -->'."\n".
|
68 |
florian |
449 |
'</td>'."\n".'</tr>'."\n");
|
89 |
alexandre_ |
450 |
$squelette->setElementTemplate( '<tr>'."\n".'<td colspan="2" class="liste_a_cocher"><strong>{label} {element}</strong>'."\n".
|
68 |
florian |
451 |
'<!-- BEGIN required --><span class="symbole_obligatoire"> *</span><!-- END required -->'."\n".'</td>'."\n".'</tr>'."\n", 'accept_condition');
|
89 |
alexandre_ |
452 |
$squelette->setElementTemplate( '<tr><td colspan="2" class="bouton">{label}{element}</td></tr>'."\n", 'valider');
|
118 |
florian |
453 |
|
89 |
alexandre_ |
454 |
$squelette->setRequiredNoteTemplate("\n".'<tr>'."\n".'<td colspan="2" class="symbole_obligatoire">* {requiredNote}</td></tr>'."\n");
|
56 |
florian |
455 |
//Traduction de champs requis
|
|
|
456 |
$formtemplate->setRequiredNote(BAZ_CHAMPS_REQUIS) ;
|
|
|
457 |
$formtemplate->setJsWarnings(BAZ_ERREUR_SAISIE,BAZ_VEUILLEZ_CORRIGER);
|
46 |
florian |
458 |
|
56 |
florian |
459 |
//------------------------------------------------------------------------------------------------
|
|
|
460 |
//AFFICHAGE DU FORMULAIRE GENERAL DE CHOIX DU TYPE D'ANNONCE
|
|
|
461 |
//------------------------------------------------------------------------------------------------
|
|
|
462 |
if ($mode == BAZ_DEPOSER_ANNONCE) {
|
118 |
florian |
463 |
$res = '';
|
56 |
florian |
464 |
//requete pour obtenir le nom et la description des types d'annonce
|
118 |
florian |
465 |
$requete = 'SELECT * FROM bazar_nature WHERE bn_ce_id_menu='.$GLOBALS['_BAZAR_']['categorie_nature'].' ORDER BY bn_label_nature ASC';
|
56 |
florian |
466 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
467 |
if (DB::isError($resultat)) {
|
|
|
468 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
469 |
}
|
68 |
florian |
470 |
$res.='<h2>'.BAZ_DEPOSE_UNE_NOUVELLE_ANNONCE.'</h2>'."\n";
|
118 |
florian |
471 |
if ($resultat->numRows()==1) {
|
|
|
472 |
$ligne = $resultat->fetchRow (DB_FETCHMODE_ASSOC);
|
|
|
473 |
$GLOBALS['_BAZAR_']['id_typeannonce']=$ligne['bn_id_nature'];
|
|
|
474 |
$GLOBALS['_BAZAR_']['typeannonce']=$ligne['bn_label_nature'];
|
|
|
475 |
$GLOBALS['_BAZAR_']['condition']=$ligne['bn_condition'];
|
|
|
476 |
$GLOBALS['_BAZAR_']['template']=$ligne['bn_template'];
|
|
|
477 |
$GLOBALS['_BAZAR_']['commentaire']=$ligne['bn_commentaire'];
|
|
|
478 |
$GLOBALS['_BAZAR_']['appropriation']=$ligne['bn_appropriation'];
|
|
|
479 |
$GLOBALS['_BAZAR_']['image_titre']=$ligne['bn_image_titre'];
|
|
|
480 |
$GLOBALS['_BAZAR_']['image_logo']=$ligne['bn_image_logo'];
|
140 |
alexandre_ |
481 |
$mode = BAZ_ACTION_NOUVEAU;
|
|
|
482 |
$lien_formulaire->addQueryString('action', BAZ_ACTION_NOUVEAU_V);
|
|
|
483 |
|
118 |
florian |
484 |
} else {
|
|
|
485 |
$res.='<br />'.BAZ_CHOIX_TYPEANNONCE.'<br /><br />'."\n";
|
|
|
486 |
while ($ligne = $resultat->fetchRow (DB_FETCHMODE_ASSOC)) {
|
|
|
487 |
$droitspers=niveau_droit($ligne["bn_id_nature"],$GLOBALS["id_user"]);
|
|
|
488 |
if (($droitspers=='redacteur') or ($droitspers=='administrateur')
|
|
|
489 |
or ($droitspers=='superadministrateur' or !BAZ_RESTREINDRE_DEPOT)) {
|
|
|
490 |
if ($ligne['bn_image_titre']!='') {
|
|
|
491 |
$titre=' <img src="client/bazar/images/'.$ligne['bn_image_titre'].'" alt="'.
|
131 |
alexandre_ |
492 |
$ligne['bn_label_nature'].'" />'.'<br />'."\n";
|
118 |
florian |
493 |
} else {
|
|
|
494 |
$titre='<h3>'.$ligne['bn_label_nature'].' : </h3>'."\n";
|
|
|
495 |
}
|
|
|
496 |
$formtemplate->addElement('radio', 'typeannonce', '',
|
|
|
497 |
$titre.$ligne['bn_description'].'<br /><br />'."\n",
|
|
|
498 |
$ligne['bn_id_nature'], array("id" => 'select'.$ligne['bn_id_nature'],
|
|
|
499 |
"style" => 'float:left;'));
|
|
|
500 |
}
|
|
|
501 |
}
|
|
|
502 |
$squelette->setElementTemplate( '<div class="listechoix">'."\n".'{element}'."\n".'</div>'."\n");
|
|
|
503 |
|
|
|
504 |
//Mettre les annonces en choix par defaut
|
|
|
505 |
$formtemplate->setdefaults(array('typeannonce'=>'1'));
|
|
|
506 |
|
|
|
507 |
//Bouton de validation du formulaire
|
|
|
508 |
$formtemplate->addElement('submit', 'valider', BAZ_VALIDER);
|
|
|
509 |
|
|
|
510 |
//Affichage a l'ecran
|
|
|
511 |
$res.= $formtemplate->toHTML()."\n".'<br />'."\n".mes_fiches(); ;
|
5 |
florian |
512 |
}
|
|
|
513 |
}
|
|
|
514 |
|
56 |
florian |
515 |
//------------------------------------------------------------------------------------------------
|
|
|
516 |
//AFFICHAGE DU FORMULAIRE CORRESPONDANT AU TYPE DE L'ANNONCE CHOISI PAR L'UTILISATEUR
|
|
|
517 |
//------------------------------------------------------------------------------------------------
|
|
|
518 |
if ($mode == BAZ_ACTION_NOUVEAU) {
|
89 |
alexandre_ |
519 |
unset ($_SESSION['formulaire_annonce_valide']) ;
|
140 |
alexandre_ |
520 |
$lien_formulaire->addQueryString('action', BAZ_ACTION_NOUVEAU_V);
|
|
|
521 |
$formtemplate->updateAttributes(array('action' => str_replace('&', '&', $lien_formulaire->getURL())));
|
89 |
alexandre_ |
522 |
$res = baz_afficher_formulaire_annonce('insertion',$formtemplate);
|
5 |
florian |
523 |
}
|
|
|
524 |
|
56 |
florian |
525 |
//------------------------------------------------------------------------------------------------
|
|
|
526 |
//CAS DE LA MODIFICATION D'UNE ANNONCE (FORMULAIRE DE MODIFICATION)
|
|
|
527 |
//------------------------------------------------------------------------------------------------
|
|
|
528 |
if ($mode == BAZ_ACTION_MODIFIER) {
|
|
|
529 |
$res=baz_afficher_formulaire_annonce('modification',$formtemplate);
|
5 |
florian |
530 |
}
|
|
|
531 |
|
56 |
florian |
532 |
//------------------------------------------------------------------------------------------------
|
|
|
533 |
//CAS DE L'INSCRIPTION D'UNE ANNONCE
|
|
|
534 |
//------------------------------------------------------------------------------------------------
|
68 |
florian |
535 |
if ($mode == BAZ_ACTION_NOUVEAU_V) {
|
56 |
florian |
536 |
if ($formtemplate->validate() && !isset($_SESSION['formulaire_annonce_valide'])) {
|
|
|
537 |
$formtemplate->process('baz_insertion', false) ;
|
|
|
538 |
$_SESSION['formulaire_annonce_valide'] = 1;
|
|
|
539 |
return;
|
|
|
540 |
}
|
|
|
541 |
}
|
5 |
florian |
542 |
|
56 |
florian |
543 |
//------------------------------------------------------------------------------------------------
|
|
|
544 |
//CAS DE LA MODIFICATION D'UNE ANNONCE (VALIDATION ET MAJ)
|
|
|
545 |
//------------------------------------------------------------------------------------------------
|
|
|
546 |
if ($mode == BAZ_ACTION_MODIFIER_V) {
|
|
|
547 |
if ($formtemplate->validate()) {
|
|
|
548 |
$formtemplate->process('baz_mise_a_jour', false) ;
|
|
|
549 |
return ;
|
5 |
florian |
550 |
}
|
56 |
florian |
551 |
}
|
24 |
florian |
552 |
}
|
118 |
florian |
553 |
else {
|
|
|
554 |
$res .= '<h2>'.BAZ_DEPOSE_UNE_NOUVELLE_ANNONCE.'</h2><br />'."\n";
|
|
|
555 |
$res .= '<p class="zone_info">'.BAZ_IDENTIFIEZ_VOUS_POUR_SAISIR.'</p>'."\n" ;
|
140 |
alexandre_ |
556 |
$res .= '<form id="form_connexion" class="form_identification" action="' ;
|
|
|
557 |
$res .= $GLOBALS['_BAZAR_']['url']->getURL();
|
|
|
558 |
$res .= '" method="post">
|
|
|
559 |
<fieldset>
|
|
|
560 |
<legend>Identifiez vous</legend>
|
|
|
561 |
<label for="username">Courriel : </label>
|
|
|
562 |
<input type="text" id="username" name="username" maxlength="80" tabindex="1" value="courriel" />
|
|
|
563 |
<label for="password">Mot de passe : </label>
|
|
|
564 |
<input type="password" id="password" name="password" maxlength="80" tabindex="2" value="mot de passe" />
|
|
|
565 |
<input type="submit" id="connexion" name="connexion" tabindex="3" value="ok" />
|
|
|
566 |
</fieldset>
|
|
|
567 |
</form>';
|
118 |
florian |
568 |
}
|
5 |
florian |
569 |
return $res;
|
|
|
570 |
}
|
|
|
571 |
|
54 |
florian |
572 |
/** baz_afficher_formulaire_annonce() - Genere le formulaire de saisie d'une annonce
|
|
|
573 |
*
|
|
|
574 |
* @param string type de formulaire: insertion ou modification
|
|
|
575 |
* @param mixed objet quickform du formulaire
|
|
|
576 |
*
|
|
|
577 |
* @return string code HTML avec formulaire
|
|
|
578 |
*/
|
|
|
579 |
function baz_afficher_formulaire_annonce($mode='insertion',$formtemplate) {
|
118 |
florian |
580 |
if ($mode=='modification') {
|
|
|
581 |
//initialisation de la variable globale id_fiche
|
|
|
582 |
$GLOBALS['_BAZAR_']['id_fiche'] = $_REQUEST['id_fiche'];
|
|
|
583 |
|
|
|
584 |
//suppression eventuelle d'une url, d'un fichier ou d'une image
|
|
|
585 |
if (isset($_GET['id_url'])) {
|
|
|
586 |
baz_suppression_url($_GET['id_url']);
|
|
|
587 |
}
|
|
|
588 |
if (isset($_GET['id_fichier'])) {
|
|
|
589 |
baz_suppression_fichier($_GET['id_fichier']);
|
|
|
590 |
}
|
|
|
591 |
if (isset($_GET['image'])) {
|
|
|
592 |
baz_suppression_image($GLOBALS['_BAZAR_']['id_fiche']);
|
|
|
593 |
}
|
54 |
florian |
594 |
}
|
|
|
595 |
|
|
|
596 |
//titre de la rubrique
|
105 |
florian |
597 |
$res= '<h2>'.BAZ_TITRE_SAISIE_ANNONCE.' '.$GLOBALS['_BAZAR_']['typeannonce'].'</h2><br />'."\n";
|
68 |
florian |
598 |
if (($GLOBALS['_BAZAR_']['condition']!='')AND(!isset($_POST['accept_condition']))AND(!isset($_GET['url'])OR(!isset($_GET['fichier']))OR(!isset($_GET['image'])))) {
|
118 |
florian |
599 |
require_once PAP_CHEMIN_API_PEAR.'HTML/QuickForm/html.php';
|
68 |
florian |
600 |
$conditions= new HTML_QuickForm_html('<tr><td colspan="2" style="padding:5px; margin:5px; width: 90%; background: #C1CBA7;">'.$GLOBALS['_BAZAR_']['condition'].'</td>'."\n".'</tr>'."\n");
|
54 |
florian |
601 |
$formtemplate->addElement($conditions);
|
|
|
602 |
$formtemplate->addElement('checkbox', 'accept_condition',BAZ_ACCEPTE_CONDITIONS) ;
|
68 |
florian |
603 |
$formtemplate->addElement('hidden', 'typeannonce', $GLOBALS['_BAZAR_']['id_typeannonce']);
|
54 |
florian |
604 |
$formtemplate->addRule('accept_condition', BAZ_ACCEPTE_CONDITIONS_REQUIS, 'required', '', 'client') ;
|
|
|
605 |
$formtemplate->addElement('submit', 'valider', BAZ_VALIDER);
|
|
|
606 |
}
|
118 |
florian |
607 |
//affichage du formulaire si conditions acceptees
|
54 |
florian |
608 |
else {
|
118 |
florian |
609 |
//Parcours du fichier de templates, pour mettre les valeurs des champs
|
|
|
610 |
$tableau=baz_valeurs_template($GLOBALS['_BAZAR_']['template']);
|
|
|
611 |
if ($mode=='modification') {
|
|
|
612 |
//Ajout des valeurs par defaut
|
|
|
613 |
$valeurs_par_defaut = baz_valeurs_fiche($GLOBALS['_BAZAR_']['id_fiche']) ;
|
|
|
614 |
for ($i=0; $i<count($tableau); $i++) {
|
|
|
615 |
if ( $tableau[$i]['type']=='liste' || $tableau[$i]['type']=='checkbox' ) {
|
|
|
616 |
$def=$tableau[$i]['type'].$tableau[$i]['nom_bdd'];
|
|
|
617 |
}
|
|
|
618 |
elseif ( $tableau[$i]['type']=='texte' || $tableau[$i]['type']=='textelong' || $tableau[$i]['type']=='listedatedeb' || $tableau[$i]['type']=='listedatefin' ) {
|
|
|
619 |
$def=$tableau[$i]['nom_bdd'];
|
|
|
620 |
}
|
|
|
621 |
$tableau[$i]['type']($formtemplate, $tableau[$i]['nom_bdd'], $tableau[$i]['label'], $tableau[$i]['limite1'],
|
|
|
622 |
$tableau[$i]['limite2'], $valeurs_par_defaut[$def], $tableau[$i]['table_source'], $tableau[$i]['obligatoire']) ;
|
79 |
florian |
623 |
}
|
54 |
florian |
624 |
}
|
|
|
625 |
else {
|
118 |
florian |
626 |
for ($i=0; $i<count($tableau); $i++) {
|
|
|
627 |
$tableau[$i]['type']($formtemplate, $tableau[$i]['nom_bdd'], $tableau[$i]['label'], $tableau[$i]['limite1'],
|
|
|
628 |
$tableau[$i]['limite2'], $tableau[$i]['defaut'], $tableau[$i]['table_source'], $tableau[$i]['obligatoire']) ;
|
|
|
629 |
}
|
54 |
florian |
630 |
}
|
118 |
florian |
631 |
$formtemplate->addElement('hidden', 'typeannonce', $GLOBALS['_BAZAR_']['id_typeannonce']);
|
|
|
632 |
$formtemplate->addElement('submit', 'valider', BAZ_VALIDER);
|
54 |
florian |
633 |
}
|
118 |
florian |
634 |
|
54 |
florian |
635 |
//Affichage a l'ecran
|
118 |
florian |
636 |
$res .= $formtemplate->toHTML()."\n";
|
54 |
florian |
637 |
return $res;
|
|
|
638 |
}
|
|
|
639 |
|
|
|
640 |
|
5 |
florian |
641 |
/** requete_bazar_fiche() - preparer la requete d'insertion ou de MAJ de la table bazar_fiche à partir du fichier de template
|
|
|
642 |
*
|
|
|
643 |
* @global mixed L'objet contenant les valeurs issues de la saisie du formulaire
|
|
|
644 |
* @return void
|
|
|
645 |
*/
|
|
|
646 |
function requete_bazar_fiche($valeur) {
|
|
|
647 |
$requete=NULL;
|
|
|
648 |
//l'annonce est directement publiée pour les admins
|
|
|
649 |
if ((niveau_droit($GLOBALS['_BAZAR_']['id_typeannonce'],$GLOBALS['id_user'])=='administrateur') or
|
|
|
650 |
(niveau_droit($GLOBALS['_BAZAR_']['id_typeannonce'],$GLOBALS['id_user'])=='superadministrateur')) {
|
68 |
florian |
651 |
$requete.='bf_statut_fiche=1, ';
|
5 |
florian |
652 |
}
|
|
|
653 |
else {
|
68 |
florian |
654 |
$requete.='bf_statut_fiche="'.BAZ_ETAT_VALIDATION.'", ';
|
75 |
florian |
655 |
}
|
69 |
alexandre_ |
656 |
$tableau=baz_valeurs_template($GLOBALS['_BAZAR_']['template']);
|
5 |
florian |
657 |
for ($i=0; $i<count($tableau); $i++) {
|
118 |
florian |
658 |
//cas des checkbox et des listes
|
|
|
659 |
if ($tableau[$i]['type']=='checkbox' || $tableau[$i]['type']=='liste') {
|
|
|
660 |
//on supprime les anciennes valeurs de la table bazar_fiche_valeur_liste
|
|
|
661 |
$requetesuppression='DELETE FROM bazar_fiche_valeur_liste WHERE bfvl_ce_fiche='.$GLOBALS['_BAZAR_']['id_fiche'].' AND bfvl_ce_liste='.$tableau[$i]['nom_bdd'];
|
|
|
662 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requetesuppression) ;
|
|
|
663 |
if (DB::isError($resultat)) {
|
|
|
664 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
665 |
}
|
126 |
florian |
666 |
if (isset($valeur[$tableau[$i]['type'].$tableau[$i]['nom_bdd']]) && ($valeur[$tableau[$i]['type'].$tableau[$i]['nom_bdd']]!=0)) {
|
74 |
florian |
667 |
//on insere les nouvelles valeurs
|
|
|
668 |
$requeteinsertion='INSERT INTO bazar_fiche_valeur_liste (bfvl_ce_fiche, bfvl_ce_liste, bfvl_valeur) VALUES ';
|
|
|
669 |
//pour les checkbox, les différentes valeurs sont dans un tableau
|
|
|
670 |
if (is_array($valeur[$tableau[$i]['type'].$tableau[$i]['nom_bdd']])) {
|
76 |
florian |
671 |
$nb=0;
|
74 |
florian |
672 |
while (list($cle, $val) = each($valeur[$tableau[$i]['type'].$tableau[$i]['nom_bdd']])) {
|
118 |
florian |
673 |
|
76 |
florian |
674 |
if ($nb>0) $requeteinsertion .= ', ';
|
|
|
675 |
$requeteinsertion .= '('.$GLOBALS['_BAZAR_']['id_fiche'].', '.$tableau[$i]['nom_bdd'].', '.$cle.') ';
|
|
|
676 |
$nb++;
|
74 |
florian |
677 |
}
|
|
|
678 |
}
|
|
|
679 |
//pour les listes, une insertion de la valeur suffit
|
|
|
680 |
else {
|
126 |
florian |
681 |
$requeteinsertion .= '('.$GLOBALS['_BAZAR_']['id_fiche'].', '.$tableau[$i]['nom_bdd'].', '.$valeur[$tableau[$i]['type'].$tableau[$i]['nom_bdd']].')';
|
74 |
florian |
682 |
}
|
118 |
florian |
683 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requeteinsertion) ;
|
74 |
florian |
684 |
if (DB::isError($resultat)) {
|
|
|
685 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
55 |
florian |
686 |
}
|
118 |
florian |
687 |
}
|
|
|
688 |
}
|
|
|
689 |
//cas des fichiers
|
|
|
690 |
elseif ($tableau[$i]['type']=='fichier') {
|
|
|
691 |
if (isset($valeur['texte_fichier'.$tableau[$i]['nom_bdd']]) && $valeur['texte_fichier'.$tableau[$i]['nom_bdd']]!='') {
|
|
|
692 |
baz_insertion_fichier($valeur['texte_fichier'.$tableau[$i]['nom_bdd']], $GLOBALS['_BAZAR_']['id_fiche'], 'fichier'.$tableau[$i]['nom_bdd']);
|
|
|
693 |
}
|
|
|
694 |
}
|
|
|
695 |
//cas des urls
|
|
|
696 |
elseif ($tableau[$i]['type']=='url') {
|
|
|
697 |
if (isset($valeur['url_lien'.$tableau[$i]['nom_bdd']]) && $valeur['url_lien'.$tableau[$i]['nom_bdd']]!='' ) {
|
|
|
698 |
baz_insertion_url($valeur['url_lien'.$tableau[$i]['nom_bdd']], $valeur['url_texte'.$tableau[$i]['nom_bdd']], $GLOBALS['_BAZAR_']['id_fiche']);
|
54 |
florian |
699 |
}
|
118 |
florian |
700 |
}
|
|
|
701 |
//cas des images
|
|
|
702 |
elseif ($tableau[$i]['type']=='image') {
|
|
|
703 |
if (isset($_FILES['image']['name']) && $_FILES['image']['name']!='') {
|
|
|
704 |
baz_insertion_image($GLOBALS['_BAZAR_']['id_fiche']);
|
103 |
florian |
705 |
}
|
5 |
florian |
706 |
}
|
118 |
florian |
707 |
//cas des dates
|
|
|
708 |
elseif ( $tableau[$i]['type']=='listedatedeb' || $tableau[$i]['type']=='listedatefin' ) {
|
|
|
709 |
$val=$valeur[$tableau[$i]['nom_bdd']]['Y'].'-'.$valeur[$tableau[$i]['nom_bdd']]['m'].'-'.$valeur[$tableau[$i]['nom_bdd']]['d'] ;
|
|
|
710 |
$requete .= $tableau[$i]['nom_bdd'].'="'.$val.'", ' ;
|
|
|
711 |
}
|
|
|
712 |
//cas des champs texte
|
|
|
713 |
elseif ( $tableau[$i]['type']=='texte' || $tableau[$i]['type']=='textelong' ) {
|
|
|
714 |
//on mets les slashes pour les saisies dans les champs texte et textearea
|
|
|
715 |
$val=addslashes($valeur[$tableau[$i]['nom_bdd']]) ;
|
|
|
716 |
$requete .= $tableau[$i]['nom_bdd'].'="'.$val.'", ' ;
|
129 |
florian |
717 |
}
|
|
|
718 |
//cas des wikinis
|
|
|
719 |
elseif ( $tableau[$i]['type']=='wikini' && $_REQUEST['action']==BAZ_ACTION_NOUVEAU_V ) {
|
|
|
720 |
//on appelle les pages des apis et de l'integrateur wikini
|
|
|
721 |
include_once PAP_CHEMIN_RACINE.'api/sql/SQL_manipulation.fonct.php';
|
|
|
722 |
include_once PAP_CHEMIN_RACINE.'client/integrateur_wikini/configuration/adwi_configuration.inc.php' ;
|
|
|
723 |
include_once PAP_CHEMIN_RACINE.'client/integrateur_wikini/bibliotheque/adwi_wikini.fonct.php' ;
|
|
|
724 |
$requete_nom_wiki= 'SELECT '.BAZ_CHAMPS_NOM_WIKI.' FROM '.BAZ_ANNUAIRE.' WHERE '.BAZ_CHAMPS_ID.'='.$GLOBALS['id_user'];
|
|
|
725 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete_nom_wiki) ;
|
|
|
726 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
727 |
$nom_wiki=$ligne[BAZ_CHAMPS_NOM_WIKI];
|
|
|
728 |
}
|
|
|
729 |
|
|
|
730 |
$requete_nombre_projet = 'SELECT max('.$tableau[$i]['nom_bdd'].') FROM bazar_fiche WHERE bf_ce_utilisateur='.$GLOBALS['id_user'];
|
|
|
731 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete_nombre_projet) ;
|
|
|
732 |
if ($resultat->numRows()>0) {
|
|
|
733 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
734 |
echo 'valeur du max: ';var_dump($ligne);
|
|
|
735 |
//on rajoute un au projet de plus haut identifiant, pour le projet suivant
|
|
|
736 |
$id_wiki_projet=$ligne[0]+1;
|
|
|
737 |
}
|
|
|
738 |
}
|
|
|
739 |
else $id_wiki_projet=1;
|
|
|
740 |
$valeur=array ("action"=> "nouveau_v", "code_alpha_wikini"=>$nom_wiki.$id_wiki_projet, "page"=>"AccueiL", "bdd_hote"=> "",
|
|
|
741 |
"bdd_nom"=> "", "bdd_utilisateur"=> "", "bdd_mdp" => "", "table_prefix"=> "", "chemin" => "wikini/".$nom_wiki.$id_wiki_projet, "valider"=> "Valider");
|
|
|
742 |
var_dump($valeur);
|
|
|
743 |
$val = insertion($valeur, $GLOBALS['_BAZAR_']['db']);
|
|
|
744 |
$requete .= $tableau[$i]['nom_bdd'].'="'.$val.'", ' ;
|
118 |
florian |
745 |
}
|
|
|
746 |
}
|
74 |
florian |
747 |
$requete.=' bf_date_maj_fiche=NOW()';
|
5 |
florian |
748 |
return $requete;
|
|
|
749 |
}
|
|
|
750 |
|
|
|
751 |
/** baz_insertion() - inserer une nouvelle fiche
|
|
|
752 |
*
|
67 |
alexandre_ |
753 |
* @array Le tableau des valeurs a inserer
|
5 |
florian |
754 |
* @integer Valeur de l'identifiant de la fiche
|
|
|
755 |
* @return void
|
|
|
756 |
*/
|
68 |
florian |
757 |
function baz_insertion($valeur) {
|
53 |
florian |
758 |
// =========== Insertion d'une nouvelle fiche ===================
|
5 |
florian |
759 |
//requete d'insertion dans bazar_fiche
|
74 |
florian |
760 |
$GLOBALS['_BAZAR_']['id_fiche'] = baz_nextid('bazar_fiche', 'bf_id_fiche', $GLOBALS['_BAZAR_']['db']) ;
|
|
|
761 |
$requete = 'INSERT INTO bazar_fiche SET bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'].','.
|
5 |
florian |
762 |
'bf_ce_utilisateur='.$GLOBALS['id_user'].', bf_ce_nature='.$GLOBALS['_BAZAR_']['id_typeannonce'].','.
|
13 |
alexandre_ |
763 |
'bf_date_creation_fiche=NOW(),';
|
68 |
florian |
764 |
if ($GLOBALS['_BAZAR_']['appropriation']== 1) {
|
53 |
florian |
765 |
$requete .= 'bf_date_debut_validite_fiche=now(), ' ;
|
|
|
766 |
}
|
74 |
florian |
767 |
$requete .=requete_bazar_fiche(&$valeur) ;
|
53 |
florian |
768 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
769 |
if (DB::isError($resultat)) {
|
|
|
770 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
771 |
}
|
|
|
772 |
return;
|
5 |
florian |
773 |
}
|
|
|
774 |
|
|
|
775 |
|
118 |
florian |
776 |
/** baz_insertion_url() - inserer un lien URL a une fiche
|
5 |
florian |
777 |
*
|
|
|
778 |
* @global string L'url du lien
|
|
|
779 |
* @global string Le texte du lien
|
|
|
780 |
* @global integer L'identifiant de la fiche
|
|
|
781 |
* @return void
|
|
|
782 |
*/
|
|
|
783 |
function baz_insertion_url($url_lien, $url_texte, $idfiche) {
|
|
|
784 |
//requete d'insertion dans bazar_url
|
|
|
785 |
$id_url = baz_nextId('bazar_url', 'bu_id_url', $GLOBALS['_BAZAR_']['db']) ;
|
|
|
786 |
$requete = 'INSERT INTO bazar_url SET bu_id_url='.$id_url.', bu_ce_fiche='.$idfiche.', '.
|
|
|
787 |
'bu_url="'.$url_lien.'", bu_descriptif_url="'.addslashes($url_texte).'"';
|
|
|
788 |
|
|
|
789 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
790 |
if (DB::isError($resultat)) {
|
|
|
791 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
792 |
}
|
|
|
793 |
return;
|
|
|
794 |
}
|
|
|
795 |
|
|
|
796 |
|
67 |
alexandre_ |
797 |
/** baz_insertion_fichier() - inserer un fichier a une fiche
|
5 |
florian |
798 |
*
|
|
|
799 |
* @global string Le label du fichier
|
|
|
800 |
* @global string La description du fichier
|
|
|
801 |
* @global integer L'identifiant de la fiche
|
|
|
802 |
* @return void
|
|
|
803 |
*/
|
103 |
florian |
804 |
function baz_insertion_fichier($fichier_description, $idfiche, $nom_fichier='fichier_joint') {
|
68 |
florian |
805 |
//verification de la presence de ce fichier
|
103 |
florian |
806 |
$requete = 'SELECT bfj_id_fichier FROM bazar_fichier_joint WHERE bfj_fichier="'.$_FILES[$nom_fichier]['name'].'"';
|
5 |
florian |
807 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
808 |
if (DB::isError($resultat)) {
|
|
|
809 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
810 |
}
|
|
|
811 |
if ($resultat->numRows()==0) {
|
103 |
florian |
812 |
$chemin_destination=BAZ_CHEMIN_APPLI.'upload/'.$_FILES[$nom_fichier]['name'];
|
|
|
813 |
move_uploaded_file($_FILES[$nom_fichier]['tmp_name'], $chemin_destination);
|
5 |
florian |
814 |
}
|
|
|
815 |
$id_fichier_joint = baz_nextId('bazar_fichier_joint', 'bfj_id_fichier', $GLOBALS['_BAZAR_']['db']) ;
|
|
|
816 |
$requete = 'INSERT INTO bazar_fichier_joint SET bfj_id_fichier='.$id_fichier_joint.', bfj_ce_fiche='.$idfiche.
|
103 |
florian |
817 |
', bfj_description="'.addslashes($fichier_description).'", bfj_fichier="'.$_FILES[$nom_fichier]['name'].'"';
|
5 |
florian |
818 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
819 |
if (DB::isError($resultat)) {
|
|
|
820 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
821 |
}
|
|
|
822 |
return;
|
|
|
823 |
}
|
|
|
824 |
|
|
|
825 |
|
118 |
florian |
826 |
/** baz_insertion_image() - inserer une image a une fiche
|
5 |
florian |
827 |
*
|
|
|
828 |
* @global integer L'identifiant de la fiche
|
|
|
829 |
* @return void
|
|
|
830 |
*/
|
|
|
831 |
function baz_insertion_image($idfiche) {
|
68 |
florian |
832 |
//verification de la presence de ce fichier
|
5 |
florian |
833 |
$requete = 'SELECT bf_id_fiche FROM bazar_fiche WHERE bf_url_image="'.$_FILES['image']['name'].'"';
|
|
|
834 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
835 |
if (DB::isError($resultat)) {
|
|
|
836 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
837 |
}
|
|
|
838 |
if ($resultat->numRows()==0) {
|
118 |
florian |
839 |
$chemin_destination=BAZ_CHEMIN_APPLI.'upload/'.$_FILES['image']['name'];
|
5 |
florian |
840 |
move_uploaded_file($_FILES['image']['tmp_name'], $chemin_destination);
|
|
|
841 |
}
|
118 |
florian |
842 |
//verification de l'existence de la fiche
|
5 |
florian |
843 |
$requete = 'SELECT bf_id_fiche FROM bazar_fiche WHERE bf_id_fiche='.$idfiche;
|
|
|
844 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
845 |
if (DB::isError($resultat)) {
|
142 |
alexandre_ |
846 |
echo ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
5 |
florian |
847 |
}
|
|
|
848 |
if ($resultat->numRows()==0) {
|
68 |
florian |
849 |
//creation d'une fiche temporaire avec l'image
|
5 |
florian |
850 |
$requete = 'INSERT INTO bazar_fiche SET bf_id_fiche='.$idfiche.', bf_ce_nature='.$GLOBALS['_BAZAR_']['id_typeannonce'].', bf_ce_utilisateur='.$GLOBALS['id_user'].', bf_date_creation_fiche=NOW(), bf_url_image="'.$_FILES['image']['name'].'", '.
|
|
|
851 |
'bf_titre="annonce temporaire"';
|
|
|
852 |
}
|
|
|
853 |
else {
|
|
|
854 |
$requete='UPDATE bazar_fiche SET bf_url_image="'.$_FILES['image']['name'].'" WHERE bf_id_fiche='.$idfiche;
|
|
|
855 |
}
|
|
|
856 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
857 |
if (DB::isError($resultat)) {
|
|
|
858 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
859 |
}
|
|
|
860 |
return;
|
|
|
861 |
}
|
|
|
862 |
|
|
|
863 |
|
|
|
864 |
/** baz_mise_a_jour() - Mettre a jour une fiche
|
|
|
865 |
*
|
|
|
866 |
* @global Le contenu du formulaire de saisie de l'annonce
|
|
|
867 |
* @return void
|
|
|
868 |
*/
|
|
|
869 |
function baz_mise_a_jour($valeur) {
|
|
|
870 |
//MAJ de bazar_fiche
|
|
|
871 |
$requete = 'UPDATE bazar_fiche SET '.requete_bazar_fiche(&$valeur,$GLOBALS['_BAZAR_']['id_typeannonce']);
|
|
|
872 |
$requete.= ' WHERE bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
|
|
|
873 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
874 |
if (DB::isError($resultat)) {
|
|
|
875 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
876 |
}
|
|
|
877 |
return;
|
|
|
878 |
}
|
|
|
879 |
|
|
|
880 |
|
|
|
881 |
/** baz_suppression() - Supprime une fiche
|
|
|
882 |
*
|
67 |
alexandre_ |
883 |
* @global L'identifiant de la fiche a supprimer
|
5 |
florian |
884 |
* @return void
|
|
|
885 |
*/
|
|
|
886 |
function baz_suppression() {
|
|
|
887 |
//suppression dans bazar_fiche
|
74 |
florian |
888 |
$requete = 'DELETE FROM bazar_fiche WHERE bf_id_fiche = '.$_GET['id_fiche'];
|
5 |
florian |
889 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
890 |
if (DB::isError($resultat)) {
|
|
|
891 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo().'<br />'."\n") ;
|
|
|
892 |
}
|
129 |
florian |
893 |
//TODO: verifier si wikini est associee a la fiche
|
|
|
894 |
//suppression des wikinis associes
|
|
|
895 |
include_once PAP_CHEMIN_RACINE.'client/integrateur_wikini/bibliotheque/adwi_wikini.fonct.php' ;
|
|
|
896 |
$id_wikini='';
|
|
|
897 |
adwi_supprimer_wikini($id_wikini, $GLOBALS['_BAZAR_']['db']);
|
67 |
alexandre_ |
898 |
|
74 |
florian |
899 |
// suppression des valeurs des listes et des cases à cocher
|
|
|
900 |
$requete = 'DELETE FROM bazar_fiche_valeur_liste WHERE bfvl_ce_fiche='.$_GET['id_fiche'];
|
|
|
901 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
902 |
if (DB::isError($resultat)) {
|
|
|
903 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
904 |
}
|
67 |
alexandre_ |
905 |
|
|
|
906 |
//suppression des urls associes
|
74 |
florian |
907 |
$requete = 'SELECT bu_id_url FROM bazar_url WHERE bu_ce_fiche = '.$_GET['id_fiche'];
|
5 |
florian |
908 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
909 |
if (DB::isError($resultat)) {
|
|
|
910 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo().'<br />'."\n") ;
|
|
|
911 |
}
|
|
|
912 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
913 |
baz_suppression_url($ligne['bu_id_url']);
|
|
|
914 |
}
|
|
|
915 |
|
67 |
alexandre_ |
916 |
//suppression des fichiers associes
|
74 |
florian |
917 |
$requete = 'SELECT bfj_id_fichier FROM bazar_fichier_joint WHERE bfj_ce_fiche = '.$_GET['id_fiche'];
|
5 |
florian |
918 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
919 |
if (DB::isError($resultat)) {
|
|
|
920 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo().'<br />'."\n") ;
|
|
|
921 |
}
|
|
|
922 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
923 |
baz_suppression_fichier($ligne['bfj_id_fichier']);
|
|
|
924 |
}
|
74 |
florian |
925 |
|
5 |
florian |
926 |
return ;
|
|
|
927 |
}
|
|
|
928 |
|
|
|
929 |
|
|
|
930 |
/** baz_suppression_url() - Supprimer un lien d'une fiche
|
|
|
931 |
*
|
|
|
932 |
* @global integer L'identifiant du lien
|
|
|
933 |
* @return void
|
|
|
934 |
*/
|
|
|
935 |
function baz_suppression_url($id_url) {
|
|
|
936 |
//suppression dans bazar_url
|
|
|
937 |
$requete = 'DELETE FROM bazar_url WHERE bu_id_url = '.$id_url;
|
|
|
938 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
939 |
if (DB::isError($resultat)) {
|
|
|
940 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
941 |
}
|
|
|
942 |
return;
|
|
|
943 |
}
|
|
|
944 |
|
|
|
945 |
|
|
|
946 |
/** baz_suppression_fichier() - Supprimer un fichier d'une fiche
|
|
|
947 |
*
|
|
|
948 |
* @global integer L'identifiant du fichier
|
|
|
949 |
* @return void
|
|
|
950 |
*/
|
|
|
951 |
function baz_suppression_fichier($id_fichier) {
|
68 |
florian |
952 |
//verification de l'utilisation du fichier joint pour une autre annonce
|
5 |
florian |
953 |
$requete = 'SELECT bfj_fichier FROM bazar_fichier_joint WHERE bfj_id_fichier='.$id_fichier;
|
|
|
954 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
955 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
|
|
|
956 |
$requete = 'SELECT bfj_fichier FROM bazar_fichier_joint WHERE bfj_fichier="'.$ligne['bfj_fichier'].'"';
|
|
|
957 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
118 |
florian |
958 |
//si le fichier n'est que utilise dans cette fiche, on le supprime, on le laisse sinon
|
5 |
florian |
959 |
if ($resultat->numRows()==1) {
|
|
|
960 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
|
118 |
florian |
961 |
unlink(BAZ_CHEMIN_APPLI.'upload/'.$ligne['bfj_fichier']);
|
5 |
florian |
962 |
}
|
|
|
963 |
|
|
|
964 |
//suppression dans la table bazar_fichier
|
|
|
965 |
$requete = 'DELETE FROM bazar_fichier_joint WHERE bfj_id_fichier = '.$id_fichier;
|
|
|
966 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
967 |
if (DB::isError($resultat)) {
|
|
|
968 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
969 |
}
|
|
|
970 |
return;
|
|
|
971 |
}
|
|
|
972 |
|
|
|
973 |
|
|
|
974 |
/** baz_suppression_image() - Supprimer une image d'une fiche
|
|
|
975 |
*
|
|
|
976 |
* @global integer L'identifiant de la fiche
|
|
|
977 |
* @return void
|
|
|
978 |
*/
|
|
|
979 |
function baz_suppression_image($id_fiche) {
|
68 |
florian |
980 |
//verification de l'utilisation de l'image pour une autre annonce
|
5 |
florian |
981 |
$requete = 'SELECT bf_url_image FROM bazar_fiche WHERE bf_id_fiche='.$id_fiche;
|
|
|
982 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
983 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
|
|
|
984 |
$requete = 'SELECT bf_url_image FROM bazar_fiche WHERE bf_url_image="'.$ligne['bf_url_image'].'"';
|
|
|
985 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
118 |
florian |
986 |
//si le fichier n'est que utilise dans cette fiche, on le supprime, on le laisse sinon
|
5 |
florian |
987 |
if ($resultat->numRows()==1) {
|
|
|
988 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
|
118 |
florian |
989 |
unlink(BAZ_CHEMIN_APPLI.'upload/'.$ligne['bf_url_image']);
|
5 |
florian |
990 |
}
|
|
|
991 |
|
|
|
992 |
//suppression dans la table bazar_fiche
|
|
|
993 |
$requete = 'UPDATE bazar_fiche SET bf_url_image=NULL WHERE bf_id_fiche = '.$id_fiche;
|
|
|
994 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
995 |
if (DB::isError($resultat)) {
|
|
|
996 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
997 |
}
|
|
|
998 |
return;
|
|
|
999 |
}
|
|
|
1000 |
|
|
|
1001 |
|
|
|
1002 |
/** publier_fiche () - Publie ou non dans les fichiers XML la fiche bazar d'un utilisateur
|
|
|
1003 |
*
|
|
|
1004 |
* @global boolean Valide: oui ou non
|
|
|
1005 |
* @return void
|
|
|
1006 |
*/
|
|
|
1007 |
function publier_fiche($valid) {
|
|
|
1008 |
if (isset($_GET['id_fiche'])) $GLOBALS['_BAZAR_']['id_fiche']=$_GET['id_fiche'];
|
|
|
1009 |
if (isset($_GET['typeannonce'])) $typeannonce=$_GET['typeannonce'];
|
|
|
1010 |
if ($valid==0) {
|
|
|
1011 |
$requete = 'UPDATE bazar_fiche SET bf_statut_fiche=2 WHERE bf_id_fiche="'.$GLOBALS['_BAZAR_']['id_fiche'].'"' ;
|
|
|
1012 |
}
|
|
|
1013 |
else {
|
|
|
1014 |
$requete = 'UPDATE bazar_fiche SET bf_statut_fiche=1 WHERE bf_id_fiche="'.$GLOBALS['_BAZAR_']['id_fiche'].'"' ;
|
|
|
1015 |
}
|
|
|
1016 |
|
54 |
florian |
1017 |
// ====================Mise a jour de la table bazar_fiche====================
|
5 |
florian |
1018 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1019 |
if (DB::isError($resultat)) {
|
|
|
1020 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
1021 |
}
|
|
|
1022 |
unset ($resultat) ;
|
54 |
florian |
1023 |
//TODO envoie mail annonceur
|
5 |
florian |
1024 |
return;
|
|
|
1025 |
}
|
|
|
1026 |
|
|
|
1027 |
|
|
|
1028 |
/** baz_s_inscrire() affiche le formulaire qui permet de s'inscrire pour recevoir des annonces d'un type
|
|
|
1029 |
*
|
|
|
1030 |
* @return string le code HTML
|
|
|
1031 |
*/
|
|
|
1032 |
function baz_s_inscrire() {
|
118 |
florian |
1033 |
$res= '<h2>'.BAZ_S_INSCRIRE_AUX_ANNONCES.'</h2><br />'."\n";
|
5 |
florian |
1034 |
if (isset($_GET['inscrip'])) {
|
64 |
florian |
1035 |
//cas d'une desinscription
|
5 |
florian |
1036 |
if ($_GET['inscrip']==0) {
|
|
|
1037 |
$requete='DELETE FROM bazar_abonnement WHERE ba_id_utilisateur='.$GLOBALS['id_user'].' AND ba_id_rubrique='.$_GET['idtypeannonce'];
|
|
|
1038 |
}
|
|
|
1039 |
//cas d'une inscription
|
|
|
1040 |
else {
|
|
|
1041 |
$requete='INSERT INTO bazar_abonnement VALUES ('.$GLOBALS['id_user'].', '.$_GET['idtypeannonce'].')';
|
|
|
1042 |
}
|
|
|
1043 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1044 |
if (DB::isError($resultat)) {
|
|
|
1045 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
1046 |
}
|
|
|
1047 |
}
|
|
|
1048 |
|
24 |
florian |
1049 |
if ($GLOBALS['AUTH']->getAuth()) {
|
64 |
florian |
1050 |
$res .= BAZ_LAIUS_S_ABONNER.'<br /><br />'."\n";
|
5 |
florian |
1051 |
//requete pour obtenir l'id et le label des types d'annonces
|
64 |
florian |
1052 |
$requete = 'SELECT bn_id_nature, bn_label_nature, bn_image_titre '.
|
126 |
florian |
1053 |
'FROM bazar_nature WHERE bn_ce_id_menu='.$GLOBALS['_BAZAR_']['categorie_nature'];
|
5 |
florian |
1054 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1055 |
if (DB::isError($resultat)) {
|
|
|
1056 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
1057 |
}
|
|
|
1058 |
|
|
|
1059 |
$table = new HTML_Table(array ('width' => '100%', 'class' => 'table_bazar')) ;
|
|
|
1060 |
$table->addRow(array ('<b>'.BAZ_TYPE_ANNONCES.'</b>',
|
|
|
1061 |
'<b>'.BAZ_STATUT.'</b>',
|
|
|
1062 |
'<b>'.BAZ_PASSER_EN.'</b>',
|
|
|
1063 |
'<b>'.BAZ_RSS.'</b>',)) ;
|
|
|
1064 |
$table->setRowType (0, 'th') ;
|
|
|
1065 |
|
|
|
1066 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
1067 |
$lien_s_abonner=$GLOBALS['_BAZAR_']['url'];
|
|
|
1068 |
$lien_s_abonner->addQueryString('action', BAZ_S_INSCRIRE);
|
|
|
1069 |
$lien_s_abonner->addQueryString('idtypeannonce', $ligne['bn_id_nature']);
|
|
|
1070 |
$lien_s_abonner->addQueryString('inscrip', 1);
|
|
|
1071 |
|
|
|
1072 |
$lien_se_desabonner=$GLOBALS['_BAZAR_']['url'];
|
|
|
1073 |
$lien_se_desabonner->addQueryString('action', BAZ_S_INSCRIRE);
|
|
|
1074 |
$lien_se_desabonner->addQueryString('idtypeannonce', $ligne['bn_id_nature']);
|
|
|
1075 |
$lien_se_desabonner->addQueryString('inscrip', 0);
|
|
|
1076 |
|
|
|
1077 |
$lien_RSS=$GLOBALS['_BAZAR_']['url'];
|
|
|
1078 |
$lien_RSS->addQueryString('action', BAZ_VOIR_FLUX_RSS);
|
|
|
1079 |
|
64 |
florian |
1080 |
'http://'.$_SERVER['HTTP_HOST'].'/client/bazar/bazarRSS.php?annonce='.$ligne['bn_id_nature'];
|
5 |
florian |
1081 |
|
|
|
1082 |
//requete pour savoir si la personne est inscrite à ce type d'annonce
|
|
|
1083 |
$requete = 'SELECT ba_id_utilisateur '.
|
|
|
1084 |
'FROM bazar_abonnement '.
|
64 |
florian |
1085 |
'WHERE ba_id_utilisateur='.$GLOBALS['id_user'].' AND ba_id_rubrique='.$ligne['bn_id_nature'];
|
5 |
florian |
1086 |
$resultat2 = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1087 |
if (DB::isError($resultat2)) {
|
|
|
1088 |
die ($resultat2->getMessage().$resultat2->getDebugInfo()) ;
|
|
|
1089 |
}
|
107 |
florian |
1090 |
if (isset($ligne['bn_image_titre'])) {$titre=' <img src="client/bazar/images/'.$ligne['bn_image_titre'].'" alt="'.$ligne['bn_label_nature'].'" />'."\n";}
|
|
|
1091 |
else {$titre='<strong> '.$ligne['bn_label_nature'].'</strong>'."\n";}
|
5 |
florian |
1092 |
if ($resultat2->numRows()>0) {
|
64 |
florian |
1093 |
$lien_RSS->addQueryString('annonce', $ligne['bn_id_nature']);
|
|
|
1094 |
$table->addRow(array($titre,
|
5 |
florian |
1095 |
BAZ_ABONNE,
|
|
|
1096 |
'<a href='.$lien_se_desabonner->getURL().'>'.BAZ_SE_DESABONNER.'</a>',
|
|
|
1097 |
'<a href='.$lien_RSS->getURL().'><img src="client/bazar/images/BAZ_rss.png" alt="'.BAZ_RSS.'"></a>'));
|
|
|
1098 |
$lien_RSS->removeQueryString('annonce');
|
|
|
1099 |
}
|
|
|
1100 |
else {
|
64 |
florian |
1101 |
$lien_RSS->addQueryString('annonce', $ligne['bn_id_nature']);
|
|
|
1102 |
$table->addRow(array($titre,
|
5 |
florian |
1103 |
BAZ_PAS_ABONNE,
|
|
|
1104 |
'<a href='.$lien_s_abonner->getURL().'>'.BAZ_S_ABONNER.'</a>',
|
|
|
1105 |
'<a href='.$lien_RSS->getURL().'><img src="client/bazar/images/BAZ_rss.png" alt="'.BAZ_RSS.'" /></a>'));
|
|
|
1106 |
$lien_RSS->removeQueryString('annonce');
|
|
|
1107 |
}
|
|
|
1108 |
}
|
|
|
1109 |
$table->altRowAttributes(1, array('class' => 'ligne_impaire'), array('class' => 'ligne_paire'));
|
64 |
florian |
1110 |
$table->updateColAttributes(0, array('align' => 'center'));
|
5 |
florian |
1111 |
$table->updateColAttributes(1, array('align' => 'center'));
|
|
|
1112 |
$table->updateColAttributes(2, array('align' => 'center'));
|
24 |
florian |
1113 |
$table->updateColAttributes(3, array('style' => 'text-align:center;'));
|
5 |
florian |
1114 |
$res.=$table->toHTML() ;
|
24 |
florian |
1115 |
}
|
118 |
florian |
1116 |
else $res .= '<p class="zone_info">'.BAZ_IDENTIFIEZ_VOUS_POUR_SAISIR.'</p>'."\n";
|
5 |
florian |
1117 |
|
|
|
1118 |
return $res;
|
|
|
1119 |
}
|
|
|
1120 |
|
|
|
1121 |
|
74 |
florian |
1122 |
/** baz_valeurs_fiche() - Renvoie un tableau avec les valeurs par defaut du formulaire d'inscription
|
5 |
florian |
1123 |
*
|
|
|
1124 |
* @param integer Identifiant de la fiche
|
|
|
1125 |
*
|
74 |
florian |
1126 |
* @return array Valeurs enregistrees pour cette fiche
|
5 |
florian |
1127 |
*/
|
|
|
1128 |
function baz_valeurs_fiche($idfiche) {
|
|
|
1129 |
$requete = 'SELECT * FROM bazar_fiche WHERE bf_id_fiche='.$idfiche;
|
|
|
1130 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1131 |
if (DB::isError($resultat)) {
|
|
|
1132 |
die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
1133 |
}
|
|
|
1134 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC) ;
|
|
|
1135 |
$valeurs_fiche = array() ;
|
72 |
alexandre_ |
1136 |
$tableau = baz_valeurs_template($GLOBALS['_BAZAR_']['template']);
|
5 |
florian |
1137 |
for ($i=0; $i<count($tableau); $i++) {
|
118 |
florian |
1138 |
if ($tableau[$i]['type']=='liste' || $tableau[$i]['type']=='checkbox') {
|
|
|
1139 |
$requete = 'SELECT bfvl_valeur FROM bazar_fiche_valeur_liste WHERE bfvl_ce_fiche='.$idfiche.
|
|
|
1140 |
' AND bfvl_ce_liste='.$tableau[$i]['nom_bdd'];
|
|
|
1141 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1142 |
if (DB::isError ($resultat)) {
|
|
|
1143 |
die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
1144 |
}
|
|
|
1145 |
$nb=0;$val='';
|
|
|
1146 |
while ($result = $resultat->fetchRow()) {
|
|
|
1147 |
if ($nb>0) $val .= ', ';
|
|
|
1148 |
$val .= $result[0];
|
|
|
1149 |
$nb++;
|
|
|
1150 |
}
|
|
|
1151 |
$valeurs_fiche[$tableau[$i]['type'].$tableau[$i]['nom_bdd']] = $val;
|
|
|
1152 |
}
|
|
|
1153 |
elseif ($tableau[$i]['type']=='texte' || $tableau[$i]['type']=='textelong' || $tableau[$i]['type']=='listedatedeb' || $tableau[$i]['type']=='listedatefin') {
|
|
|
1154 |
$valeurs_fiche[$tableau[$i]['nom_bdd']] = stripslashes($ligne[$tableau[$i]['nom_bdd']]);
|
|
|
1155 |
}
|
5 |
florian |
1156 |
}
|
|
|
1157 |
return $valeurs_fiche;
|
|
|
1158 |
}
|
|
|
1159 |
|
|
|
1160 |
|
|
|
1161 |
function baz_envoie_mail() {
|
|
|
1162 |
$headers['From'] = $_SERVER['SERVER_ADMIN'] ;
|
|
|
1163 |
$headers['To'] = "<".INS_MAIL_ADMIN_APRES_INSCRIPTION.">" ;
|
|
|
1164 |
$headers['Subject'] = INS_MAIL_ADMIN_APRES_INSCRIPTION_SUJET;
|
|
|
1165 |
|
|
|
1166 |
$q = "select * from ".INS_ANNUAIRE." where ".INS_CHAMPS_MAIL."=\"".$_POST['mail']."\"" ;
|
|
|
1167 |
|
|
|
1168 |
$r = $GLOBALS['_BAZAR_']['db']->query($q) ;
|
|
|
1169 |
if (DB::isError ($r)) {
|
|
|
1170 |
die ("echec de la requete") ;
|
|
|
1171 |
}
|
|
|
1172 |
$row = $r->fetchRow(DB_FETCHMODE_ASSOC) ;
|
|
|
1173 |
|
|
|
1174 |
$body_entete = "Un nouvel inscrit à tela : \n" ;
|
|
|
1175 |
$body = "mail : ".$row[INS_CHAMPS_MAIL]."\n" ;
|
|
|
1176 |
$body .= "------------------------------------------\n";
|
|
|
1177 |
$body .= "nom: ".unhtmlentities($row[INS_CHAMPS_NOM])." \n" ;
|
|
|
1178 |
$body .= "prénom : ".unhtmlentities($row[INS_CHAMPS_PRENOM])." \n" ;
|
|
|
1179 |
$body .= "-------------------------------------------\n" ;
|
|
|
1180 |
|
|
|
1181 |
// création du mail
|
|
|
1182 |
$mail_object =& Mail::factory('mail');
|
|
|
1183 |
if (!mail ($headers['To'], $headers['Subject'], $body)) {
|
56 |
florian |
1184 |
return "Une erreur s'est produite:<br />\n" ;
|
5 |
florian |
1185 |
}
|
|
|
1186 |
$body .= INS_MAIL_INSCRIPTION_2;
|
|
|
1187 |
|
|
|
1188 |
$headers['To'] = $_POST['mail'] ;
|
|
|
1189 |
|
|
|
1190 |
// création du mail
|
|
|
1191 |
if (mail($headers['To'], $headers['Subject'], INS_MAIL_INSCRIPTION_1.$body)) {
|
56 |
florian |
1192 |
return "Une erreur s'est produite<br />\n" ;
|
5 |
florian |
1193 |
}
|
|
|
1194 |
return;
|
|
|
1195 |
}
|
|
|
1196 |
|
|
|
1197 |
|
79 |
florian |
1198 |
/** function baz_nextId () Renvoie le prochain identifiant numerique libre d'une table
|
5 |
florian |
1199 |
*
|
|
|
1200 |
* @param string Nom de la table
|
|
|
1201 |
* @param string Nom du champs identifiant
|
79 |
florian |
1202 |
* @param mixed Objet DB de PEAR pour la connexion a la base de donnees
|
5 |
florian |
1203 |
*
|
79 |
florian |
1204 |
* return integer Le prochain numero d'identifiant disponible
|
5 |
florian |
1205 |
*/
|
|
|
1206 |
function baz_nextId($table, $colonne_identifiant, $bdd) {
|
|
|
1207 |
$requete = 'SELECT MAX('.$colonne_identifiant.') AS maxi FROM '.$table;
|
|
|
1208 |
$resultat = $bdd->query($requete) ;
|
|
|
1209 |
if (DB::isError($resultat)) {
|
|
|
1210 |
die (__FILE__ . __LINE__ . $resultat->getMessage() . $requete);
|
|
|
1211 |
return $bdd->raiseError($resultat) ;
|
|
|
1212 |
}
|
|
|
1213 |
|
|
|
1214 |
if ($resultat->numRows() > 1) {
|
|
|
1215 |
return $bdd->raiseError('<br />La table '.$table.' a un identifiant non unique<br />') ;
|
|
|
1216 |
}
|
|
|
1217 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_OBJECT) ;
|
|
|
1218 |
return $ligne->maxi + 1 ;
|
|
|
1219 |
}
|
|
|
1220 |
|
|
|
1221 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
1222 |
*
|
|
|
1223 |
* $Log: not supported by cvs2svn $
|
142 |
alexandre_ |
1224 |
* Revision 1.51 2006/07/18 14:17:32 alexandre_tb
|
|
|
1225 |
* Ajout d'un formulaire d identification
|
|
|
1226 |
*
|
140 |
alexandre_ |
1227 |
* Revision 1.50 2006/06/21 08:37:59 alexandre_tb
|
|
|
1228 |
* Correction de bug, d'un appel constant (....) qui ne fonctionnais plus.
|
|
|
1229 |
*
|
131 |
alexandre_ |
1230 |
* Revision 1.49 2006/06/02 09:29:07 florian
|
|
|
1231 |
* debut d'integration de wikini
|
|
|
1232 |
*
|
129 |
florian |
1233 |
* Revision 1.48 2006/05/19 13:54:11 florian
|
|
|
1234 |
* stabilisation du moteur de recherche, corrections bugs, lien recherche avancee
|
|
|
1235 |
*
|
126 |
florian |
1236 |
* Revision 1.47 2006/04/28 12:46:14 florian
|
|
|
1237 |
* integration des liens vers annuaire
|
|
|
1238 |
*
|
118 |
florian |
1239 |
* Revision 1.46 2006/03/29 13:04:35 alexandre_tb
|
|
|
1240 |
* utilisation de la classe Administrateur_bazar
|
|
|
1241 |
*
|
111 |
alexandre_ |
1242 |
* Revision 1.45 2006/03/24 09:28:02 alexandre_tb
|
126 |
florian |
1243 |
* utilisation de la variable globale $GLOBALS['_BAZAR_']['categorie_nature']
|
111 |
alexandre_ |
1244 |
*
|
109 |
alexandre_ |
1245 |
* Revision 1.44 2006/03/14 17:10:21 florian
|
|
|
1246 |
* ajout des fonctions de syndication, changement du moteur de recherche
|
|
|
1247 |
*
|
107 |
florian |
1248 |
* Revision 1.43 2006/03/02 20:36:52 florian
|
|
|
1249 |
* les entrees du formulaire de saisir ne sont plus dans les constantes mias dans des tables qui gerent le multilinguisme.
|
|
|
1250 |
*
|
105 |
florian |
1251 |
* Revision 1.42 2006/03/01 16:23:22 florian
|
|
|
1252 |
* modifs textes fr et correction bug "undefined index"
|
|
|
1253 |
*
|
104 |
florian |
1254 |
* Revision 1.41 2006/03/01 16:05:51 florian
|
|
|
1255 |
* ajout des fichiers joints
|
|
|
1256 |
*
|
103 |
florian |
1257 |
* Revision 1.40 2006/02/06 09:33:00 alexandre_tb
|
|
|
1258 |
* correction de bug
|
|
|
1259 |
*
|
89 |
alexandre_ |
1260 |
* Revision 1.39 2006/01/30 17:25:38 alexandre_tb
|
|
|
1261 |
* correction de bugs
|
|
|
1262 |
*
|
87 |
alexandre_ |
1263 |
* Revision 1.38 2006/01/30 10:27:04 florian
|
|
|
1264 |
* - ajout des entrées de formulaire fichier, url, et image
|
|
|
1265 |
* - correction bug d'affichage du mode de saisie
|
|
|
1266 |
*
|
86 |
florian |
1267 |
* Revision 1.37 2006/01/24 14:11:11 alexandre_tb
|
|
|
1268 |
* correction de bug sur l'ajout d'une image et d'un fichier
|
|
|
1269 |
*
|
81 |
alexandre_ |
1270 |
* Revision 1.36 2006/01/19 17:42:11 florian
|
|
|
1271 |
* ajout des cases à cocher pré-cochées pour les maj
|
|
|
1272 |
*
|
79 |
florian |
1273 |
* Revision 1.35 2006/01/18 11:06:51 florian
|
|
|
1274 |
* correction erreur saisie date
|
|
|
1275 |
*
|
77 |
florian |
1276 |
* Revision 1.34 2006/01/18 10:53:28 florian
|
|
|
1277 |
* corrections bugs affichage fiche
|
|
|
1278 |
*
|
76 |
florian |
1279 |
* Revision 1.33 2006/01/18 10:07:34 florian
|
|
|
1280 |
* recodage de l'insertion et de la maj des données relatives aux listes et checkbox dans des formulaires
|
|
|
1281 |
*
|
75 |
florian |
1282 |
* Revision 1.32 2006/01/18 10:03:36 florian
|
|
|
1283 |
* recodage de l'insertion et de la maj des données relatives aux listes et checkbox dans des formulaires
|
|
|
1284 |
*
|
74 |
florian |
1285 |
* Revision 1.31 2006/01/17 10:07:08 alexandre_tb
|
|
|
1286 |
* en cours
|
|
|
1287 |
*
|
72 |
alexandre_ |
1288 |
* Revision 1.30 2006/01/16 09:42:57 alexandre_tb
|
|
|
1289 |
* en cours
|
|
|
1290 |
*
|
69 |
alexandre_ |
1291 |
* Revision 1.29 2006/01/13 14:12:51 florian
|
|
|
1292 |
* utilisation des temlates dans la table bazar_nature
|
|
|
1293 |
*
|
68 |
florian |
1294 |
* Revision 1.28 2006/01/05 16:28:24 alexandre_tb
|
|
|
1295 |
* prise en chage des checkbox, reste la mise à jour à gérer
|
|
|
1296 |
*
|
67 |
alexandre_ |
1297 |
* Revision 1.27 2006/01/04 15:30:56 alexandre_tb
|
|
|
1298 |
* mise en forme du code
|
|
|
1299 |
*
|
65 |
alexandre_ |
1300 |
* Revision 1.26 2006/01/03 10:19:31 florian
|
|
|
1301 |
* 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...
|
|
|
1302 |
*
|
64 |
florian |
1303 |
* Revision 1.25 2005/12/20 14:49:35 ddelon
|
|
|
1304 |
* Fusion Head vers Livraison
|
|
|
1305 |
*
|
61 |
ddelon |
1306 |
* Revision 1.24 2005/12/16 15:44:40 alexandre_tb
|
|
|
1307 |
* ajout de l'option restreindre dépôt
|
|
|
1308 |
*
|
60 |
alexandre_ |
1309 |
* Revision 1.23 2005/12/01 17:03:34 florian
|
|
|
1310 |
* changement des chemins pour appli Pear
|
|
|
1311 |
*
|
58 |
florian |
1312 |
* Revision 1.22 2005/12/01 16:05:41 florian
|
|
|
1313 |
* changement des chemins pour appli Pear
|
|
|
1314 |
*
|
57 |
florian |
1315 |
* Revision 1.21 2005/12/01 15:31:30 florian
|
|
|
1316 |
* correction bug modifs et saisies
|
|
|
1317 |
*
|
56 |
florian |
1318 |
* Revision 1.20 2005/11/30 13:58:45 florian
|
|
|
1319 |
* ajouts graphisme (logos, boutons), changement structure SQL bazar_fiche
|
|
|
1320 |
*
|
55 |
florian |
1321 |
* Revision 1.19 2005/11/24 16:17:13 florian
|
|
|
1322 |
* corrections bugs, ajout des cases à cocher
|
|
|
1323 |
*
|
54 |
florian |
1324 |
* Revision 1.18 2005/11/18 16:03:23 florian
|
|
|
1325 |
* correction bug html entites
|
|
|
1326 |
*
|
53 |
florian |
1327 |
* Revision 1.17 2005/11/17 18:48:02 florian
|
|
|
1328 |
* corrections bugs + amélioration de l'application d'inscription
|
|
|
1329 |
*
|
52 |
florian |
1330 |
* Revision 1.16 2005/11/07 17:30:36 florian
|
|
|
1331 |
* ajout controle sur les listes pour la saisie
|
|
|
1332 |
*
|
46 |
florian |
1333 |
* Revision 1.15 2005/11/07 17:05:45 florian
|
|
|
1334 |
* amélioration validation conditions de saisie, ajout des règles spécifiques de saisie des formulaires
|
|
|
1335 |
*
|
45 |
florian |
1336 |
* Revision 1.14 2005/11/07 08:48:02 florian
|
|
|
1337 |
* correction pb guillemets pour saisie et modif de fiche
|
|
|
1338 |
*
|
44 |
florian |
1339 |
* Revision 1.13 2005/10/21 16:15:04 florian
|
|
|
1340 |
* mise a jour appropriation
|
|
|
1341 |
*
|
34 |
alexandre_ |
1342 |
* Revision 1.11 2005/10/12 17:20:33 ddelon
|
|
|
1343 |
* Reorganisation calendrier + applette
|
|
|
1344 |
*
|
30 |
ddelon |
1345 |
* Revision 1.10 2005/10/12 15:14:06 florian
|
|
|
1346 |
* amélioration de l'interface de bazar, de manière a simplifier les consultations, et à harmoniser par rapport aux Ressources
|
|
|
1347 |
*
|
24 |
florian |
1348 |
* Revision 1.9 2005/10/10 16:22:52 alexandre_tb
|
|
|
1349 |
* Correction de bug. Lorsqu'on revient en arrière après avoir validé un formulaire.
|
|
|
1350 |
*
|
21 |
alexandre_ |
1351 |
* Revision 1.8 2005/09/30 13:50:07 alexandre_tb
|
|
|
1352 |
* correction bug date parution ressource
|
|
|
1353 |
*
|
13 |
alexandre_ |
1354 |
* Revision 1.7 2005/09/30 13:15:58 ddelon
|
|
|
1355 |
* compatibilité php5
|
|
|
1356 |
*
|
12 |
ddelon |
1357 |
* Revision 1.6 2005/09/30 13:00:05 ddelon
|
|
|
1358 |
* Fiche bazar generique
|
|
|
1359 |
*
|
11 |
ddelon |
1360 |
* Revision 1.5 2005/09/30 12:22:54 florian
|
|
|
1361 |
* Ajouts commentaires pour fiche, modifications graphiques, maj SQL
|
|
|
1362 |
*
|
7 |
florian |
1363 |
* Revision 1.3 2005/07/21 19:03:12 florian
|
|
|
1364 |
* nouveautés bazar: templates fiches, correction de bugs, ...
|
|
|
1365 |
*
|
5 |
florian |
1366 |
* Revision 1.1.1.1 2005/02/17 18:05:11 florian
|
|
|
1367 |
* Import initial de Bazar
|
|
|
1368 |
*
|
|
|
1369 |
* Revision 1.1.1.1 2005/02/17 11:09:50 florian
|
|
|
1370 |
* Import initial
|
|
|
1371 |
*
|
|
|
1372 |
* Revision 1.1.1.1 2005/02/16 18:06:35 florian
|
|
|
1373 |
* import de la nouvelle version
|
|
|
1374 |
*
|
|
|
1375 |
* Revision 1.10 2004/07/08 17:25:25 florian
|
|
|
1376 |
* ajout commentaires + petits debuggages
|
|
|
1377 |
*
|
|
|
1378 |
* Revision 1.8 2004/07/07 14:30:19 florian
|
24 |
florian |
1379 |
* débogage RSS
|
5 |
florian |
1380 |
*
|
|
|
1381 |
* Revision 1.7 2004/07/06 16:22:01 florian
|
24 |
florian |
1382 |
* débogage modification + MAJ flux RSS
|
5 |
florian |
1383 |
*
|
|
|
1384 |
* Revision 1.6 2004/07/06 09:28:26 florian
|
|
|
1385 |
* changement interface de modification
|
|
|
1386 |
*
|
|
|
1387 |
* Revision 1.5 2004/07/05 15:10:23 florian
|
|
|
1388 |
* changement interface de saisie
|
|
|
1389 |
*
|
|
|
1390 |
* Revision 1.4 2004/07/02 14:51:14 florian
|
|
|
1391 |
* ajouts divers pour faire fonctionner l'insertion de fiches
|
|
|
1392 |
*
|
|
|
1393 |
* Revision 1.3 2004/07/01 16:37:42 florian
|
|
|
1394 |
* ajout de fonctions pour les templates
|
|
|
1395 |
*
|
|
|
1396 |
* Revision 1.2 2004/07/01 13:00:13 florian
|
|
|
1397 |
* modif Florian
|
|
|
1398 |
*
|
|
|
1399 |
* Revision 1.1 2004/06/23 09:58:32 alex
|
|
|
1400 |
* version initiale
|
|
|
1401 |
*
|
|
|
1402 |
* Revision 1.1 2004/06/18 09:00:37 alex
|
|
|
1403 |
* version initiale
|
|
|
1404 |
*
|
|
|
1405 |
*
|
|
|
1406 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
1407 |
*/
|
|
|
1408 |
|
|
|
1409 |
?>
|