314 |
alexandre_ |
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 |
// +------------------------------------------------------------------------------------------------------+
|
374 |
alexandre_ |
22 |
// CVS : $Id: bazar.php,v 1.49.2.4 2008-02-04 13:10:15 alexandre_tb Exp $
|
314 |
alexandre_ |
23 |
/**
|
|
|
24 |
*
|
|
|
25 |
*@package bazar
|
|
|
26 |
//Auteur original :
|
|
|
27 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
|
|
28 |
*@author Florian Schmitt <florian@ecole-et-nature.org>
|
|
|
29 |
//Autres auteurs :
|
|
|
30 |
*@copyright Tela-Botanica 2000-2004
|
374 |
alexandre_ |
31 |
*@version $Revision: 1.49.2.4 $ $Date: 2008-02-04 13:10:15 $
|
314 |
alexandre_ |
32 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
33 |
*/
|
|
|
34 |
|
|
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
36 |
// | ENTETE du PROGRAMME |
|
|
|
37 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
38 |
|
360 |
alexandre_ |
39 |
//error_reporting(E_ALL);
|
314 |
alexandre_ |
40 |
require_once PAP_CHEMIN_API_PEAR.'DB.php' ;
|
|
|
41 |
require_once PAP_CHEMIN_API_PEAR.'Auth.php' ;
|
|
|
42 |
require_once 'configuration/baz_config.inc.php'; //fichier de configuration de Bazar
|
|
|
43 |
require_once 'bibliotheque/bazar.class.php';
|
|
|
44 |
require_once 'bibliotheque/bazar.fonct.php'; //fichier des fonctions de Bazar
|
|
|
45 |
|
|
|
46 |
if (defined('PAP_VERSION')) { //si on est dans Papyrus
|
|
|
47 |
GEN_stockerStyleExterne( 'bazar_interne', 'client/bazar/bazar.interne.css');
|
|
|
48 |
}
|
|
|
49 |
|
|
|
50 |
//**********************************************************************************************************
|
|
|
51 |
//initialisation des paramêtres papyrus
|
|
|
52 |
//**********************************************************************************************************
|
|
|
53 |
//si un parametre est précisé dans le gestionnaire de menus papyrus, on le prends en compte
|
|
|
54 |
|
|
|
55 |
//parametre action pour lancer directement l'action indiquée
|
360 |
alexandre_ |
56 |
if (!isset($_GET[BAZ_VARIABLE_ACTION])and(isset($GLOBALS['_GEN_commun']['info_application']->action))) {
|
|
|
57 |
$_GET[BAZ_VARIABLE_ACTION]=$GLOBALS['_GEN_commun']['info_application']->action;
|
314 |
alexandre_ |
58 |
}
|
|
|
59 |
|
|
|
60 |
//parametre vue pour afficher directement une vue
|
|
|
61 |
if (!isset($_GET[BAZ_VARIABLE_VOIR])and(isset($GLOBALS['_GEN_commun']['info_application']->vue))) {
|
|
|
62 |
$_GET[BAZ_VARIABLE_VOIR]=$GLOBALS['_GEN_commun']['info_application']->vue;
|
|
|
63 |
}
|
|
|
64 |
|
|
|
65 |
// Si le parametre vue est vide on le positionne a 1
|
|
|
66 |
if (!isset($_GET[BAZ_VARIABLE_VOIR])) {
|
|
|
67 |
$_GET[BAZ_VARIABLE_VOIR] = BAZ_VOIR_CONSULTER;
|
|
|
68 |
}
|
|
|
69 |
|
422 |
jpm |
70 |
if(!isset($GLOBALS['_BAZAR_']['mois']))
|
|
|
71 |
{
|
|
|
72 |
$GLOBALS['mois'] = array (1 => BAZ_JANVIER, 2 => BAZ_FEVRIER, 3 => BAZ_MARS, 4 => BAZ_AVRIL, 5 => BAZ_MAI, 6 => BAZ_JUIN,
|
|
|
73 |
7 => BAZ_JUILLET, 8 => BAZ_AOUT, 9 => BAZ_SEPTEMBRE, 10 => BAZ_OCTOBRE, 11 =>BAZ_NOVEMBRE,
|
|
|
74 |
12 => BAZ_DECEMBRE) ;
|
|
|
75 |
}
|
314 |
alexandre_ |
76 |
|
|
|
77 |
//parametre voir_menu pour afficher le menu ou pas (par défaut, il l'affiche)
|
|
|
78 |
if ((isset($GLOBALS['_GEN_commun']['info_application']->voir_menu))and($GLOBALS['_GEN_commun']['info_application']->voir_menu==0)) {
|
|
|
79 |
$GLOBALS['_BAZAR_']['affiche_menu']=0;
|
|
|
80 |
}
|
|
|
81 |
else $GLOBALS['_BAZAR_']['affiche_menu']=1;
|
|
|
82 |
|
|
|
83 |
//parametre categorie_nature pour préciser quels types de fiches sont montrees (par défaut, il affiche les id_menu=0)
|
|
|
84 |
if (isset($GLOBALS['_GEN_commun']['info_application']->categorie_nature)) {
|
|
|
85 |
$GLOBALS['_BAZAR_']['categorie_nature']=$GLOBALS['_GEN_commun']['info_application']->categorie_nature;
|
|
|
86 |
}
|
|
|
87 |
elseif (isset($_REQUEST['categorie_nature'])) {
|
|
|
88 |
$GLOBALS['_BAZAR_']['categorie_nature']=$_REQUEST['categorie_nature'];
|
|
|
89 |
}
|
|
|
90 |
else $GLOBALS['_BAZAR_']['categorie_nature']=0;
|
|
|
91 |
|
|
|
92 |
//parametre id_nature pour afficher un certain type de fiche (par défaut, tous les types de fiches)
|
|
|
93 |
if (isset($GLOBALS['_GEN_commun']['info_application']->id_nature)) {
|
|
|
94 |
$GLOBALS['_BAZAR_']['id_typeannonce']=$GLOBALS['_GEN_commun']['info_application']->id_nature;
|
|
|
95 |
}
|
|
|
96 |
elseif (!isset($GLOBALS['_BAZAR_']['typeannonce'])) $GLOBALS['_BAZAR_']['typeannonce']='toutes';
|
|
|
97 |
|
|
|
98 |
//**********************************************************************************************************
|
|
|
99 |
//initialisation de la variable globale de bazar
|
|
|
100 |
//**********************************************************************************************************
|
|
|
101 |
$GLOBALS['id_user']=$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID);
|
|
|
102 |
|
|
|
103 |
//Recuperer les eventuelles variables passees en GET ou en POST
|
|
|
104 |
if (isset($_REQUEST['id_fiche'])) {
|
417 |
jpm |
105 |
$GLOBALS['_BAZAR_']['id_fiche'] = $_REQUEST['id_fiche'];
|
314 |
alexandre_ |
106 |
// récupération du type d'annonce à partir de la fiche
|
417 |
jpm |
107 |
$requete = 'select bf_ce_nature from bazar_fiche where bf_id_fiche='.$_REQUEST['id_fiche'] ;
|
314 |
alexandre_ |
108 |
$resultat = $GLOBALS['_BAZAR_']['db']->query ($requete) ;
|
|
|
109 |
if (DB::isError($resultat)) {
|
417 |
jpm |
110 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
314 |
alexandre_ |
111 |
}
|
|
|
112 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_OBJECT) ;
|
|
|
113 |
$GLOBALS['_BAZAR_']['id_typeannonce'] = $ligne->bf_ce_nature ;
|
|
|
114 |
$resultat->free();
|
422 |
jpm |
115 |
}
|
|
|
116 |
|
|
|
117 |
if (isset($_REQUEST['typeannonce']) && $_REQUEST['typeannonce'] != '1,2,3,4') {
|
417 |
jpm |
118 |
|
422 |
jpm |
119 |
$GLOBALS['_BAZAR_']['id_typeannonce'] = $_REQUEST['typeannonce'];
|
314 |
alexandre_ |
120 |
}
|
422 |
jpm |
121 |
else
|
|
|
122 |
{
|
|
|
123 |
$GLOBALS['_BAZAR_']['id_typeannonce'] = 'toutes' ;
|
|
|
124 |
}
|
314 |
alexandre_ |
125 |
|
422 |
jpm |
126 |
if (isset($_REQUEST['liste31'])) {
|
|
|
127 |
|
|
|
128 |
if($_REQUEST['liste31'] == "0")
|
|
|
129 |
{
|
|
|
130 |
$GLOBALS['_BAZAR_']['id_typeannonce']= 'toutes' ;
|
|
|
131 |
}
|
|
|
132 |
else
|
|
|
133 |
{
|
|
|
134 |
$GLOBALS['_BAZAR_']['id_typeannonce']= $_REQUEST['liste31'];
|
|
|
135 |
}
|
|
|
136 |
}
|
|
|
137 |
else
|
|
|
138 |
{
|
|
|
139 |
$GLOBALS['_BAZAR_']['id_typeannonce'] = 'toutes' ;
|
|
|
140 |
}
|
|
|
141 |
|
314 |
alexandre_ |
142 |
if ((isset($GLOBALS['_BAZAR_']['id_typeannonce']))and($GLOBALS['_BAZAR_']['id_typeannonce']!='toutes')) {
|
417 |
jpm |
143 |
|
422 |
jpm |
144 |
$typeAnnonce = false;
|
|
|
145 |
|
|
|
146 |
$requete = 'SELECT bn_label_nature, bn_condition, bn_template, bn_commentaire, bn_appropriation, bn_image_titre, bn_image_logo '.
|
|
|
147 |
'FROM bazar_nature ';
|
|
|
148 |
if (isset($GLOBALS['_BAZAR_']['id_typeannonce']) && !empty($GLOBALS['_BAZAR_']['id_typeannonce']) && isset($GLOBALS['_BAZAR_']['id_typeannonce']) != 'toutes') {
|
|
|
149 |
$requete .= 'WHERE bn_id_nature = '.$GLOBALS['_BAZAR_']['id_typeannonce'];
|
|
|
150 |
$typeAnnonce = true;
|
|
|
151 |
}
|
417 |
jpm |
152 |
if (isset($GLOBALS['_BAZAR_']['langue'])) {
|
422 |
jpm |
153 |
if (!$typeAnnonce) {
|
|
|
154 |
$requete .= ' WHERE ';
|
|
|
155 |
} else {
|
|
|
156 |
$requete .= ' AND ';
|
|
|
157 |
}
|
|
|
158 |
$requete .= 'bn_ce_i18n like "'.$GLOBALS['_BAZAR_']['langue'].'%"';
|
417 |
jpm |
159 |
}
|
|
|
160 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
161 |
if (DB::isError($resultat)) {
|
|
|
162 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
163 |
}
|
|
|
164 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
|
|
|
165 |
$GLOBALS['_BAZAR_']['typeannonce']=$ligne['bn_label_nature'];
|
|
|
166 |
$GLOBALS['_BAZAR_']['condition']=$ligne['bn_condition'];
|
|
|
167 |
$GLOBALS['_BAZAR_']['template']=$ligne['bn_template'];
|
|
|
168 |
$GLOBALS['_BAZAR_']['commentaire']=$ligne['bn_commentaire'];
|
|
|
169 |
$GLOBALS['_BAZAR_']['appropriation']=$ligne['bn_appropriation'];
|
|
|
170 |
$GLOBALS['_BAZAR_']['image_titre']=$ligne['bn_image_titre'];
|
422 |
jpm |
171 |
$GLOBALS['_BAZAR_']['image_logo']=$ligne['bn_image_logo'];
|
314 |
alexandre_ |
172 |
}
|
422 |
jpm |
173 |
else
|
|
|
174 |
{
|
|
|
175 |
$requete = 'SELECT bn_label_nature, bn_condition, bn_template, bn_commentaire, bn_appropriation, bn_image_titre, bn_image_logo '.
|
|
|
176 |
'FROM bazar_nature ';
|
|
|
177 |
$requete .= 'WHERE bn_id_nature = 1';
|
|
|
178 |
$typeAnnonce = true;
|
|
|
179 |
|
|
|
180 |
if (isset($GLOBALS['_BAZAR_']['langue'])) {
|
|
|
181 |
if (!$typeAnnonce) {
|
|
|
182 |
$requete .= ' WHERE ';
|
|
|
183 |
} else {
|
|
|
184 |
$requete .= ' AND ';
|
|
|
185 |
}
|
|
|
186 |
$requete .= 'bn_ce_i18n like "'.$GLOBALS['_BAZAR_']['langue'].'%"';
|
|
|
187 |
}
|
|
|
188 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
189 |
if (DB::isError($resultat)) {
|
|
|
190 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
191 |
}
|
|
|
192 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
|
|
|
193 |
$GLOBALS['_BAZAR_']['typeannonce']= 'toutes' ;
|
|
|
194 |
$GLOBALS['_BAZAR_']['condition']=$ligne['bn_condition'];
|
|
|
195 |
$GLOBALS['_BAZAR_']['template']=$ligne['bn_template'];
|
|
|
196 |
$GLOBALS['_BAZAR_']['commentaire']=$ligne['bn_commentaire'];
|
|
|
197 |
$GLOBALS['_BAZAR_']['appropriation']=$ligne['bn_appropriation'];
|
|
|
198 |
$GLOBALS['_BAZAR_']['image_titre']=$ligne['bn_image_titre'];
|
|
|
199 |
$GLOBALS['_BAZAR_']['image_logo']=$ligne['bn_image_logo'];
|
|
|
200 |
}
|
|
|
201 |
|
314 |
alexandre_ |
202 |
if (!isset($GLOBALS['_BAZAR_']['id_typeannonce'])) $GLOBALS['_BAZAR_']['id_typeannonce'] = 'toutes' ;
|
|
|
203 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
204 |
// | LISTE de FONCTIONS |
|
|
|
205 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
206 |
if ($GLOBALS['_BAZAR_']['affiche_menu']) {
|
|
|
207 |
//---------------le menu de l'appli-----------
|
|
|
208 |
function afficherContenuNavigation () {
|
|
|
209 |
$res ='<ul id="BAZ_menu">'."\n";
|
|
|
210 |
|
|
|
211 |
// Gestion de la vue par défaut
|
|
|
212 |
if (!isset($_GET[BAZ_VARIABLE_VOIR])) {
|
|
|
213 |
$_GET[BAZ_VARIABLE_VOIR] = BAZ_VOIR_DEFAUT;
|
|
|
214 |
}
|
|
|
215 |
|
|
|
216 |
//partie consultation d'annonces
|
|
|
217 |
if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_CONSULTER))) {
|
|
|
218 |
$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_CONSULTER);
|
|
|
219 |
$res .= '<li id="consulter"';
|
|
|
220 |
if ((isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR] == BAZ_VOIR_CONSULTER)) $res .=' class="onglet_actif" ';
|
|
|
221 |
$res .='><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_CONSULTER.'</a>'."\n".'</li>'."\n";
|
|
|
222 |
}
|
|
|
223 |
|
|
|
224 |
// Mes fiches
|
|
|
225 |
if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_MES_FICHES))) {
|
|
|
226 |
$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_MES_FICHES);
|
345 |
alexandre_ |
227 |
$res .= '<li id="mes_fiches"';
|
314 |
alexandre_ |
228 |
if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR] == BAZ_VOIR_MES_FICHES) $res .=' class="onglet_actif" ';
|
|
|
229 |
$res .= '><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_VOIR_VOS_ANNONCES.'</a>'."\n".'</li>'."\n";
|
|
|
230 |
}
|
|
|
231 |
|
|
|
232 |
//partie abonnement aux annonces
|
|
|
233 |
if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_S_ABONNER))) {
|
|
|
234 |
$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_S_ABONNER);
|
|
|
235 |
$res .= '<li id="inscrire"';
|
|
|
236 |
if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_S_ABONNER) $res .=' class="onglet_actif" ';
|
|
|
237 |
$res .= '><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_S_ABONNER.'</a></li>'."\n" ;
|
|
|
238 |
}
|
|
|
239 |
|
|
|
240 |
//partie saisie d'annonces
|
|
|
241 |
if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_SAISIR))) {
|
|
|
242 |
$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_SAISIR);
|
|
|
243 |
$res .= '<li id="deposer"';
|
|
|
244 |
if (isset($_GET[BAZ_VARIABLE_VOIR]) && ($_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_SAISIR )) $res .=' class="onglet_actif" ';
|
|
|
245 |
$res .='><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_SAISIR.'</a>'."\n".'</li>'."\n";
|
|
|
246 |
}
|
|
|
247 |
|
|
|
248 |
//choix des administrateurs
|
|
|
249 |
$utilisateur = new Administrateur_bazar($GLOBALS['AUTH']) ;
|
|
|
250 |
$est_admin=0;
|
|
|
251 |
if ($GLOBALS['AUTH']->getAuth()) {
|
|
|
252 |
$requete='SELECT bn_id_nature FROM bazar_nature';
|
|
|
253 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
|
|
254 |
if (DB::isError($resultat)) {
|
|
|
255 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
|
|
256 |
}
|
|
|
257 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
|
|
258 |
if ($utilisateur->isAdmin ($ligne['bn_id_nature'])) {
|
|
|
259 |
$est_admin=1;
|
|
|
260 |
}
|
|
|
261 |
}
|
|
|
262 |
if ($est_admin || $utilisateur->isSuperAdmin()) {
|
|
|
263 |
//partie administrer
|
|
|
264 |
if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_ADMIN))) {
|
|
|
265 |
$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_ADMIN);
|
|
|
266 |
$res .= '<li id="administrer"';
|
|
|
267 |
if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_ADMIN) $res .=' class="onglet_actif" ';
|
|
|
268 |
$res .='><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_ADMINISTRER.'</a></li>'."\n";
|
|
|
269 |
}
|
|
|
270 |
|
|
|
271 |
if ($utilisateur->isSuperAdmin()) {
|
|
|
272 |
if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_GESTION_DROITS))) {
|
|
|
273 |
$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_GESTION_DROITS);
|
|
|
274 |
$res .= '<li id="gerer"';
|
|
|
275 |
if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_GESTION_DROITS) $res .=' class="onglet_actif" ';
|
|
|
276 |
$res .='><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_GESTION_DES_DROITS.'</a></li>'."\n" ;
|
|
|
277 |
}
|
|
|
278 |
}
|
|
|
279 |
}
|
|
|
280 |
}
|
|
|
281 |
// Au final, on place dans l url, l action courante
|
|
|
282 |
if (isset($_GET[BAZ_VARIABLE_VOIR])) $GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, $_GET[BAZ_VARIABLE_VOIR]);
|
|
|
283 |
$res.= '</ul>'."\n";
|
|
|
284 |
return $res ;
|
|
|
285 |
}
|
|
|
286 |
}
|
|
|
287 |
|
|
|
288 |
function afficherContenuCorps() {
|
|
|
289 |
$res = '';
|
|
|
290 |
$res.='<h1 id="titre_bazar">'.$GLOBALS['_GEN_commun']['info_menu']->gm_titre.'</h1>'."\n";
|
|
|
291 |
|
|
|
292 |
// La resolution des actions ci-dessous AVANT l afichage des vues afin
|
|
|
293 |
// d afficher des vues correctes
|
|
|
294 |
|
360 |
alexandre_ |
295 |
if (isset($_GET[BAZ_VARIABLE_ACTION])) {
|
417 |
jpm |
296 |
if (($_GET[BAZ_VARIABLE_ACTION]!=BAZ_ACTION_NOUVEAU_V)and($_GET[BAZ_VARIABLE_ACTION]!=BAZ_ACTION_MODIFIER_V)) unset($_SESSION['formulaire_annonce_valide']);
|
360 |
alexandre_ |
297 |
switch ($_GET[BAZ_VARIABLE_ACTION]) {
|
314 |
alexandre_ |
298 |
case BAZ_ACTION_VOIR_VOS_ANNONCES : $res .= mes_fiches(); break;
|
|
|
299 |
case BAZ_ANNONCES_A_VALIDER : $res .= fiches_a_valider(); break;
|
|
|
300 |
case BAZ_ADMINISTRER_ANNONCES : $res .= baz_administrer_annonces(); break;
|
|
|
301 |
case BAZ_SUPPRIMER_FICHE : $res .= baz_suppression().baz_liste('',$GLOBALS['id_user'],''); break;
|
|
|
302 |
case BAZ_VOIR_FICHE : $res .= baz_voir_fiche(1); break;
|
417 |
jpm |
303 |
case BAZ_ACTION_NOUVEAU_V : $res .= baz_formulaire(BAZ_ACTION_NOUVEAU_V).mes_fiches(); break;
|
|
|
304 |
case BAZ_ACTION_SUPPRESSION : $res .= baz_suppression(); unset ($_GET['action']); break;
|
314 |
alexandre_ |
305 |
case BAZ_ACTION_PUBLIER : publier_fiche(1) ; break;
|
|
|
306 |
case BAZ_ACTION_PAS_PUBLIER : publier_fiche(0) ;$res .= fiches_a_valider(); break;
|
|
|
307 |
case BAZ_S_INSCRIRE : $res .= baz_s_inscrire(); break;
|
|
|
308 |
case BAZ_VOIR_FLUX_RSS : header('Content-type: text/xml; charset=UTF-8');include("bazarRSS.php");exit(0);break;
|
417 |
jpm |
309 |
case BAZ_ACTION_POST_VALIDATION : $res .= baz_post_validation();break;
|
314 |
alexandre_ |
310 |
}
|
|
|
311 |
|
|
|
312 |
}
|
|
|
313 |
if (isset ($_GET[BAZ_VARIABLE_VOIR])) {
|
|
|
314 |
switch ($_GET[BAZ_VARIABLE_VOIR]) {
|
|
|
315 |
case BAZ_VOIR_CONSULTER:
|
360 |
alexandre_ |
316 |
if (isset ($_GET[BAZ_VARIABLE_ACTION]) && $_GET[BAZ_VARIABLE_ACTION] != BAZ_VOIR_TOUTES_ANNONCES) {
|
|
|
317 |
$res .= baz_formulaire($_GET[BAZ_VARIABLE_ACTION]) ;
|
|
|
318 |
if ($_GET[BAZ_VARIABLE_ACTION] == BAZ_ACTION_MODIFIER_V) $res .= baz_voir_fiche(1);
|
327 |
alexandre_ |
319 |
} else $res .= baz_liste($GLOBALS['_BAZAR_']['id_typeannonce']);
|
314 |
alexandre_ |
320 |
break;
|
|
|
321 |
case BAZ_VOIR_MES_FICHES :
|
360 |
alexandre_ |
322 |
if (isset ($_GET[BAZ_VARIABLE_ACTION])) $res .= baz_formulaire($_GET[BAZ_VARIABLE_ACTION]) ; else $res .= mes_fiches();
|
314 |
alexandre_ |
323 |
break;
|
|
|
324 |
case BAZ_VOIR_S_ABONNER : $res .= baz_s_inscrire();
|
|
|
325 |
break;
|
|
|
326 |
case BAZ_VOIR_SAISIR :
|
360 |
alexandre_ |
327 |
if (isset ($_GET[BAZ_VARIABLE_ACTION])) $res .= baz_formulaire($_GET[BAZ_VARIABLE_ACTION]) ; else $res .= baz_formulaire(BAZ_DEPOSER_ANNONCE);
|
314 |
alexandre_ |
328 |
break;
|
|
|
329 |
case BAZ_VOIR_ADMIN:
|
360 |
alexandre_ |
330 |
if (isset($_GET[BAZ_VARIABLE_ACTION])) $res .= baz_formulaire($_GET[BAZ_VARIABLE_ACTION]) ; else $res .= fiches_a_valider();
|
314 |
alexandre_ |
331 |
break;
|
|
|
332 |
case BAZ_VOIR_GESTION_DROITS: $res .= baz_gestion_droits();
|
|
|
333 |
break;
|
|
|
334 |
default :
|
|
|
335 |
$res .= baz_liste($GLOBALS['_BAZAR_']['id_typeannonce']);
|
|
|
336 |
}
|
|
|
337 |
}
|
|
|
338 |
return $res ;
|
|
|
339 |
}
|
|
|
340 |
|
|
|
341 |
|
|
|
342 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
343 |
*
|
10 |
ddelon |
344 |
* $Log: not supported by cvs2svn $
|
374 |
alexandre_ |
345 |
* Revision 1.49.2.3 2008-01-29 09:43:19 alexandre_tb
|
|
|
346 |
* Utilisation d un redirection pour eviter que les formulaires soient valides 2 fois
|
|
|
347 |
*
|
365 |
alexandre_ |
348 |
* Revision 1.49.2.2 2008-01-11 14:07:39 alexandre_tb
|
|
|
349 |
* Remplacement de la variable action ecrite en dur par la constante BAZ_VARIABLE_ACTION
|
|
|
350 |
*
|
360 |
alexandre_ |
351 |
* Revision 1.49.2.1 2007-12-04 09:01:17 alexandre_tb
|
|
|
352 |
* suppression de vieux code commenté.
|
|
|
353 |
*
|
345 |
alexandre_ |
354 |
* Revision 1.49 2007-10-24 13:26:02 alexandre_tb
|
|
|
355 |
* bug : double saisie d url
|
|
|
356 |
*
|
327 |
alexandre_ |
357 |
* Revision 1.48 2007-10-17 08:24:59 alexandre_tb
|
|
|
358 |
* correction multilinguisme
|
|
|
359 |
*
|
320 |
alexandre_ |
360 |
* Revision 1.47 2007-10-01 12:13:53 alexandre_tb
|
|
|
361 |
* bug, affichage vue / action pour la vue "administrer"
|
|
|
362 |
*
|
314 |
alexandre_ |
363 |
* Revision 1.46 2007-09-28 14:29:13 jp_milcent
|
|
|
364 |
* Ajout de la gestion de l'affichage des vues ou pas.
|
|
|
365 |
*
|
305 |
jp_milcent |
366 |
* Revision 1.45 2007-09-18 14:24:01 alexandre_tb
|
|
|
367 |
* onglet administrer
|
|
|
368 |
*
|
301 |
alexandre_ |
369 |
* Revision 1.44 2007-09-06 15:39:28 alexandre_tb
|
|
|
370 |
* fixation d une valeur par defaut a la variable vue pour
|
|
|
371 |
* eviter un ecran vide si pas de parametres dans le menu
|
|
|
372 |
*
|
291 |
alexandre_ |
373 |
* Revision 1.43 2007-08-27 12:26:04 alexandre_tb
|
|
|
374 |
* Mise en place de l action BAZ_VOIR_ADMIN
|
|
|
375 |
*
|
282 |
alexandre_ |
376 |
* Revision 1.42 2007-07-05 08:29:24 alexandre_tb
|
|
|
377 |
* modification du charset iso-8859-1 vers utf8 lors l'envoie des entetes xml.
|
|
|
378 |
*
|
277 |
alexandre_ |
379 |
* Revision 1.41 2007-07-04 10:05:12 alexandre_tb
|
|
|
380 |
* ajout d une variable $_GET['vue'] en complement de la variable action.
|
|
|
381 |
* Elle correspond aux 6 vues du bazar (consulter, mes fiches, s'abonner, saisir, administrer, gestion des droits)
|
|
|
382 |
*
|
272 |
alexandre_ |
383 |
* Revision 1.40 2007/04/11 08:30:12 neiluj
|
|
|
384 |
* remise en état du CVS...
|
|
|
385 |
*
|
225 |
neiluj |
386 |
* Revision 1.35.2.2 2007/03/07 16:53:17 jp_milcent
|
|
|
387 |
* Suppression du query string "action" et non pas "nature"
|
221 |
florian |
388 |
*
|
185 |
jp_milcent |
389 |
* Revision 1.35.2.1 2007/02/15 13:42:16 jp_milcent
|
|
|
390 |
* Utilisation de IN à la place du = dans les requêtes traitant les catégories de fiches.
|
|
|
391 |
* Permet d'utiliser la syntaxe 1,2,3 dans la configuration de categorie_nature.
|
|
|
392 |
*
|
|
|
393 |
* Revision 1.35 2006/10/05 08:53:50 florian
|
|
|
394 |
* amelioration moteur de recherche, correction de bugs
|
|
|
395 |
*
|
154 |
florian |
396 |
* Revision 1.34 2006/09/04 15:25:12 alexandre_tb
|
|
|
397 |
* ajout d'un id dans la balise HTML du titre
|
|
|
398 |
*
|
145 |
alexandre_ |
399 |
* Revision 1.33 2006/06/21 15:41:42 alexandre_tb
|
|
|
400 |
* rétablissement du menu mes fiches
|
|
|
401 |
*
|
133 |
alexandre_ |
402 |
* Revision 1.32 2006/06/21 15:40:15 alexandre_tb
|
|
|
403 |
* rétablissement du menu mes fiches
|
|
|
404 |
*
|
132 |
alexandre_ |
405 |
* Revision 1.31 2006/05/19 13:54:32 florian
|
|
|
406 |
* stabilisation du moteur de recherche, corrections bugs, lien recherche avancee
|
|
|
407 |
*
|
126 |
florian |
408 |
* Revision 1.30 2006/04/28 12:46:14 florian
|
|
|
409 |
* integration des liens vers annuaire
|
|
|
410 |
*
|
118 |
florian |
411 |
* Revision 1.29 2006/04/24 10:16:22 alexandre_tb
|
|
|
412 |
* ajout de la globale filtre.
|
|
|
413 |
* elle remplace (à terme) catégorie nature
|
|
|
414 |
*
|
117 |
alexandre_ |
415 |
* Revision 1.28 2006/03/29 13:05:41 alexandre_tb
|
|
|
416 |
* utilisation de la classe Administrateur_bazar
|
|
|
417 |
*
|
111 |
alexandre_ |
418 |
* Revision 1.27 2006/02/07 11:08:36 alexandre_tb
|
|
|
419 |
* utilisation de la classe Utilisateur_bazar pour la vérification des droits
|
|
|
420 |
*
|
92 |
alexandre_ |
421 |
* Revision 1.26 2006/02/06 09:33:53 alexandre_tb
|
|
|
422 |
* modification de l'affichage lors de la saisie de fiche
|
|
|
423 |
*
|
90 |
alexandre_ |
424 |
* Revision 1.25 2006/01/30 17:25:38 alexandre_tb
|
|
|
425 |
* correction de bugs
|
|
|
426 |
*
|
87 |
alexandre_ |
427 |
* Revision 1.24 2006/01/26 11:06:43 alexandre_tb
|
|
|
428 |
* ajout d'une requete pour recupere l'id_nature si un id_fiche est passé dans l'url
|
|
|
429 |
*
|
84 |
alexandre_ |
430 |
* Revision 1.23 2006/01/17 10:07:36 alexandre_tb
|
|
|
431 |
* en cours
|
|
|
432 |
*
|
72 |
alexandre_ |
433 |
* Revision 1.22 2006/01/16 15:11:28 alexandre_tb
|
|
|
434 |
* simplification code
|
|
|
435 |
*
|
71 |
alexandre_ |
436 |
* Revision 1.21 2006/01/13 14:12:52 florian
|
|
|
437 |
* utilisation des temlates dans la table bazar_nature
|
|
|
438 |
*
|
68 |
florian |
439 |
* Revision 1.20 2006/01/05 16:28:25 alexandre_tb
|
|
|
440 |
* prise en chage des checkbox, reste la mise à jour à gérer
|
|
|
441 |
*
|
67 |
alexandre_ |
442 |
* Revision 1.19 2006/01/03 10:19:31 florian
|
|
|
443 |
* 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...
|
|
|
444 |
*
|
64 |
florian |
445 |
* Revision 1.18 2005/12/02 10:57:03 florian
|
|
|
446 |
* MAJ pour paramétrage dans gestion de menus papyrus
|
|
|
447 |
*
|
59 |
florian |
448 |
* Revision 1.17 2005/12/01 16:05:41 florian
|
|
|
449 |
* changement des chemins pour appli Pear
|
|
|
450 |
*
|
57 |
florian |
451 |
* Revision 1.16 2005/12/01 15:31:30 florian
|
|
|
452 |
* correction bug modifs et saisies
|
|
|
453 |
*
|
56 |
florian |
454 |
* Revision 1.15 2005/11/30 13:58:45 florian
|
|
|
455 |
* ajouts graphisme (logos, boutons), changement structure SQL bazar_fiche
|
|
|
456 |
*
|
55 |
florian |
457 |
* Revision 1.14 2005/11/24 16:17:13 florian
|
|
|
458 |
* corrections bugs, ajout des cases à cocher
|
|
|
459 |
*
|
54 |
florian |
460 |
* Revision 1.13 2005/11/14 16:04:54 florian
|
|
|
461 |
* maj bug affichage flux
|
|
|
462 |
*
|
51 |
florian |
463 |
* Revision 1.12 2005/11/07 17:05:46 florian
|
|
|
464 |
* amélioration validation conditions de saisie, ajout des règles spécifiques de saisie des formulaires
|
|
|
465 |
*
|
45 |
florian |
466 |
* Revision 1.11 2005/10/21 16:15:04 florian
|
|
|
467 |
* mise a jour appropriation
|
|
|
468 |
*
|
39 |
florian |
469 |
* Revision 1.10 2005/10/12 17:20:33 ddelon
|
|
|
470 |
* Reorganisation calendrier + applette
|
|
|
471 |
*
|
30 |
ddelon |
472 |
* Revision 1.9 2005/10/12 13:35:07 florian
|
|
|
473 |
* amélioration de l'interface de bazar, de manière a simplifier les consultations, et à harmoniser par rapport aux Ressources
|
|
|
474 |
*
|
22 |
florian |
475 |
* Revision 1.8 2005/09/30 13:00:05 ddelon
|
|
|
476 |
* Fiche bazar generique
|
|
|
477 |
*
|
11 |
ddelon |
478 |
* Revision 1.7 2005/09/30 12:34:44 ddelon
|
|
|
479 |
* petite modification pour integration bazar dans papyrus
|
|
|
480 |
*
|
10 |
ddelon |
481 |
* Revision 1.6 2005/09/30 12:22:54 florian
|
|
|
482 |
* Ajouts commentaires pour fiche, modifications graphiques, maj SQL
|
314 |
alexandre_ |
483 |
*
|
|
|
484 |
* Revision 1.4 2005/07/21 19:03:12 florian
|
|
|
485 |
* nouveautés bazar: templates fiches, correction de bugs, ...
|
|
|
486 |
*
|
|
|
487 |
* Revision 1.2 2005/02/22 15:33:32 florian
|
|
|
488 |
* integration dans Papyrus
|
|
|
489 |
*
|
|
|
490 |
* Revision 1.1.1.1 2005/02/17 18:05:11 florian
|
|
|
491 |
* Import initial de Bazar
|
|
|
492 |
*
|
|
|
493 |
* Revision 1.1.1.1 2005/02/17 11:09:50 florian
|
|
|
494 |
* Import initial
|
|
|
495 |
*
|
|
|
496 |
* Revision 1.1.1.1 2005/02/16 18:06:35 florian
|
|
|
497 |
* import de la nouvelle version
|
|
|
498 |
*
|
|
|
499 |
* Revision 1.3 2004/07/05 15:10:14 florian
|
|
|
500 |
* changement interface de saisie
|
|
|
501 |
*
|
|
|
502 |
* Revision 1.2 2004/07/01 10:13:41 florian
|
|
|
503 |
* modif Florian
|
|
|
504 |
*
|
|
|
505 |
* Revision 1.1 2004/06/23 09:58:32 alex
|
|
|
506 |
* version initiale
|
|
|
507 |
*
|
|
|
508 |
* Revision 1.1 2004/06/18 09:00:07 alex
|
|
|
509 |
* version initiale
|
|
|
510 |
*
|
|
|
511 |
*
|
|
|
512 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
513 |
*/
|
|
|
514 |
?>
|