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 |
// +------------------------------------------------------------------------------------------------------+
|
131 |
alexandre_ |
22 |
// CVS : $Id: bazar.fonct.php,v 1.50 2006-06-21 08:37:59 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
|
131 |
alexandre_ |
34 |
*@version $Revision: 1.50 $ $Date: 2006-06-21 08:37:59 $
|
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'];
|
|
|
481 |
$mode = BAZ_ACTION_NOUVEAU;
|
|
|
482 |
} else {
|
|
|
483 |
$res.='<br />'.BAZ_CHOIX_TYPEANNONCE.'<br /><br />'."\n";
|
|
|
484 |
while ($ligne = $resultat->fetchRow (DB_FETCHMODE_ASSOC)) {
|
|
|
485 |
$droitspers=niveau_droit($ligne["bn_id_nature"],$GLOBALS["id_user"]);
|
|
|
486 |
if (($droitspers=='redacteur') or ($droitspers=='administrateur')
|
|
|
487 |
or ($droitspers=='superadministrateur' or !BAZ_RESTREINDRE_DEPOT)) {
|
|
|
488 |
if ($ligne['bn_image_titre']!='') {
|
|
|
489 |
$titre=' <img src="client/bazar/images/'.$ligne['bn_image_titre'].'" alt="'.
|
131 |
alexandre_ |
490 |
$ligne['bn_label_nature'].'" />'.'<br />'."\n";
|
118 |
florian |
491 |
} else {
|
|
|
492 |
$titre='<h3>'.$ligne['bn_label_nature'].' : </h3>'."\n";
|
|
|
493 |
}
|
|
|
494 |
$formtemplate->addElement('radio', 'typeannonce', '',
|
|
|
495 |
$titre.$ligne['bn_description'].'<br /><br />'."\n",
|
|
|
496 |
$ligne['bn_id_nature'], array("id" => 'select'.$ligne['bn_id_nature'],
|
|
|
497 |
"style" => 'float:left;'));
|
|
|
498 |
}
|
|
|
499 |
}
|
|
|
500 |
$squelette->setElementTemplate( '<div class="listechoix">'."\n".'{element}'."\n".'</div>'."\n");
|
|
|
501 |
|
|
|
502 |
//Mettre les annonces en choix par defaut
|
|
|
503 |
$formtemplate->setdefaults(array('typeannonce'=>'1'));
|
|
|
504 |
|
|
|
505 |
//Bouton de validation du formulaire
|
|
|
506 |
$formtemplate->addElement('submit', 'valider', BAZ_VALIDER);
|
|
|
507 |
|
|
|
508 |
//Affichage a l'ecran
|
|
|
509 |
$res.= $formtemplate->toHTML()."\n".'<br />'."\n".mes_fiches(); ;
|
5 |
florian |
510 |
}
|
|
|
511 |
}
|
|
|
512 |
|
56 |
florian |
513 |
//------------------------------------------------------------------------------------------------
|
|
|
514 |
//AFFICHAGE DU FORMULAIRE CORRESPONDANT AU TYPE DE L'ANNONCE CHOISI PAR L'UTILISATEUR
|
|
|
515 |
//------------------------------------------------------------------------------------------------
|
|
|
516 |
if ($mode == BAZ_ACTION_NOUVEAU) {
|
89 |
alexandre_ |
517 |
unset ($_SESSION['formulaire_annonce_valide']) ;
|
|
|
518 |
$res = baz_afficher_formulaire_annonce('insertion',$formtemplate);
|
5 |
florian |
519 |
}
|
|
|
520 |
|
56 |
florian |
521 |
//------------------------------------------------------------------------------------------------
|
|
|
522 |
//CAS DE LA MODIFICATION D'UNE ANNONCE (FORMULAIRE DE MODIFICATION)
|
|
|
523 |
//------------------------------------------------------------------------------------------------
|
|
|
524 |
if ($mode == BAZ_ACTION_MODIFIER) {
|
|
|
525 |
$res=baz_afficher_formulaire_annonce('modification',$formtemplate);
|
5 |
florian |
526 |
}
|
|
|
527 |
|
56 |
florian |
528 |
//------------------------------------------------------------------------------------------------
|
|
|
529 |
//CAS DE L'INSCRIPTION D'UNE ANNONCE
|
|
|
530 |
//------------------------------------------------------------------------------------------------
|
68 |
florian |
531 |
if ($mode == BAZ_ACTION_NOUVEAU_V) {
|
56 |
florian |
532 |
if ($formtemplate->validate() && !isset($_SESSION['formulaire_annonce_valide'])) {
|
|
|
533 |
$formtemplate->process('baz_insertion', false) ;
|
|
|
534 |
$_SESSION['formulaire_annonce_valide'] = 1;
|
|
|
535 |
return;
|
|
|
536 |
}
|
|
|
537 |
}
|
5 |
florian |
538 |
|
56 |
florian |
539 |
//------------------------------------------------------------------------------------------------
|
|
|
540 |
//CAS DE LA MODIFICATION D'UNE ANNONCE (VALIDATION ET MAJ)
|
|
|
541 |
//------------------------------------------------------------------------------------------------
|
|
|
542 |
if ($mode == BAZ_ACTION_MODIFIER_V) {
|
|
|
543 |
if ($formtemplate->validate()) {
|
|
|
544 |
$formtemplate->process('baz_mise_a_jour', false) ;
|
|
|
545 |
return ;
|
5 |
florian |
546 |
}
|
56 |
florian |
547 |
}
|
24 |
florian |
548 |
}
|
118 |
florian |
549 |
else {
|
|
|
550 |
$res .= '<h2>'.BAZ_DEPOSE_UNE_NOUVELLE_ANNONCE.'</h2><br />'."\n";
|
|
|
551 |
$res .= '<p class="zone_info">'.BAZ_IDENTIFIEZ_VOUS_POUR_SAISIR.'</p>'."\n" ;
|
|
|
552 |
}
|
5 |
florian |
553 |
return $res;
|
|
|
554 |
}
|
|
|
555 |
|
54 |
florian |
556 |
/** baz_afficher_formulaire_annonce() - Genere le formulaire de saisie d'une annonce
|
|
|
557 |
*
|
|
|
558 |
* @param string type de formulaire: insertion ou modification
|
|
|
559 |
* @param mixed objet quickform du formulaire
|
|
|
560 |
*
|
|
|
561 |
* @return string code HTML avec formulaire
|
|
|
562 |
*/
|
|
|
563 |
function baz_afficher_formulaire_annonce($mode='insertion',$formtemplate) {
|
118 |
florian |
564 |
if ($mode=='modification') {
|
|
|
565 |
//initialisation de la variable globale id_fiche
|
|
|
566 |
$GLOBALS['_BAZAR_']['id_fiche'] = $_REQUEST['id_fiche'];
|
|
|
567 |
|
|
|
568 |
//suppression eventuelle d'une url, d'un fichier ou d'une image
|
|
|
569 |
if (isset($_GET['id_url'])) {
|
|
|
570 |
baz_suppression_url($_GET['id_url']);
|
|
|
571 |
}
|
|
|
572 |
if (isset($_GET['id_fichier'])) {
|
|
|
573 |
baz_suppression_fichier($_GET['id_fichier']);
|
|
|
574 |
}
|
|
|
575 |
if (isset($_GET['image'])) {
|
|
|
576 |
baz_suppression_image($GLOBALS['_BAZAR_']['id_fiche']);
|
|
|
577 |
}
|
54 |
florian |
578 |
}
|
|
|
579 |
|
|
|
580 |
//titre de la rubrique
|
105 |
florian |
581 |
$res= '<h2>'.BAZ_TITRE_SAISIE_ANNONCE.' '.$GLOBALS['_BAZAR_']['typeannonce'].'</h2><br />'."\n";
|
68 |
florian |
582 |
if (($GLOBALS['_BAZAR_']['condition']!='')AND(!isset($_POST['accept_condition']))AND(!isset($_GET['url'])OR(!isset($_GET['fichier']))OR(!isset($_GET['image'])))) {
|
118 |
florian |
583 |
require_once PAP_CHEMIN_API_PEAR.'HTML/QuickForm/html.php';
|
68 |
florian |
584 |
$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 |
585 |
$formtemplate->addElement($conditions);
|
|
|
586 |
$formtemplate->addElement('checkbox', 'accept_condition',BAZ_ACCEPTE_CONDITIONS) ;
|
68 |
florian |
587 |
$formtemplate->addElement('hidden', 'typeannonce', $GLOBALS['_BAZAR_']['id_typeannonce']);
|
54 |
florian |
588 |
$formtemplate->addRule('accept_condition', BAZ_ACCEPTE_CONDITIONS_REQUIS, 'required', '', 'client') ;
|
|
|
589 |
$formtemplate->addElement('submit', 'valider', BAZ_VALIDER);
|
|
|
590 |
}
|
118 |
florian |
591 |
//affichage du formulaire si conditions acceptees
|
54 |
florian |
592 |
else {
|
118 |
florian |
593 |
//Parcours du fichier de templates, pour mettre les valeurs des champs
|
|
|
594 |
$tableau=baz_valeurs_template($GLOBALS['_BAZAR_']['template']);
|
|
|
595 |
if ($mode=='modification') {
|
|
|
596 |
//Ajout des valeurs par defaut
|
|
|
597 |
$valeurs_par_defaut = baz_valeurs_fiche($GLOBALS['_BAZAR_']['id_fiche']) ;
|
|
|
598 |
for ($i=0; $i<count($tableau); $i++) {
|
|
|
599 |
if ( $tableau[$i]['type']=='liste' || $tableau[$i]['type']=='checkbox' ) {
|
|
|
600 |
$def=$tableau[$i]['type'].$tableau[$i]['nom_bdd'];
|
|
|
601 |
}
|
|
|
602 |
elseif ( $tableau[$i]['type']=='texte' || $tableau[$i]['type']=='textelong' || $tableau[$i]['type']=='listedatedeb' || $tableau[$i]['type']=='listedatefin' ) {
|
|
|
603 |
$def=$tableau[$i]['nom_bdd'];
|
|
|
604 |
}
|
|
|
605 |
$tableau[$i]['type']($formtemplate, $tableau[$i]['nom_bdd'], $tableau[$i]['label'], $tableau[$i]['limite1'],
|
|
|
606 |
$tableau[$i]['limite2'], $valeurs_par_defaut[$def], $tableau[$i]['table_source'], $tableau[$i]['obligatoire']) ;
|
79 |
florian |
607 |
}
|
54 |
florian |
608 |
}
|
|
|
609 |
else {
|
118 |
florian |
610 |
for ($i=0; $i<count($tableau); $i++) {
|
|
|
611 |
$tableau[$i]['type']($formtemplate, $tableau[$i]['nom_bdd'], $tableau[$i]['label'], $tableau[$i]['limite1'],
|
|
|
612 |
$tableau[$i]['limite2'], $tableau[$i]['defaut'], $tableau[$i]['table_source'], $tableau[$i]['obligatoire']) ;
|
|
|
613 |
}
|
54 |
florian |
614 |
}
|
118 |
florian |
615 |
$formtemplate->addElement('hidden', 'typeannonce', $GLOBALS['_BAZAR_']['id_typeannonce']);
|
|
|
616 |
$formtemplate->addElement('submit', 'valider', BAZ_VALIDER);
|
54 |
florian |
617 |
}
|
118 |
florian |
618 |
|
54 |
florian |
619 |
//Affichage a l'ecran
|
118 |
florian |
620 |
$res .= $formtemplate->toHTML()."\n";
|
54 |
florian |
621 |
return $res;
|
|
|
622 |
}
|
|
|
623 |
|
|
|
624 |
|
5 |
florian |
625 |
/** requete_bazar_fiche() - preparer la requete d'insertion ou de MAJ de la table bazar_fiche à partir du fichier de template
|
|
|
626 |
*
|
|
|
627 |
* @global mixed L'objet contenant les valeurs issues de la saisie du formulaire
|
|
|
628 |
* @return void
|
|
|
629 |
*/
|
|
|
630 |
function requete_bazar_fiche($valeur) {
|
|
|
631 |
$requete=NULL;
|
|
|
632 |
//l'annonce est directement publiée pour les admins
|
|
|
633 |
if ((niveau_droit($GLOBALS['_BAZAR_']['id_typeannonce'],$GLOBALS['id_user'])=='administrateur') or
|
|
|
634 |
(niveau_droit($GLOBALS['_BAZAR_']['id_typeannonce'],$GLOBALS['id_user'])=='superadministrateur')) {
|
68 |
florian |
635 |
$requete.='bf_statut_fiche=1, ';
|
5 |
florian |
636 |
}
|
|
|
637 |
else {
|
68 |
florian |
638 |
$requete.='bf_statut_fiche="'.BAZ_ETAT_VALIDATION.'", ';
|
75 |
florian |
639 |
}
|
69 |
alexandre_ |
640 |
$tableau=baz_valeurs_template($GLOBALS['_BAZAR_']['template']);
|
5 |
florian |
641 |
for ($i=0; $i<count($tableau); $i++) {
|
118 |
florian |
642 |
//cas des checkbox et des listes
|
|
|
643 |
if ($tableau[$i]['type']=='checkbox' || $tableau[$i]['type']=='liste') {
|
|
|
644 |
//on supprime les anciennes valeurs de la table bazar_fiche_valeur_liste
|
|
|
645 |
$requetesuppression='DELETE FROM bazar_fiche_valeur_liste WHERE bfvl_ce_fiche='.$GLOBALS['_BAZAR_']['id_fiche'].' AND bfvl_ce_liste='.$tableau[$i]['nom_bdd'];
|
|
|
646 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requetesuppression) ;
|
|
|
647 |
if (DB::isError($resultat)) {
|
|
|
648 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
649 |
}
|
126 |
florian |
650 |
if (isset($valeur[$tableau[$i]['type'].$tableau[$i]['nom_bdd']]) && ($valeur[$tableau[$i]['type'].$tableau[$i]['nom_bdd']]!=0)) {
|
74 |
florian |
651 |
//on insere les nouvelles valeurs
|
|
|
652 |
$requeteinsertion='INSERT INTO bazar_fiche_valeur_liste (bfvl_ce_fiche, bfvl_ce_liste, bfvl_valeur) VALUES ';
|
|
|
653 |
//pour les checkbox, les différentes valeurs sont dans un tableau
|
|
|
654 |
if (is_array($valeur[$tableau[$i]['type'].$tableau[$i]['nom_bdd']])) {
|
76 |
florian |
655 |
$nb=0;
|
74 |
florian |
656 |
while (list($cle, $val) = each($valeur[$tableau[$i]['type'].$tableau[$i]['nom_bdd']])) {
|
118 |
florian |
657 |
|
76 |
florian |
658 |
if ($nb>0) $requeteinsertion .= ', ';
|
|
|
659 |
$requeteinsertion .= '('.$GLOBALS['_BAZAR_']['id_fiche'].', '.$tableau[$i]['nom_bdd'].', '.$cle.') ';
|
|
|
660 |
$nb++;
|
74 |
florian |
661 |
}
|
|
|
662 |
}
|
|
|
663 |
//pour les listes, une insertion de la valeur suffit
|
|
|
664 |
else {
|
126 |
florian |
665 |
$requeteinsertion .= '('.$GLOBALS['_BAZAR_']['id_fiche'].', '.$tableau[$i]['nom_bdd'].', '.$valeur[$tableau[$i]['type'].$tableau[$i]['nom_bdd']].')';
|
74 |
florian |
666 |
}
|
118 |
florian |
667 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requeteinsertion) ;
|
74 |
florian |
668 |
if (DB::isError($resultat)) {
|
|
|
669 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
55 |
florian |
670 |
}
|
118 |
florian |
671 |
}
|
|
|
672 |
}
|
|
|
673 |
//cas des fichiers
|
|
|
674 |
elseif ($tableau[$i]['type']=='fichier') {
|
|
|
675 |
if (isset($valeur['texte_fichier'.$tableau[$i]['nom_bdd']]) && $valeur['texte_fichier'.$tableau[$i]['nom_bdd']]!='') {
|
|
|
676 |
baz_insertion_fichier($valeur['texte_fichier'.$tableau[$i]['nom_bdd']], $GLOBALS['_BAZAR_']['id_fiche'], 'fichier'.$tableau[$i]['nom_bdd']);
|
|
|
677 |
}
|
|
|
678 |
}
|
|
|
679 |
//cas des urls
|
|
|
680 |
elseif ($tableau[$i]['type']=='url') {
|
|
|
681 |
if (isset($valeur['url_lien'.$tableau[$i]['nom_bdd']]) && $valeur['url_lien'.$tableau[$i]['nom_bdd']]!='' ) {
|
|
|
682 |
baz_insertion_url($valeur['url_lien'.$tableau[$i]['nom_bdd']], $valeur['url_texte'.$tableau[$i]['nom_bdd']], $GLOBALS['_BAZAR_']['id_fiche']);
|
54 |
florian |
683 |
}
|
118 |
florian |
684 |
}
|
|
|
685 |
//cas des images
|
|
|
686 |
elseif ($tableau[$i]['type']=='image') {
|
|
|
687 |
if (isset($_FILES['image']['name']) && $_FILES['image']['name']!='') {
|
|
|
688 |
baz_insertion_image($GLOBALS['_BAZAR_']['id_fiche']);
|
103 |
florian |
689 |
}
|
5 |
florian |
690 |
}
|
118 |
florian |
691 |
//cas des dates
|
|
|
692 |
elseif ( $tableau[$i]['type']=='listedatedeb' || $tableau[$i]['type']=='listedatefin' ) {
|
|
|
693 |
$val=$valeur[$tableau[$i]['nom_bdd']]['Y'].'-'.$valeur[$tableau[$i]['nom_bdd']]['m'].'-'.$valeur[$tableau[$i]['nom_bdd']]['d'] ;
|
|
|
694 |
$requete .= $tableau[$i]['nom_bdd'].'="'.$val.'", ' ;
|
|
|
695 |
}
|
|
|
696 |
//cas des champs texte
|
|
|
697 |
elseif ( $tableau[$i]['type']=='texte' || $tableau[$i]['type']=='textelong' ) {
|
|
|
698 |
//on mets les slashes pour les saisies dans les champs texte et textearea
|
|
|
699 |
$val=addslashes($valeur[$tableau[$i]['nom_bdd']]) ;
|
|
|
700 |
$requete .= $tableau[$i]['nom_bdd'].'="'.$val.'", ' ;
|
129 |
florian |
701 |
}
|
|
|
702 |
//cas des wikinis
|
|
|
703 |
elseif ( $tableau[$i]['type']=='wikini' && $_REQUEST['action']==BAZ_ACTION_NOUVEAU_V ) {
|
|
|
704 |
//on appelle les pages des apis et de l'integrateur wikini
|
|
|
705 |
include_once PAP_CHEMIN_RACINE.'api/sql/SQL_manipulation.fonct.php';
|
|
|
706 |
include_once PAP_CHEMIN_RACINE.'client/integrateur_wikini/configuration/adwi_configuration.inc.php' ;
|
|
|
707 |
include_once PAP_CHEMIN_RACINE.'client/integrateur_wikini/bibliotheque/adwi_wikini.fonct.php' ;
|
|
|
708 |
$requete_nom_wiki= 'SELECT '.BAZ_CHAMPS_NOM_WIKI.' FROM '.BAZ_ANNUAIRE.' WHERE '.BAZ_CHAMPS_ID.'='.$GLOBALS['id_user'];
|
|
|
709 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete_nom_wiki) ;
|
|
|
710 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
711 |
$nom_wiki=$ligne[BAZ_CHAMPS_NOM_WIKI];
|
|
|
712 |
}
|
|
|
713 |
|
|
|
714 |
$requete_nombre_projet = 'SELECT max('.$tableau[$i]['nom_bdd'].') FROM bazar_fiche WHERE bf_ce_utilisateur='.$GLOBALS['id_user'];
|
|
|
715 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete_nombre_projet) ;
|
|
|
716 |
if ($resultat->numRows()>0) {
|
|
|
717 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
718 |
echo 'valeur du max: ';var_dump($ligne);
|
|
|
719 |
//on rajoute un au projet de plus haut identifiant, pour le projet suivant
|
|
|
720 |
$id_wiki_projet=$ligne[0]+1;
|
|
|
721 |
}
|
|
|
722 |
}
|
|
|
723 |
else $id_wiki_projet=1;
|
|
|
724 |
$valeur=array ("action"=> "nouveau_v", "code_alpha_wikini"=>$nom_wiki.$id_wiki_projet, "page"=>"AccueiL", "bdd_hote"=> "",
|
|
|
725 |
"bdd_nom"=> "", "bdd_utilisateur"=> "", "bdd_mdp" => "", "table_prefix"=> "", "chemin" => "wikini/".$nom_wiki.$id_wiki_projet, "valider"=> "Valider");
|
|
|
726 |
var_dump($valeur);
|
|
|
727 |
$val = insertion($valeur, $GLOBALS['_BAZAR_']['db']);
|
|
|
728 |
$requete .= $tableau[$i]['nom_bdd'].'="'.$val.'", ' ;
|
118 |
florian |
729 |
}
|
|
|
730 |
}
|
74 |
florian |
731 |
$requete.=' bf_date_maj_fiche=NOW()';
|
5 |
florian |
732 |
return $requete;
|
|
|
733 |
}
|
|
|
734 |
|
|
|
735 |
/** baz_insertion() - inserer une nouvelle fiche
|
|
|
736 |
*
|
67 |
alexandre_ |
737 |
* @array Le tableau des valeurs a inserer
|
5 |
florian |
738 |
* @integer Valeur de l'identifiant de la fiche
|
|
|
739 |
* @return void
|
|
|
740 |
*/
|
68 |
florian |
741 |
function baz_insertion($valeur) {
|
53 |
florian |
742 |
// =========== Insertion d'une nouvelle fiche ===================
|
5 |
florian |
743 |
//requete d'insertion dans bazar_fiche
|
74 |
florian |
744 |
$GLOBALS['_BAZAR_']['id_fiche'] = baz_nextid('bazar_fiche', 'bf_id_fiche', $GLOBALS['_BAZAR_']['db']) ;
|
|
|
745 |
$requete = 'INSERT INTO bazar_fiche SET bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'].','.
|
5 |
florian |
746 |
'bf_ce_utilisateur='.$GLOBALS['id_user'].', bf_ce_nature='.$GLOBALS['_BAZAR_']['id_typeannonce'].','.
|
13 |
alexandre_ |
747 |
'bf_date_creation_fiche=NOW(),';
|
68 |
florian |
748 |
if ($GLOBALS['_BAZAR_']['appropriation']== 1) {
|
53 |
florian |
749 |
$requete .= 'bf_date_debut_validite_fiche=now(), ' ;
|
|
|
750 |
}
|
74 |
florian |
751 |
$requete .=requete_bazar_fiche(&$valeur) ;
|
53 |
florian |
752 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
753 |
if (DB::isError($resultat)) {
|
|
|
754 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
755 |
}
|
|
|
756 |
return;
|
5 |
florian |
757 |
}
|
|
|
758 |
|
|
|
759 |
|
118 |
florian |
760 |
/** baz_insertion_url() - inserer un lien URL a une fiche
|
5 |
florian |
761 |
*
|
|
|
762 |
* @global string L'url du lien
|
|
|
763 |
* @global string Le texte du lien
|
|
|
764 |
* @global integer L'identifiant de la fiche
|
|
|
765 |
* @return void
|
|
|
766 |
*/
|
|
|
767 |
function baz_insertion_url($url_lien, $url_texte, $idfiche) {
|
|
|
768 |
//requete d'insertion dans bazar_url
|
|
|
769 |
$id_url = baz_nextId('bazar_url', 'bu_id_url', $GLOBALS['_BAZAR_']['db']) ;
|
|
|
770 |
$requete = 'INSERT INTO bazar_url SET bu_id_url='.$id_url.', bu_ce_fiche='.$idfiche.', '.
|
|
|
771 |
'bu_url="'.$url_lien.'", bu_descriptif_url="'.addslashes($url_texte).'"';
|
|
|
772 |
|
|
|
773 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
774 |
if (DB::isError($resultat)) {
|
|
|
775 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
776 |
}
|
|
|
777 |
return;
|
|
|
778 |
}
|
|
|
779 |
|
|
|
780 |
|
67 |
alexandre_ |
781 |
/** baz_insertion_fichier() - inserer un fichier a une fiche
|
5 |
florian |
782 |
*
|
|
|
783 |
* @global string Le label du fichier
|
|
|
784 |
* @global string La description du fichier
|
|
|
785 |
* @global integer L'identifiant de la fiche
|
|
|
786 |
* @return void
|
|
|
787 |
*/
|
103 |
florian |
788 |
function baz_insertion_fichier($fichier_description, $idfiche, $nom_fichier='fichier_joint') {
|
68 |
florian |
789 |
//verification de la presence de ce fichier
|
103 |
florian |
790 |
$requete = 'SELECT bfj_id_fichier FROM bazar_fichier_joint WHERE bfj_fichier="'.$_FILES[$nom_fichier]['name'].'"';
|
5 |
florian |
791 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
792 |
if (DB::isError($resultat)) {
|
|
|
793 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
794 |
}
|
|
|
795 |
if ($resultat->numRows()==0) {
|
103 |
florian |
796 |
$chemin_destination=BAZ_CHEMIN_APPLI.'upload/'.$_FILES[$nom_fichier]['name'];
|
|
|
797 |
move_uploaded_file($_FILES[$nom_fichier]['tmp_name'], $chemin_destination);
|
5 |
florian |
798 |
}
|
|
|
799 |
$id_fichier_joint = baz_nextId('bazar_fichier_joint', 'bfj_id_fichier', $GLOBALS['_BAZAR_']['db']) ;
|
|
|
800 |
$requete = 'INSERT INTO bazar_fichier_joint SET bfj_id_fichier='.$id_fichier_joint.', bfj_ce_fiche='.$idfiche.
|
103 |
florian |
801 |
', bfj_description="'.addslashes($fichier_description).'", bfj_fichier="'.$_FILES[$nom_fichier]['name'].'"';
|
5 |
florian |
802 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
803 |
if (DB::isError($resultat)) {
|
|
|
804 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
805 |
}
|
|
|
806 |
return;
|
|
|
807 |
}
|
|
|
808 |
|
|
|
809 |
|
118 |
florian |
810 |
/** baz_insertion_image() - inserer une image a une fiche
|
5 |
florian |
811 |
*
|
|
|
812 |
* @global integer L'identifiant de la fiche
|
|
|
813 |
* @return void
|
|
|
814 |
*/
|
|
|
815 |
function baz_insertion_image($idfiche) {
|
68 |
florian |
816 |
//verification de la presence de ce fichier
|
5 |
florian |
817 |
$requete = 'SELECT bf_id_fiche FROM bazar_fiche WHERE bf_url_image="'.$_FILES['image']['name'].'"';
|
|
|
818 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
819 |
if (DB::isError($resultat)) {
|
|
|
820 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
821 |
}
|
|
|
822 |
if ($resultat->numRows()==0) {
|
118 |
florian |
823 |
$chemin_destination=BAZ_CHEMIN_APPLI.'upload/'.$_FILES['image']['name'];
|
5 |
florian |
824 |
move_uploaded_file($_FILES['image']['tmp_name'], $chemin_destination);
|
|
|
825 |
}
|
118 |
florian |
826 |
//verification de l'existence de la fiche
|
5 |
florian |
827 |
$requete = 'SELECT bf_id_fiche FROM bazar_fiche WHERE bf_id_fiche='.$idfiche;
|
|
|
828 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
829 |
if (DB::isError($resultat)) {
|
|
|
830 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
831 |
}
|
|
|
832 |
if ($resultat->numRows()==0) {
|
68 |
florian |
833 |
//creation d'une fiche temporaire avec l'image
|
5 |
florian |
834 |
$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'].'", '.
|
|
|
835 |
'bf_titre="annonce temporaire"';
|
|
|
836 |
}
|
|
|
837 |
else {
|
|
|
838 |
$requete='UPDATE bazar_fiche SET bf_url_image="'.$_FILES['image']['name'].'" WHERE bf_id_fiche='.$idfiche;
|
|
|
839 |
}
|
|
|
840 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
841 |
if (DB::isError($resultat)) {
|
|
|
842 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
843 |
}
|
|
|
844 |
return;
|
|
|
845 |
}
|
|
|
846 |
|
|
|
847 |
|
|
|
848 |
/** baz_mise_a_jour() - Mettre a jour une fiche
|
|
|
849 |
*
|
|
|
850 |
* @global Le contenu du formulaire de saisie de l'annonce
|
|
|
851 |
* @return void
|
|
|
852 |
*/
|
|
|
853 |
function baz_mise_a_jour($valeur) {
|
|
|
854 |
//MAJ de bazar_fiche
|
|
|
855 |
$requete = 'UPDATE bazar_fiche SET '.requete_bazar_fiche(&$valeur,$GLOBALS['_BAZAR_']['id_typeannonce']);
|
|
|
856 |
$requete.= ' WHERE bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
|
|
|
857 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
858 |
if (DB::isError($resultat)) {
|
|
|
859 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
860 |
}
|
|
|
861 |
return;
|
|
|
862 |
}
|
|
|
863 |
|
|
|
864 |
|
|
|
865 |
/** baz_suppression() - Supprime une fiche
|
|
|
866 |
*
|
67 |
alexandre_ |
867 |
* @global L'identifiant de la fiche a supprimer
|
5 |
florian |
868 |
* @return void
|
|
|
869 |
*/
|
|
|
870 |
function baz_suppression() {
|
|
|
871 |
//suppression dans bazar_fiche
|
74 |
florian |
872 |
$requete = 'DELETE FROM bazar_fiche WHERE bf_id_fiche = '.$_GET['id_fiche'];
|
5 |
florian |
873 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
874 |
if (DB::isError($resultat)) {
|
|
|
875 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo().'<br />'."\n") ;
|
|
|
876 |
}
|
129 |
florian |
877 |
//TODO: verifier si wikini est associee a la fiche
|
|
|
878 |
//suppression des wikinis associes
|
|
|
879 |
include_once PAP_CHEMIN_RACINE.'client/integrateur_wikini/bibliotheque/adwi_wikini.fonct.php' ;
|
|
|
880 |
$id_wikini='';
|
|
|
881 |
adwi_supprimer_wikini($id_wikini, $GLOBALS['_BAZAR_']['db']);
|
67 |
alexandre_ |
882 |
|
74 |
florian |
883 |
// suppression des valeurs des listes et des cases à cocher
|
|
|
884 |
$requete = 'DELETE FROM bazar_fiche_valeur_liste WHERE bfvl_ce_fiche='.$_GET['id_fiche'];
|
|
|
885 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
886 |
if (DB::isError($resultat)) {
|
|
|
887 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
888 |
}
|
67 |
alexandre_ |
889 |
|
|
|
890 |
//suppression des urls associes
|
74 |
florian |
891 |
$requete = 'SELECT bu_id_url FROM bazar_url WHERE bu_ce_fiche = '.$_GET['id_fiche'];
|
5 |
florian |
892 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
893 |
if (DB::isError($resultat)) {
|
|
|
894 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo().'<br />'."\n") ;
|
|
|
895 |
}
|
|
|
896 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
897 |
baz_suppression_url($ligne['bu_id_url']);
|
|
|
898 |
}
|
|
|
899 |
|
67 |
alexandre_ |
900 |
//suppression des fichiers associes
|
74 |
florian |
901 |
$requete = 'SELECT bfj_id_fichier FROM bazar_fichier_joint WHERE bfj_ce_fiche = '.$_GET['id_fiche'];
|
5 |
florian |
902 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
903 |
if (DB::isError($resultat)) {
|
|
|
904 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo().'<br />'."\n") ;
|
|
|
905 |
}
|
|
|
906 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
907 |
baz_suppression_fichier($ligne['bfj_id_fichier']);
|
|
|
908 |
}
|
74 |
florian |
909 |
|
5 |
florian |
910 |
return ;
|
|
|
911 |
}
|
|
|
912 |
|
|
|
913 |
|
|
|
914 |
/** baz_suppression_url() - Supprimer un lien d'une fiche
|
|
|
915 |
*
|
|
|
916 |
* @global integer L'identifiant du lien
|
|
|
917 |
* @return void
|
|
|
918 |
*/
|
|
|
919 |
function baz_suppression_url($id_url) {
|
|
|
920 |
//suppression dans bazar_url
|
|
|
921 |
$requete = 'DELETE FROM bazar_url WHERE bu_id_url = '.$id_url;
|
|
|
922 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
923 |
if (DB::isError($resultat)) {
|
|
|
924 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
925 |
}
|
|
|
926 |
return;
|
|
|
927 |
}
|
|
|
928 |
|
|
|
929 |
|
|
|
930 |
/** baz_suppression_fichier() - Supprimer un fichier d'une fiche
|
|
|
931 |
*
|
|
|
932 |
* @global integer L'identifiant du fichier
|
|
|
933 |
* @return void
|
|
|
934 |
*/
|
|
|
935 |
function baz_suppression_fichier($id_fichier) {
|
68 |
florian |
936 |
//verification de l'utilisation du fichier joint pour une autre annonce
|
5 |
florian |
937 |
$requete = 'SELECT bfj_fichier FROM bazar_fichier_joint WHERE bfj_id_fichier='.$id_fichier;
|
|
|
938 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
939 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
|
|
|
940 |
$requete = 'SELECT bfj_fichier FROM bazar_fichier_joint WHERE bfj_fichier="'.$ligne['bfj_fichier'].'"';
|
|
|
941 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
118 |
florian |
942 |
//si le fichier n'est que utilise dans cette fiche, on le supprime, on le laisse sinon
|
5 |
florian |
943 |
if ($resultat->numRows()==1) {
|
|
|
944 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
|
118 |
florian |
945 |
unlink(BAZ_CHEMIN_APPLI.'upload/'.$ligne['bfj_fichier']);
|
5 |
florian |
946 |
}
|
|
|
947 |
|
|
|
948 |
//suppression dans la table bazar_fichier
|
|
|
949 |
$requete = 'DELETE FROM bazar_fichier_joint WHERE bfj_id_fichier = '.$id_fichier;
|
|
|
950 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
951 |
if (DB::isError($resultat)) {
|
|
|
952 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
953 |
}
|
|
|
954 |
return;
|
|
|
955 |
}
|
|
|
956 |
|
|
|
957 |
|
|
|
958 |
/** baz_suppression_image() - Supprimer une image d'une fiche
|
|
|
959 |
*
|
|
|
960 |
* @global integer L'identifiant de la fiche
|
|
|
961 |
* @return void
|
|
|
962 |
*/
|
|
|
963 |
function baz_suppression_image($id_fiche) {
|
68 |
florian |
964 |
//verification de l'utilisation de l'image pour une autre annonce
|
5 |
florian |
965 |
$requete = 'SELECT bf_url_image FROM bazar_fiche WHERE bf_id_fiche='.$id_fiche;
|
|
|
966 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
967 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
|
|
|
968 |
$requete = 'SELECT bf_url_image FROM bazar_fiche WHERE bf_url_image="'.$ligne['bf_url_image'].'"';
|
|
|
969 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
118 |
florian |
970 |
//si le fichier n'est que utilise dans cette fiche, on le supprime, on le laisse sinon
|
5 |
florian |
971 |
if ($resultat->numRows()==1) {
|
|
|
972 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
|
118 |
florian |
973 |
unlink(BAZ_CHEMIN_APPLI.'upload/'.$ligne['bf_url_image']);
|
5 |
florian |
974 |
}
|
|
|
975 |
|
|
|
976 |
//suppression dans la table bazar_fiche
|
|
|
977 |
$requete = 'UPDATE bazar_fiche SET bf_url_image=NULL WHERE bf_id_fiche = '.$id_fiche;
|
|
|
978 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
979 |
if (DB::isError($resultat)) {
|
|
|
980 |
die ('Echec de la requete<br />'.$resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
981 |
}
|
|
|
982 |
return;
|
|
|
983 |
}
|
|
|
984 |
|
|
|
985 |
|
|
|
986 |
/** publier_fiche () - Publie ou non dans les fichiers XML la fiche bazar d'un utilisateur
|
|
|
987 |
*
|
|
|
988 |
* @global boolean Valide: oui ou non
|
|
|
989 |
* @return void
|
|
|
990 |
*/
|
|
|
991 |
function publier_fiche($valid) {
|
|
|
992 |
if (isset($_GET['id_fiche'])) $GLOBALS['_BAZAR_']['id_fiche']=$_GET['id_fiche'];
|
|
|
993 |
if (isset($_GET['typeannonce'])) $typeannonce=$_GET['typeannonce'];
|
|
|
994 |
if ($valid==0) {
|
|
|
995 |
$requete = 'UPDATE bazar_fiche SET bf_statut_fiche=2 WHERE bf_id_fiche="'.$GLOBALS['_BAZAR_']['id_fiche'].'"' ;
|
|
|
996 |
}
|
|
|
997 |
else {
|
|
|
998 |
$requete = 'UPDATE bazar_fiche SET bf_statut_fiche=1 WHERE bf_id_fiche="'.$GLOBALS['_BAZAR_']['id_fiche'].'"' ;
|
|
|
999 |
}
|
|
|
1000 |
|
54 |
florian |
1001 |
// ====================Mise a jour de la table bazar_fiche====================
|
5 |
florian |
1002 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1003 |
if (DB::isError($resultat)) {
|
|
|
1004 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
1005 |
}
|
|
|
1006 |
unset ($resultat) ;
|
54 |
florian |
1007 |
//TODO envoie mail annonceur
|
5 |
florian |
1008 |
return;
|
|
|
1009 |
}
|
|
|
1010 |
|
|
|
1011 |
|
|
|
1012 |
/** baz_s_inscrire() affiche le formulaire qui permet de s'inscrire pour recevoir des annonces d'un type
|
|
|
1013 |
*
|
|
|
1014 |
* @return string le code HTML
|
|
|
1015 |
*/
|
|
|
1016 |
function baz_s_inscrire() {
|
118 |
florian |
1017 |
$res= '<h2>'.BAZ_S_INSCRIRE_AUX_ANNONCES.'</h2><br />'."\n";
|
5 |
florian |
1018 |
if (isset($_GET['inscrip'])) {
|
64 |
florian |
1019 |
//cas d'une desinscription
|
5 |
florian |
1020 |
if ($_GET['inscrip']==0) {
|
|
|
1021 |
$requete='DELETE FROM bazar_abonnement WHERE ba_id_utilisateur='.$GLOBALS['id_user'].' AND ba_id_rubrique='.$_GET['idtypeannonce'];
|
|
|
1022 |
}
|
|
|
1023 |
//cas d'une inscription
|
|
|
1024 |
else {
|
|
|
1025 |
$requete='INSERT INTO bazar_abonnement VALUES ('.$GLOBALS['id_user'].', '.$_GET['idtypeannonce'].')';
|
|
|
1026 |
}
|
|
|
1027 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1028 |
if (DB::isError($resultat)) {
|
|
|
1029 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
1030 |
}
|
|
|
1031 |
}
|
|
|
1032 |
|
24 |
florian |
1033 |
if ($GLOBALS['AUTH']->getAuth()) {
|
64 |
florian |
1034 |
$res .= BAZ_LAIUS_S_ABONNER.'<br /><br />'."\n";
|
5 |
florian |
1035 |
//requete pour obtenir l'id et le label des types d'annonces
|
64 |
florian |
1036 |
$requete = 'SELECT bn_id_nature, bn_label_nature, bn_image_titre '.
|
126 |
florian |
1037 |
'FROM bazar_nature WHERE bn_ce_id_menu='.$GLOBALS['_BAZAR_']['categorie_nature'];
|
5 |
florian |
1038 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1039 |
if (DB::isError($resultat)) {
|
|
|
1040 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
1041 |
}
|
|
|
1042 |
|
|
|
1043 |
$table = new HTML_Table(array ('width' => '100%', 'class' => 'table_bazar')) ;
|
|
|
1044 |
$table->addRow(array ('<b>'.BAZ_TYPE_ANNONCES.'</b>',
|
|
|
1045 |
'<b>'.BAZ_STATUT.'</b>',
|
|
|
1046 |
'<b>'.BAZ_PASSER_EN.'</b>',
|
|
|
1047 |
'<b>'.BAZ_RSS.'</b>',)) ;
|
|
|
1048 |
$table->setRowType (0, 'th') ;
|
|
|
1049 |
|
|
|
1050 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
1051 |
$lien_s_abonner=$GLOBALS['_BAZAR_']['url'];
|
|
|
1052 |
$lien_s_abonner->addQueryString('action', BAZ_S_INSCRIRE);
|
|
|
1053 |
$lien_s_abonner->addQueryString('idtypeannonce', $ligne['bn_id_nature']);
|
|
|
1054 |
$lien_s_abonner->addQueryString('inscrip', 1);
|
|
|
1055 |
|
|
|
1056 |
$lien_se_desabonner=$GLOBALS['_BAZAR_']['url'];
|
|
|
1057 |
$lien_se_desabonner->addQueryString('action', BAZ_S_INSCRIRE);
|
|
|
1058 |
$lien_se_desabonner->addQueryString('idtypeannonce', $ligne['bn_id_nature']);
|
|
|
1059 |
$lien_se_desabonner->addQueryString('inscrip', 0);
|
|
|
1060 |
|
|
|
1061 |
$lien_RSS=$GLOBALS['_BAZAR_']['url'];
|
|
|
1062 |
$lien_RSS->addQueryString('action', BAZ_VOIR_FLUX_RSS);
|
|
|
1063 |
|
64 |
florian |
1064 |
'http://'.$_SERVER['HTTP_HOST'].'/client/bazar/bazarRSS.php?annonce='.$ligne['bn_id_nature'];
|
5 |
florian |
1065 |
|
|
|
1066 |
//requete pour savoir si la personne est inscrite à ce type d'annonce
|
|
|
1067 |
$requete = 'SELECT ba_id_utilisateur '.
|
|
|
1068 |
'FROM bazar_abonnement '.
|
64 |
florian |
1069 |
'WHERE ba_id_utilisateur='.$GLOBALS['id_user'].' AND ba_id_rubrique='.$ligne['bn_id_nature'];
|
5 |
florian |
1070 |
$resultat2 = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1071 |
if (DB::isError($resultat2)) {
|
|
|
1072 |
die ($resultat2->getMessage().$resultat2->getDebugInfo()) ;
|
|
|
1073 |
}
|
107 |
florian |
1074 |
if (isset($ligne['bn_image_titre'])) {$titre=' <img src="client/bazar/images/'.$ligne['bn_image_titre'].'" alt="'.$ligne['bn_label_nature'].'" />'."\n";}
|
|
|
1075 |
else {$titre='<strong> '.$ligne['bn_label_nature'].'</strong>'."\n";}
|
5 |
florian |
1076 |
if ($resultat2->numRows()>0) {
|
64 |
florian |
1077 |
$lien_RSS->addQueryString('annonce', $ligne['bn_id_nature']);
|
|
|
1078 |
$table->addRow(array($titre,
|
5 |
florian |
1079 |
BAZ_ABONNE,
|
|
|
1080 |
'<a href='.$lien_se_desabonner->getURL().'>'.BAZ_SE_DESABONNER.'</a>',
|
|
|
1081 |
'<a href='.$lien_RSS->getURL().'><img src="client/bazar/images/BAZ_rss.png" alt="'.BAZ_RSS.'"></a>'));
|
|
|
1082 |
$lien_RSS->removeQueryString('annonce');
|
|
|
1083 |
}
|
|
|
1084 |
else {
|
64 |
florian |
1085 |
$lien_RSS->addQueryString('annonce', $ligne['bn_id_nature']);
|
|
|
1086 |
$table->addRow(array($titre,
|
5 |
florian |
1087 |
BAZ_PAS_ABONNE,
|
|
|
1088 |
'<a href='.$lien_s_abonner->getURL().'>'.BAZ_S_ABONNER.'</a>',
|
|
|
1089 |
'<a href='.$lien_RSS->getURL().'><img src="client/bazar/images/BAZ_rss.png" alt="'.BAZ_RSS.'" /></a>'));
|
|
|
1090 |
$lien_RSS->removeQueryString('annonce');
|
|
|
1091 |
}
|
|
|
1092 |
}
|
|
|
1093 |
$table->altRowAttributes(1, array('class' => 'ligne_impaire'), array('class' => 'ligne_paire'));
|
64 |
florian |
1094 |
$table->updateColAttributes(0, array('align' => 'center'));
|
5 |
florian |
1095 |
$table->updateColAttributes(1, array('align' => 'center'));
|
|
|
1096 |
$table->updateColAttributes(2, array('align' => 'center'));
|
24 |
florian |
1097 |
$table->updateColAttributes(3, array('style' => 'text-align:center;'));
|
5 |
florian |
1098 |
$res.=$table->toHTML() ;
|
24 |
florian |
1099 |
}
|
118 |
florian |
1100 |
else $res .= '<p class="zone_info">'.BAZ_IDENTIFIEZ_VOUS_POUR_SAISIR.'</p>'."\n";
|
5 |
florian |
1101 |
|
|
|
1102 |
return $res;
|
|
|
1103 |
}
|
|
|
1104 |
|
|
|
1105 |
|
74 |
florian |
1106 |
/** baz_valeurs_fiche() - Renvoie un tableau avec les valeurs par defaut du formulaire d'inscription
|
5 |
florian |
1107 |
*
|
|
|
1108 |
* @param integer Identifiant de la fiche
|
|
|
1109 |
*
|
74 |
florian |
1110 |
* @return array Valeurs enregistrees pour cette fiche
|
5 |
florian |
1111 |
*/
|
|
|
1112 |
function baz_valeurs_fiche($idfiche) {
|
|
|
1113 |
$requete = 'SELECT * FROM bazar_fiche WHERE bf_id_fiche='.$idfiche;
|
|
|
1114 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1115 |
if (DB::isError($resultat)) {
|
|
|
1116 |
die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
1117 |
}
|
|
|
1118 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC) ;
|
|
|
1119 |
$valeurs_fiche = array() ;
|
72 |
alexandre_ |
1120 |
$tableau = baz_valeurs_template($GLOBALS['_BAZAR_']['template']);
|
5 |
florian |
1121 |
for ($i=0; $i<count($tableau); $i++) {
|
118 |
florian |
1122 |
if ($tableau[$i]['type']=='liste' || $tableau[$i]['type']=='checkbox') {
|
|
|
1123 |
$requete = 'SELECT bfvl_valeur FROM bazar_fiche_valeur_liste WHERE bfvl_ce_fiche='.$idfiche.
|
|
|
1124 |
' AND bfvl_ce_liste='.$tableau[$i]['nom_bdd'];
|
|
|
1125 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
1126 |
if (DB::isError ($resultat)) {
|
|
|
1127 |
die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
1128 |
}
|
|
|
1129 |
$nb=0;$val='';
|
|
|
1130 |
while ($result = $resultat->fetchRow()) {
|
|
|
1131 |
if ($nb>0) $val .= ', ';
|
|
|
1132 |
$val .= $result[0];
|
|
|
1133 |
$nb++;
|
|
|
1134 |
}
|
|
|
1135 |
$valeurs_fiche[$tableau[$i]['type'].$tableau[$i]['nom_bdd']] = $val;
|
|
|
1136 |
}
|
|
|
1137 |
elseif ($tableau[$i]['type']=='texte' || $tableau[$i]['type']=='textelong' || $tableau[$i]['type']=='listedatedeb' || $tableau[$i]['type']=='listedatefin') {
|
|
|
1138 |
$valeurs_fiche[$tableau[$i]['nom_bdd']] = stripslashes($ligne[$tableau[$i]['nom_bdd']]);
|
|
|
1139 |
}
|
5 |
florian |
1140 |
}
|
|
|
1141 |
return $valeurs_fiche;
|
|
|
1142 |
}
|
|
|
1143 |
|
|
|
1144 |
|
|
|
1145 |
function baz_envoie_mail() {
|
|
|
1146 |
$headers['From'] = $_SERVER['SERVER_ADMIN'] ;
|
|
|
1147 |
$headers['To'] = "<".INS_MAIL_ADMIN_APRES_INSCRIPTION.">" ;
|
|
|
1148 |
$headers['Subject'] = INS_MAIL_ADMIN_APRES_INSCRIPTION_SUJET;
|
|
|
1149 |
|
|
|
1150 |
$q = "select * from ".INS_ANNUAIRE." where ".INS_CHAMPS_MAIL."=\"".$_POST['mail']."\"" ;
|
|
|
1151 |
|
|
|
1152 |
$r = $GLOBALS['_BAZAR_']['db']->query($q) ;
|
|
|
1153 |
if (DB::isError ($r)) {
|
|
|
1154 |
die ("echec de la requete") ;
|
|
|
1155 |
}
|
|
|
1156 |
$row = $r->fetchRow(DB_FETCHMODE_ASSOC) ;
|
|
|
1157 |
|
|
|
1158 |
$body_entete = "Un nouvel inscrit à tela : \n" ;
|
|
|
1159 |
$body = "mail : ".$row[INS_CHAMPS_MAIL]."\n" ;
|
|
|
1160 |
$body .= "------------------------------------------\n";
|
|
|
1161 |
$body .= "nom: ".unhtmlentities($row[INS_CHAMPS_NOM])." \n" ;
|
|
|
1162 |
$body .= "prénom : ".unhtmlentities($row[INS_CHAMPS_PRENOM])." \n" ;
|
|
|
1163 |
$body .= "-------------------------------------------\n" ;
|
|
|
1164 |
|
|
|
1165 |
// création du mail
|
|
|
1166 |
$mail_object =& Mail::factory('mail');
|
|
|
1167 |
if (!mail ($headers['To'], $headers['Subject'], $body)) {
|
56 |
florian |
1168 |
return "Une erreur s'est produite:<br />\n" ;
|
5 |
florian |
1169 |
}
|
|
|
1170 |
$body .= INS_MAIL_INSCRIPTION_2;
|
|
|
1171 |
|
|
|
1172 |
$headers['To'] = $_POST['mail'] ;
|
|
|
1173 |
|
|
|
1174 |
// création du mail
|
|
|
1175 |
if (mail($headers['To'], $headers['Subject'], INS_MAIL_INSCRIPTION_1.$body)) {
|
56 |
florian |
1176 |
return "Une erreur s'est produite<br />\n" ;
|
5 |
florian |
1177 |
}
|
|
|
1178 |
return;
|
|
|
1179 |
}
|
|
|
1180 |
|
|
|
1181 |
|
79 |
florian |
1182 |
/** function baz_nextId () Renvoie le prochain identifiant numerique libre d'une table
|
5 |
florian |
1183 |
*
|
|
|
1184 |
* @param string Nom de la table
|
|
|
1185 |
* @param string Nom du champs identifiant
|
79 |
florian |
1186 |
* @param mixed Objet DB de PEAR pour la connexion a la base de donnees
|
5 |
florian |
1187 |
*
|
79 |
florian |
1188 |
* return integer Le prochain numero d'identifiant disponible
|
5 |
florian |
1189 |
*/
|
|
|
1190 |
function baz_nextId($table, $colonne_identifiant, $bdd) {
|
|
|
1191 |
$requete = 'SELECT MAX('.$colonne_identifiant.') AS maxi FROM '.$table;
|
|
|
1192 |
$resultat = $bdd->query($requete) ;
|
|
|
1193 |
if (DB::isError($resultat)) {
|
|
|
1194 |
die (__FILE__ . __LINE__ . $resultat->getMessage() . $requete);
|
|
|
1195 |
return $bdd->raiseError($resultat) ;
|
|
|
1196 |
}
|
|
|
1197 |
|
|
|
1198 |
if ($resultat->numRows() > 1) {
|
|
|
1199 |
return $bdd->raiseError('<br />La table '.$table.' a un identifiant non unique<br />') ;
|
|
|
1200 |
}
|
|
|
1201 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_OBJECT) ;
|
|
|
1202 |
return $ligne->maxi + 1 ;
|
|
|
1203 |
}
|
|
|
1204 |
|
|
|
1205 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
1206 |
*
|
|
|
1207 |
* $Log: not supported by cvs2svn $
|
131 |
alexandre_ |
1208 |
* Revision 1.49 2006/06/02 09:29:07 florian
|
|
|
1209 |
* debut d'integration de wikini
|
|
|
1210 |
*
|
129 |
florian |
1211 |
* Revision 1.48 2006/05/19 13:54:11 florian
|
|
|
1212 |
* stabilisation du moteur de recherche, corrections bugs, lien recherche avancee
|
|
|
1213 |
*
|
126 |
florian |
1214 |
* Revision 1.47 2006/04/28 12:46:14 florian
|
|
|
1215 |
* integration des liens vers annuaire
|
|
|
1216 |
*
|
118 |
florian |
1217 |
* Revision 1.46 2006/03/29 13:04:35 alexandre_tb
|
|
|
1218 |
* utilisation de la classe Administrateur_bazar
|
|
|
1219 |
*
|
111 |
alexandre_ |
1220 |
* Revision 1.45 2006/03/24 09:28:02 alexandre_tb
|
126 |
florian |
1221 |
* utilisation de la variable globale $GLOBALS['_BAZAR_']['categorie_nature']
|
111 |
alexandre_ |
1222 |
*
|
109 |
alexandre_ |
1223 |
* Revision 1.44 2006/03/14 17:10:21 florian
|
|
|
1224 |
* ajout des fonctions de syndication, changement du moteur de recherche
|
|
|
1225 |
*
|
107 |
florian |
1226 |
* Revision 1.43 2006/03/02 20:36:52 florian
|
|
|
1227 |
* les entrees du formulaire de saisir ne sont plus dans les constantes mias dans des tables qui gerent le multilinguisme.
|
|
|
1228 |
*
|
105 |
florian |
1229 |
* Revision 1.42 2006/03/01 16:23:22 florian
|
|
|
1230 |
* modifs textes fr et correction bug "undefined index"
|
|
|
1231 |
*
|
104 |
florian |
1232 |
* Revision 1.41 2006/03/01 16:05:51 florian
|
|
|
1233 |
* ajout des fichiers joints
|
|
|
1234 |
*
|
103 |
florian |
1235 |
* Revision 1.40 2006/02/06 09:33:00 alexandre_tb
|
|
|
1236 |
* correction de bug
|
|
|
1237 |
*
|
89 |
alexandre_ |
1238 |
* Revision 1.39 2006/01/30 17:25:38 alexandre_tb
|
|
|
1239 |
* correction de bugs
|
|
|
1240 |
*
|
87 |
alexandre_ |
1241 |
* Revision 1.38 2006/01/30 10:27:04 florian
|
|
|
1242 |
* - ajout des entrées de formulaire fichier, url, et image
|
|
|
1243 |
* - correction bug d'affichage du mode de saisie
|
|
|
1244 |
*
|
86 |
florian |
1245 |
* Revision 1.37 2006/01/24 14:11:11 alexandre_tb
|
|
|
1246 |
* correction de bug sur l'ajout d'une image et d'un fichier
|
|
|
1247 |
*
|
81 |
alexandre_ |
1248 |
* Revision 1.36 2006/01/19 17:42:11 florian
|
|
|
1249 |
* ajout des cases à cocher pré-cochées pour les maj
|
|
|
1250 |
*
|
79 |
florian |
1251 |
* Revision 1.35 2006/01/18 11:06:51 florian
|
|
|
1252 |
* correction erreur saisie date
|
|
|
1253 |
*
|
77 |
florian |
1254 |
* Revision 1.34 2006/01/18 10:53:28 florian
|
|
|
1255 |
* corrections bugs affichage fiche
|
|
|
1256 |
*
|
76 |
florian |
1257 |
* Revision 1.33 2006/01/18 10:07:34 florian
|
|
|
1258 |
* recodage de l'insertion et de la maj des données relatives aux listes et checkbox dans des formulaires
|
|
|
1259 |
*
|
75 |
florian |
1260 |
* Revision 1.32 2006/01/18 10:03:36 florian
|
|
|
1261 |
* recodage de l'insertion et de la maj des données relatives aux listes et checkbox dans des formulaires
|
|
|
1262 |
*
|
74 |
florian |
1263 |
* Revision 1.31 2006/01/17 10:07:08 alexandre_tb
|
|
|
1264 |
* en cours
|
|
|
1265 |
*
|
72 |
alexandre_ |
1266 |
* Revision 1.30 2006/01/16 09:42:57 alexandre_tb
|
|
|
1267 |
* en cours
|
|
|
1268 |
*
|
69 |
alexandre_ |
1269 |
* Revision 1.29 2006/01/13 14:12:51 florian
|
|
|
1270 |
* utilisation des temlates dans la table bazar_nature
|
|
|
1271 |
*
|
68 |
florian |
1272 |
* Revision 1.28 2006/01/05 16:28:24 alexandre_tb
|
|
|
1273 |
* prise en chage des checkbox, reste la mise à jour à gérer
|
|
|
1274 |
*
|
67 |
alexandre_ |
1275 |
* Revision 1.27 2006/01/04 15:30:56 alexandre_tb
|
|
|
1276 |
* mise en forme du code
|
|
|
1277 |
*
|
65 |
alexandre_ |
1278 |
* Revision 1.26 2006/01/03 10:19:31 florian
|
|
|
1279 |
* 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...
|
|
|
1280 |
*
|
64 |
florian |
1281 |
* Revision 1.25 2005/12/20 14:49:35 ddelon
|
|
|
1282 |
* Fusion Head vers Livraison
|
|
|
1283 |
*
|
61 |
ddelon |
1284 |
* Revision 1.24 2005/12/16 15:44:40 alexandre_tb
|
|
|
1285 |
* ajout de l'option restreindre dépôt
|
|
|
1286 |
*
|
60 |
alexandre_ |
1287 |
* Revision 1.23 2005/12/01 17:03:34 florian
|
|
|
1288 |
* changement des chemins pour appli Pear
|
|
|
1289 |
*
|
58 |
florian |
1290 |
* Revision 1.22 2005/12/01 16:05:41 florian
|
|
|
1291 |
* changement des chemins pour appli Pear
|
|
|
1292 |
*
|
57 |
florian |
1293 |
* Revision 1.21 2005/12/01 15:31:30 florian
|
|
|
1294 |
* correction bug modifs et saisies
|
|
|
1295 |
*
|
56 |
florian |
1296 |
* Revision 1.20 2005/11/30 13:58:45 florian
|
|
|
1297 |
* ajouts graphisme (logos, boutons), changement structure SQL bazar_fiche
|
|
|
1298 |
*
|
55 |
florian |
1299 |
* Revision 1.19 2005/11/24 16:17:13 florian
|
|
|
1300 |
* corrections bugs, ajout des cases à cocher
|
|
|
1301 |
*
|
54 |
florian |
1302 |
* Revision 1.18 2005/11/18 16:03:23 florian
|
|
|
1303 |
* correction bug html entites
|
|
|
1304 |
*
|
53 |
florian |
1305 |
* Revision 1.17 2005/11/17 18:48:02 florian
|
|
|
1306 |
* corrections bugs + amélioration de l'application d'inscription
|
|
|
1307 |
*
|
52 |
florian |
1308 |
* Revision 1.16 2005/11/07 17:30:36 florian
|
|
|
1309 |
* ajout controle sur les listes pour la saisie
|
|
|
1310 |
*
|
46 |
florian |
1311 |
* Revision 1.15 2005/11/07 17:05:45 florian
|
|
|
1312 |
* amélioration validation conditions de saisie, ajout des règles spécifiques de saisie des formulaires
|
|
|
1313 |
*
|
45 |
florian |
1314 |
* Revision 1.14 2005/11/07 08:48:02 florian
|
|
|
1315 |
* correction pb guillemets pour saisie et modif de fiche
|
|
|
1316 |
*
|
44 |
florian |
1317 |
* Revision 1.13 2005/10/21 16:15:04 florian
|
|
|
1318 |
* mise a jour appropriation
|
|
|
1319 |
*
|
34 |
alexandre_ |
1320 |
* Revision 1.11 2005/10/12 17:20:33 ddelon
|
|
|
1321 |
* Reorganisation calendrier + applette
|
|
|
1322 |
*
|
30 |
ddelon |
1323 |
* Revision 1.10 2005/10/12 15:14:06 florian
|
|
|
1324 |
* amélioration de l'interface de bazar, de manière a simplifier les consultations, et à harmoniser par rapport aux Ressources
|
|
|
1325 |
*
|
24 |
florian |
1326 |
* Revision 1.9 2005/10/10 16:22:52 alexandre_tb
|
|
|
1327 |
* Correction de bug. Lorsqu'on revient en arrière après avoir validé un formulaire.
|
|
|
1328 |
*
|
21 |
alexandre_ |
1329 |
* Revision 1.8 2005/09/30 13:50:07 alexandre_tb
|
|
|
1330 |
* correction bug date parution ressource
|
|
|
1331 |
*
|
13 |
alexandre_ |
1332 |
* Revision 1.7 2005/09/30 13:15:58 ddelon
|
|
|
1333 |
* compatibilité php5
|
|
|
1334 |
*
|
12 |
ddelon |
1335 |
* Revision 1.6 2005/09/30 13:00:05 ddelon
|
|
|
1336 |
* Fiche bazar generique
|
|
|
1337 |
*
|
11 |
ddelon |
1338 |
* Revision 1.5 2005/09/30 12:22:54 florian
|
|
|
1339 |
* Ajouts commentaires pour fiche, modifications graphiques, maj SQL
|
|
|
1340 |
*
|
7 |
florian |
1341 |
* Revision 1.3 2005/07/21 19:03:12 florian
|
|
|
1342 |
* nouveautés bazar: templates fiches, correction de bugs, ...
|
|
|
1343 |
*
|
5 |
florian |
1344 |
* Revision 1.1.1.1 2005/02/17 18:05:11 florian
|
|
|
1345 |
* Import initial de Bazar
|
|
|
1346 |
*
|
|
|
1347 |
* Revision 1.1.1.1 2005/02/17 11:09:50 florian
|
|
|
1348 |
* Import initial
|
|
|
1349 |
*
|
|
|
1350 |
* Revision 1.1.1.1 2005/02/16 18:06:35 florian
|
|
|
1351 |
* import de la nouvelle version
|
|
|
1352 |
*
|
|
|
1353 |
* Revision 1.10 2004/07/08 17:25:25 florian
|
|
|
1354 |
* ajout commentaires + petits debuggages
|
|
|
1355 |
*
|
|
|
1356 |
* Revision 1.8 2004/07/07 14:30:19 florian
|
24 |
florian |
1357 |
* débogage RSS
|
5 |
florian |
1358 |
*
|
|
|
1359 |
* Revision 1.7 2004/07/06 16:22:01 florian
|
24 |
florian |
1360 |
* débogage modification + MAJ flux RSS
|
5 |
florian |
1361 |
*
|
|
|
1362 |
* Revision 1.6 2004/07/06 09:28:26 florian
|
|
|
1363 |
* changement interface de modification
|
|
|
1364 |
*
|
|
|
1365 |
* Revision 1.5 2004/07/05 15:10:23 florian
|
|
|
1366 |
* changement interface de saisie
|
|
|
1367 |
*
|
|
|
1368 |
* Revision 1.4 2004/07/02 14:51:14 florian
|
|
|
1369 |
* ajouts divers pour faire fonctionner l'insertion de fiches
|
|
|
1370 |
*
|
|
|
1371 |
* Revision 1.3 2004/07/01 16:37:42 florian
|
|
|
1372 |
* ajout de fonctions pour les templates
|
|
|
1373 |
*
|
|
|
1374 |
* Revision 1.2 2004/07/01 13:00:13 florian
|
|
|
1375 |
* modif Florian
|
|
|
1376 |
*
|
|
|
1377 |
* Revision 1.1 2004/06/23 09:58:32 alex
|
|
|
1378 |
* version initiale
|
|
|
1379 |
*
|
|
|
1380 |
* Revision 1.1 2004/06/18 09:00:37 alex
|
|
|
1381 |
* version initiale
|
|
|
1382 |
*
|
|
|
1383 |
*
|
|
|
1384 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
1385 |
*/
|
|
|
1386 |
|
|
|
1387 |
?>
|