Subversion Repositories Applications.bazar

Rev

Rev 437 | Rev 450 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 437 Rev 447
Line 1... Line 1...
1
<?php
1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */ 
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.1                                                                                      |
4
// | PHP version 4.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
7
// +------------------------------------------------------------------------------------------------------+
Line 19... Line 19...
19
// | License along with this library; if not, write to the Free Software                                  |
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                            |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
21
// +------------------------------------------------------------------------------------------------------+
22
// CVS : $Id: bazar.php,v 1.52 2008-10-29 15:52:14 alexandre_tb Exp $
22
// CVS : $Id: bazar.php,v 1.52 2008-10-29 15:52:14 alexandre_tb Exp $
23
/**
23
/**
24
* 
24
*
25
*@package bazar
25
*@package bazar
26
//Auteur original :
26
//Auteur original :
27
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
27
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
28
*@author        Florian Schmitt <florian@ecole-et-nature.org>
28
*@author        Florian Schmitt <florian@ecole-et-nature.org>
29
//Autres auteurs :
29
//Autres auteurs :
Line 50... Line 50...
50
//**********************************************************************************************************
50
//**********************************************************************************************************
51
//initialisation des paramêtres papyrus
51
//initialisation des paramêtres papyrus
52
//**********************************************************************************************************
52
//**********************************************************************************************************
53
//si un parametre est précisé dans le gestionnaire de menus papyrus, on le prends en compte
53
//si un parametre est précisé dans le gestionnaire de menus papyrus, on le prends en compte
Line 54... Line 54...
54
 
54
 
55
//parametre action pour lancer directement l'action indiquée  
55
//parametre action pour lancer directement l'action indiquée
56
if (!isset($_GET['action'])and(isset($GLOBALS['_GEN_commun']['info_application']->action))) {
56
if (!isset($_GET['action'])and(isset($GLOBALS['_GEN_commun']['info_application']->action))) {
57
	$_GET['action']=$GLOBALS['_GEN_commun']['info_application']->action;
57
	$_GET['action']=$GLOBALS['_GEN_commun']['info_application']->action;
Line 58... Line 58...
58
}
58
}
59
 
59
 
60
//parametre vue pour afficher directement une vue  
60
//parametre vue pour afficher directement une vue
61
if (!isset($_GET[BAZ_VARIABLE_VOIR])and(isset($GLOBALS['_GEN_commun']['info_application']->vue))) {
61
if (!isset($_GET[BAZ_VARIABLE_VOIR])and(isset($GLOBALS['_GEN_commun']['info_application']->vue))) {
Line 62... Line 62...
62
	$_GET[BAZ_VARIABLE_VOIR]=$GLOBALS['_GEN_commun']['info_application']->vue;
62
	$_GET[BAZ_VARIABLE_VOIR]=$GLOBALS['_GEN_commun']['info_application']->vue;
Line 99... Line 99...
99
	$GLOBALS['_BAZAR_']['id_fiche']=$_REQUEST['id_fiche'];
99
	$GLOBALS['_BAZAR_']['id_fiche']=$_REQUEST['id_fiche'];
100
	// récupération du type d'annonce à partir de la fiche
100
	// récupération du type d'annonce à partir de la fiche
101
	$requete = 'select bf_ce_nature from bazar_fiche where bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'] ;
101
	$requete = 'select bf_ce_nature from bazar_fiche where bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'] ;
102
	$resultat = $GLOBALS['_BAZAR_']['db']->query ($requete) ;
102
	$resultat = $GLOBALS['_BAZAR_']['db']->query ($requete) ;
103
	if (DB::isError($resultat)) {
103
	if (DB::isError($resultat)) {
104
		echo $resultat->getMessage().'<br />'.$resultat->getDebugInfo();	
104
		echo $resultat->getMessage().'<br />'.$resultat->getDebugInfo();
105
	}
105
	}
106
	$ligne = $resultat->fetchRow(DB_FETCHMODE_OBJECT) ;
106
	$ligne = $resultat->fetchRow(DB_FETCHMODE_OBJECT) ;
107
	$GLOBALS['_BAZAR_']['id_typeannonce'] = $ligne->bf_ce_nature ;
107
	$GLOBALS['_BAZAR_']['id_typeannonce'] = $ligne->bf_ce_nature ;
108
	$resultat->free();
108
	$resultat->free();
109
}		
109
}
110
if (isset($_REQUEST['typeannonce'])) {
110
if (isset($_REQUEST['typeannonce'])) {
111
	$GLOBALS['_BAZAR_']['id_typeannonce']=$_REQUEST['typeannonce'];
111
	$GLOBALS['_BAZAR_']['id_typeannonce']=$_REQUEST['typeannonce'];
112
}
112
}
Line 113... Line 113...
113
 
113
 
Line 126... Line 126...
126
	$GLOBALS['_BAZAR_']['condition']=$ligne['bn_condition'];
126
	$GLOBALS['_BAZAR_']['condition']=$ligne['bn_condition'];
127
    $GLOBALS['_BAZAR_']['template']=$ligne['bn_template'];
127
    $GLOBALS['_BAZAR_']['template']=$ligne['bn_template'];
128
	$GLOBALS['_BAZAR_']['commentaire']=$ligne['bn_commentaire'];
128
	$GLOBALS['_BAZAR_']['commentaire']=$ligne['bn_commentaire'];
129
	$GLOBALS['_BAZAR_']['appropriation']=$ligne['bn_appropriation'];
129
	$GLOBALS['_BAZAR_']['appropriation']=$ligne['bn_appropriation'];
130
	$GLOBALS['_BAZAR_']['image_titre']=$ligne['bn_image_titre'];
130
	$GLOBALS['_BAZAR_']['image_titre']=$ligne['bn_image_titre'];
131
	$GLOBALS['_BAZAR_']['image_logo']=$ligne['bn_image_logo'];	
131
	$GLOBALS['_BAZAR_']['image_logo']=$ligne['bn_image_logo'];
132
}
132
}
133
if (!isset($GLOBALS['_BAZAR_']['id_typeannonce'])) $GLOBALS['_BAZAR_']['id_typeannonce'] = 'toutes' ;
133
if (!isset($GLOBALS['_BAZAR_']['id_typeannonce'])) $GLOBALS['_BAZAR_']['id_typeannonce'] = 'toutes' ;
134
// +------------------------------------------------------------------------------------------------------+
134
// +------------------------------------------------------------------------------------------------------+
135
// |                                           LISTE de FONCTIONS                                         |
135
// |                                           LISTE de FONCTIONS                                         |
136
// +------------------------------------------------------------------------------------------------------+
136
// +------------------------------------------------------------------------------------------------------+
Line 149... Line 149...
149
			$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_CONSULTER);
149
			$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_CONSULTER);
150
			$res .= '<li id="consulter"';
150
			$res .= '<li id="consulter"';
151
			if ((isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR] == BAZ_VOIR_CONSULTER)) $res .=' class="onglet_actif" ';
151
			if ((isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR] == BAZ_VOIR_CONSULTER)) $res .=' class="onglet_actif" ';
152
			$res .='><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_CONSULTER.'</a>'."\n".'</li>'."\n";
152
			$res .='><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_CONSULTER.'</a>'."\n".'</li>'."\n";
153
		}
153
		}
154
		
154
 
155
		// Mes fiches
155
		// Mes fiches
156
		if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_MES_FICHES))) {
156
		if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_MES_FICHES))) {
157
			$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_MES_FICHES);
157
			$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_MES_FICHES);
158
			$res .= '<li id="mes_fiches"';
158
			$res .= '<li id="mes_fiches"';
159
			if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR] == BAZ_VOIR_MES_FICHES) $res .=' class="onglet_actif" ';
159
			if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR] == BAZ_VOIR_MES_FICHES) $res .=' class="onglet_actif" ';
160
			$res .= '><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_VOIR_VOS_ANNONCES.'</a>'."\n".'</li>'."\n";
160
			$res .= '><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_VOIR_VOS_ANNONCES.'</a>'."\n".'</li>'."\n";
161
		}
161
		}
162
		
162
 
163
		//partie abonnement aux annonces
163
		//partie abonnement aux annonces
164
		if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_S_ABONNER))) {
164
		if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_S_ABONNER))) {
165
			$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_S_ABONNER);
165
			$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_S_ABONNER);
166
			$res .= '<li id="inscrire"';
166
			$res .= '<li id="inscrire"';
167
			if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_S_ABONNER) $res .=' class="onglet_actif" ';
167
			if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_S_ABONNER) $res .=' class="onglet_actif" ';
168
			$res .= '><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_S_ABONNER.'</a></li>'."\n" ;
168
			$res .= '><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_S_ABONNER.'</a></li>'."\n" ;
169
		}
169
		}
170
		
170
 
171
		//partie saisie d'annonces
171
		//partie saisie d'annonces
172
		if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_SAISIR))) {
172
		if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_SAISIR))) {
173
			$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_SAISIR);
173
			$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_SAISIR);
174
			$res .= '<li id="deposer"';
174
			$res .= '<li id="deposer"';
175
			if (isset($_GET[BAZ_VARIABLE_VOIR]) && ($_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_SAISIR )) $res .=' class="onglet_actif" ';
175
			if (isset($_GET[BAZ_VARIABLE_VOIR]) && ($_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_SAISIR )) $res .=' class="onglet_actif" ';
176
			$res .='><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_SAISIR.'</a>'."\n".'</li>'."\n";
176
			$res .='><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_SAISIR.'</a>'."\n".'</li>'."\n";
177
		}
177
		}
178
		
178
 
179
		//choix des administrateurs	
179
		//choix des administrateurs
180
		$utilisateur = new Administrateur_bazar($GLOBALS['AUTH']) ;
180
		$utilisateur = new Administrateur_bazar($GLOBALS['AUTH']) ;
181
		$est_admin=0;
181
		$est_admin=0;
182
		if ($GLOBALS['AUTH']->getAuth()) {
182
		if ($GLOBALS['AUTH']->getAuth()) {
183
			$requete='SELECT bn_id_nature FROM bazar_nature';
183
			$requete='SELECT bn_id_nature FROM bazar_nature';
184
			$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
184
			$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
Line 196... Line 196...
196
					$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_ADMIN);
196
					$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_ADMIN);
197
					$res .= '<li id="administrer"';
197
					$res .= '<li id="administrer"';
198
					if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_ADMIN) $res .=' class="onglet_actif" ';
198
					if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_ADMIN) $res .=' class="onglet_actif" ';
199
					$res .='><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_ADMINISTRER.'</a></li>'."\n";
199
					$res .='><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_ADMINISTRER.'</a></li>'."\n";
200
				}
200
				}
201
				
201
 
202
				if ($utilisateur->isSuperAdmin()) {
202
				if ($utilisateur->isSuperAdmin()) {
203
					if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_GESTION_DROITS))) {
203
					if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_GESTION_DROITS))) {
204
						$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_GESTION_DROITS);
204
						$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_GESTION_DROITS);
205
						$res .= '<li id="gerer"';
205
						$res .= '<li id="gerer"';
206
						if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_GESTION_DROITS) $res .=' class="onglet_actif" ';
206
						if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_GESTION_DROITS) $res .=' class="onglet_actif" ';
207
						$res .='><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_GESTION_DES_DROITS.'</a></li>'."\n" ;
207
						$res .='><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_GESTION_DES_DROITS.'</a></li>'."\n" ;
208
					}
208
					}
209
				}
209
				}
210
			}
210
			}
211
		}	
211
		}
212
		// Au final, on place dans l url, l action courante
212
		// Au final, on place dans l url, l action courante
213
		if (isset($_GET[BAZ_VARIABLE_VOIR])) $GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, $_GET[BAZ_VARIABLE_VOIR]);
213
		if (isset($_GET[BAZ_VARIABLE_VOIR])) $GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, $_GET[BAZ_VARIABLE_VOIR]);
214
		$res.= '</ul>'."\n";
214
		$res.= '</ul>'."\n";
215
	    return $res ;
215
	    return $res ;
216
	}
216
	}
217
}
217
}
218
    
218
 
219
function afficherContenuCorps() {	
219
function afficherContenuCorps() {
220
	$res = '';
220
	$res = '';
221
	$res.='<h1 id="titre_bazar">'.$GLOBALS['_GEN_commun']['info_menu']->gm_titre.'</h1>'."\n";
221
	$res.='<h1 id="titre_bazar">'.$GLOBALS['_GEN_commun']['info_menu']->gm_titre.'</h1>'."\n";
Line 222... Line 222...
222
 
222
 
223
	// La resolution des actions ci-dessous AVANT l afichage des vues afin
223
	// La resolution des actions ci-dessous AVANT l afichage des vues afin
224
	// d afficher des vues correctes
224
	// d afficher des vues correctes
225
	
225
 
226
	if (isset($_GET[BAZ_VARIABLE_ACTION])) {
226
	if (isset($_GET[BAZ_VARIABLE_ACTION])) {
-
 
227
		if (($_GET[BAZ_VARIABLE_ACTION]!=BAZ_ACTION_NOUVEAU_V) && ($_GET[BAZ_VARIABLE_ACTION]!=BAZ_ACTION_MODIFIER_V)) {
-
 
228
				 unset($_SESSION['formulaire_annonce_valide']);
227
		if (($_GET[BAZ_VARIABLE_ACTION]!=BAZ_ACTION_NOUVEAU_V)and($_GET[BAZ_VARIABLE_ACTION]!=BAZ_ACTION_MODIFIER_V)) unset($_SESSION['formulaire_annonce_valide']);
229
		}
228
		switch ($_GET[BAZ_VARIABLE_ACTION]) {
230
		switch ($_GET[BAZ_VARIABLE_ACTION]) {
229
			case BAZ_ACTION_VOIR_VOS_ANNONCES : $res .= mes_fiches(); break;
231
			case BAZ_ACTION_VOIR_VOS_ANNONCES : $res .= mes_fiches(); break;
230
			case BAZ_ANNONCES_A_VALIDER : $res .= fiches_a_valider(); break;
232
			case BAZ_ANNONCES_A_VALIDER : $res .= fiches_a_valider(); break;
231
			case BAZ_ADMINISTRER_ANNONCES : $res .= baz_administrer_annonces(); break;
233
			case BAZ_ADMINISTRER_ANNONCES : $res .= baz_administrer_annonces(); break;
Line 237... Line 239...
237
			case BAZ_ACTION_PAS_PUBLIER : publier_fiche(0) ;$res .= fiches_a_valider(); break;
239
			case BAZ_ACTION_PAS_PUBLIER : publier_fiche(0) ;$res .= fiches_a_valider(); break;
238
			case BAZ_S_INSCRIRE : $res .= baz_s_inscrire(); break;
240
			case BAZ_S_INSCRIRE : $res .= baz_s_inscrire(); break;
239
			case BAZ_VOIR_FLUX_RSS : header('Content-type: text/xml; charset=UTF-8');include("bazarRSS.php");exit(0);break;
241
			case BAZ_VOIR_FLUX_RSS : header('Content-type: text/xml; charset=UTF-8');include("bazarRSS.php");exit(0);break;
240
			case BAZ_ACTION_POST_VALIDATION : $res .= baz_post_validation();break;
242
			case BAZ_ACTION_POST_VALIDATION : $res .= baz_post_validation();break;
241
		}
243
		}
242
		
244
 
243
	}
245
	}
244
	if (isset ($_GET[BAZ_VARIABLE_VOIR])) {
246
	if (isset ($_GET[BAZ_VARIABLE_VOIR])) {
245
			switch ($_GET[BAZ_VARIABLE_VOIR]) {
247
			switch ($_GET[BAZ_VARIABLE_VOIR]) {
246
				case BAZ_VOIR_CONSULTER: 
248
				case BAZ_VOIR_CONSULTER:
247
				if (isset ($_GET[BAZ_VARIABLE_ACTION]) && $_GET[BAZ_VARIABLE_ACTION] != BAZ_VOIR_TOUTES_ANNONCES) {
249
				if (isset ($_GET[BAZ_VARIABLE_ACTION]) && $_GET[BAZ_VARIABLE_ACTION] != BAZ_VOIR_TOUTES_ANNONCES) {
248
					$res .= baz_formulaire($_GET[BAZ_VARIABLE_ACTION]) ;
250
					$res .= baz_formulaire($_GET[BAZ_VARIABLE_ACTION]) ;
249
					if ($_GET[BAZ_VARIABLE_ACTION] == BAZ_ACTION_MODIFIER_V) $res .= baz_voir_fiche(1);
251
					if ($_GET[BAZ_VARIABLE_ACTION] == BAZ_ACTION_MODIFIER_V) $res .= baz_voir_fiche(1);
250
				} else $res .= baz_liste($GLOBALS['_BAZAR_']['id_typeannonce']);
252
				} else $res .= baz_liste($GLOBALS['_BAZAR_']['id_typeannonce']);
251
				break;
253
				break;
252
				case BAZ_VOIR_MES_FICHES : 
254
				case BAZ_VOIR_MES_FICHES :
253
				if (isset ($_GET[BAZ_VARIABLE_ACTION])) $res .= baz_formulaire($_GET[BAZ_VARIABLE_ACTION]) ; else $res .= mes_fiches();
255
				if (isset ($_GET[BAZ_VARIABLE_ACTION])) $res .= baz_formulaire($_GET[BAZ_VARIABLE_ACTION]) ; else $res .= mes_fiches();
254
				break;
256
				break;
255
				case BAZ_VOIR_S_ABONNER : $res .= baz_s_inscrire();
257
				case BAZ_VOIR_S_ABONNER : $res .= baz_s_inscrire();
256
				break;
258
				break;
257
				case BAZ_VOIR_SAISIR : 
259
				case BAZ_VOIR_SAISIR :
258
				if (isset ($_GET[BAZ_VARIABLE_ACTION])) $res .= baz_formulaire($_GET[BAZ_VARIABLE_ACTION]) ; else $res .= baz_formulaire(BAZ_DEPOSER_ANNONCE);
260
				if (isset ($_GET[BAZ_VARIABLE_ACTION])) $res .= baz_formulaire($_GET[BAZ_VARIABLE_ACTION]) ; else $res .= baz_formulaire(BAZ_DEPOSER_ANNONCE);
259
				break;
261
				break;
260
				case BAZ_VOIR_ADMIN: 
262
				case BAZ_VOIR_ADMIN:
261
				if (isset($_GET[BAZ_VARIABLE_ACTION])) $res .= baz_formulaire($_GET[BAZ_VARIABLE_ACTION]) ; else $res .= fiches_a_valider();
263
				if (isset($_GET[BAZ_VARIABLE_ACTION])) $res .= baz_formulaire($_GET[BAZ_VARIABLE_ACTION]) ; else $res .= fiches_a_valider();
262
				break;
264
				break;
263
				case BAZ_VOIR_GESTION_DROITS: $res .= baz_gestion_droits();
265
				case BAZ_VOIR_GESTION_DROITS: $res .= baz_gestion_droits();
264
				break;
266
				break;
265
				default :
267
				default :