Subversion Repositories Applications.bazar

Rev

Rev 314 | Rev 327 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 314 Rev 320
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
// +------------------------------------------------------------------------------------------------------+
8
// | This library is free software; you can redistribute it and/or                                        |
8
// | This library is free software; you can redistribute it and/or                                        |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
10
// | License as published by the Free Software Foundation; either                                         |
10
// | License as published by the Free Software Foundation; either                                         |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
12
// |                                                                                                      |
12
// |                                                                                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
16
// | Lesser General Public License for more details.                                                      |
16
// | Lesser General Public License for more details.                                                      |
17
// |                                                                                                      |
17
// |                                                                                                      |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
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                                  |
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.47 2007-10-01 12:13:53 alexandre_tb Exp $
22
// CVS : $Id: bazar.php,v 1.48 2007-10-17 08:24:59 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 :
30
*@copyright     Tela-Botanica 2000-2004
30
*@copyright     Tela-Botanica 2000-2004
31
*@version       $Revision: 1.47 $ $Date: 2007-10-01 12:13:53 $
31
*@version       $Revision: 1.48 $ $Date: 2007-10-17 08:24:59 $
32
// +------------------------------------------------------------------------------------------------------+
32
// +------------------------------------------------------------------------------------------------------+
33
*/
33
*/
34
 
34
 
35
// +------------------------------------------------------------------------------------------------------+
35
// +------------------------------------------------------------------------------------------------------+
36
// |                                            ENTETE du PROGRAMME                                       |
36
// |                                            ENTETE du PROGRAMME                                       |
37
// +------------------------------------------------------------------------------------------------------+
37
// +------------------------------------------------------------------------------------------------------+
38
 
38
 
39
error_reporting(E_ALL);
39
error_reporting(E_ALL);
40
require_once PAP_CHEMIN_API_PEAR.'DB.php' ;
40
require_once PAP_CHEMIN_API_PEAR.'DB.php' ;
41
require_once PAP_CHEMIN_API_PEAR.'Auth.php' ;
41
require_once PAP_CHEMIN_API_PEAR.'Auth.php' ;
42
require_once 'configuration/baz_config.inc.php'; //fichier de configuration de Bazar
42
require_once 'configuration/baz_config.inc.php'; //fichier de configuration de Bazar
43
require_once 'bibliotheque/bazar.class.php';
43
require_once 'bibliotheque/bazar.class.php';
44
require_once 'bibliotheque/bazar.fonct.php'; //fichier des fonctions de Bazar
44
require_once 'bibliotheque/bazar.fonct.php'; //fichier des fonctions de Bazar
45
 
45
 
46
if (defined('PAP_VERSION')) { //si on est dans Papyrus
46
if (defined('PAP_VERSION')) { //si on est dans Papyrus
47
	GEN_stockerStyleExterne( 'bazar_interne', 'client/bazar/bazar.interne.css');
47
	GEN_stockerStyleExterne( 'bazar_interne', 'client/bazar/bazar.interne.css');
48
}
48
}
49
 
49
 
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
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;
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))) {
62
	$_GET[BAZ_VARIABLE_VOIR]=$GLOBALS['_GEN_commun']['info_application']->vue;
62
	$_GET[BAZ_VARIABLE_VOIR]=$GLOBALS['_GEN_commun']['info_application']->vue;
63
}
63
}
64
 
64
 
65
// Si le parametre vue est vide on le positionne a 1
65
// Si le parametre vue est vide on le positionne a 1
66
if (!isset($_GET[BAZ_VARIABLE_VOIR])) {
66
if (!isset($_GET[BAZ_VARIABLE_VOIR])) {
67
	$_GET[BAZ_VARIABLE_VOIR] = BAZ_VOIR_CONSULTER;
67
	$_GET[BAZ_VARIABLE_VOIR] = BAZ_VOIR_CONSULTER;
68
}
68
}
69
 
69
 
70
 
70
 
71
//parametre voir_menu pour afficher le menu ou pas (par défaut, il l'affiche)
71
//parametre voir_menu pour afficher le menu ou pas (par défaut, il l'affiche)
72
if ((isset($GLOBALS['_GEN_commun']['info_application']->voir_menu))and($GLOBALS['_GEN_commun']['info_application']->voir_menu==0)) {
72
if ((isset($GLOBALS['_GEN_commun']['info_application']->voir_menu))and($GLOBALS['_GEN_commun']['info_application']->voir_menu==0)) {
73
	$GLOBALS['_BAZAR_']['affiche_menu']=0;
73
	$GLOBALS['_BAZAR_']['affiche_menu']=0;
74
}
74
}
75
else $GLOBALS['_BAZAR_']['affiche_menu']=1;
75
else $GLOBALS['_BAZAR_']['affiche_menu']=1;
76
 
76
 
77
//parametre categorie_nature pour préciser quels types de fiches sont montrees (par défaut, il affiche les id_menu=0)
77
//parametre categorie_nature pour préciser quels types de fiches sont montrees (par défaut, il affiche les id_menu=0)
78
if (isset($GLOBALS['_GEN_commun']['info_application']->categorie_nature)) {
78
if (isset($GLOBALS['_GEN_commun']['info_application']->categorie_nature)) {
79
	$GLOBALS['_BAZAR_']['categorie_nature']=$GLOBALS['_GEN_commun']['info_application']->categorie_nature;
79
	$GLOBALS['_BAZAR_']['categorie_nature']=$GLOBALS['_GEN_commun']['info_application']->categorie_nature;
80
}
80
}
81
elseif (isset($_REQUEST['categorie_nature'])) {
81
elseif (isset($_REQUEST['categorie_nature'])) {
82
	$GLOBALS['_BAZAR_']['categorie_nature']=$_REQUEST['categorie_nature'];
82
	$GLOBALS['_BAZAR_']['categorie_nature']=$_REQUEST['categorie_nature'];
83
}
83
}
84
else $GLOBALS['_BAZAR_']['categorie_nature']=0;
84
else $GLOBALS['_BAZAR_']['categorie_nature']=0;
85
 
85
 
86
//parametre id_nature pour afficher un certain type de fiche (par défaut, tous les types de fiches)
86
//parametre id_nature pour afficher un certain type de fiche (par défaut, tous les types de fiches)
87
if (isset($GLOBALS['_GEN_commun']['info_application']->id_nature)) {
87
if (isset($GLOBALS['_GEN_commun']['info_application']->id_nature)) {
88
	$GLOBALS['_BAZAR_']['id_typeannonce']=$GLOBALS['_GEN_commun']['info_application']->id_nature;
88
	$GLOBALS['_BAZAR_']['id_typeannonce']=$GLOBALS['_GEN_commun']['info_application']->id_nature;
89
}
89
}
90
elseif (!isset($GLOBALS['_BAZAR_']['typeannonce'])) $GLOBALS['_BAZAR_']['typeannonce']='toutes';
90
elseif (!isset($GLOBALS['_BAZAR_']['typeannonce'])) $GLOBALS['_BAZAR_']['typeannonce']='toutes';
91
 
91
 
92
//**********************************************************************************************************
92
//**********************************************************************************************************
93
//initialisation de la variable globale de bazar
93
//initialisation de la variable globale de bazar
94
//**********************************************************************************************************
94
//**********************************************************************************************************
95
$GLOBALS['id_user']=$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID);
95
$GLOBALS['id_user']=$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID);
96
 
96
 
97
//Recuperer les eventuelles variables passees en GET ou en POST
97
//Recuperer les eventuelles variables passees en GET ou en POST
98
if (isset($_REQUEST['id_fiche'])) {
98
if (isset($_REQUEST['id_fiche'])) {
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->getInfoDebug();	
104
		echo $resultat->getMessage().'<br />'.$resultat->getInfoDebug();	
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
}
113
 
113
 
114
if ((isset($GLOBALS['_BAZAR_']['id_typeannonce']))and($GLOBALS['_BAZAR_']['id_typeannonce']!='toutes')) {
114
if ((isset($GLOBALS['_BAZAR_']['id_typeannonce']))and($GLOBALS['_BAZAR_']['id_typeannonce']!='toutes')) {
115
	$requete = 'SELECT bn_label_nature, bn_condition, bn_template, bn_commentaire, bn_appropriation, bn_image_titre, bn_image_logo FROM bazar_nature WHERE bn_id_nature = '.$GLOBALS['_BAZAR_']['id_typeannonce'];
115
	$requete = 'SELECT bn_label_nature, bn_condition, bn_template, bn_commentaire, bn_appropriation, bn_image_titre, bn_image_logo';
-
 
116
	$requete .= ' FROM bazar_nature WHERE bn_id_nature = '.$GLOBALS['_BAZAR_']['id_typeannonce'];
-
 
117
	if (isset($GLOBALS['_BAZAR_']['langue'])) {
-
 
118
		$requete .= ' and bn_ce_i18n like "'.$GLOBALS['_BAZAR_']['langue'].'%"';
-
 
119
	}
116
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
120
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
117
	if (DB::isError($resultat)) {
121
	if (DB::isError($resultat)) {
118
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
122
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
119
	}
123
	}
120
	$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
124
	$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
121
	$GLOBALS['_BAZAR_']['typeannonce']=$ligne['bn_label_nature'];
125
	$GLOBALS['_BAZAR_']['typeannonce']=$ligne['bn_label_nature'];
122
	$GLOBALS['_BAZAR_']['condition']=$ligne['bn_condition'];
126
	$GLOBALS['_BAZAR_']['condition']=$ligne['bn_condition'];
123
    $GLOBALS['_BAZAR_']['template']=$ligne['bn_template'];
127
    $GLOBALS['_BAZAR_']['template']=$ligne['bn_template'];
124
	$GLOBALS['_BAZAR_']['commentaire']=$ligne['bn_commentaire'];
128
	$GLOBALS['_BAZAR_']['commentaire']=$ligne['bn_commentaire'];
125
	$GLOBALS['_BAZAR_']['appropriation']=$ligne['bn_appropriation'];
129
	$GLOBALS['_BAZAR_']['appropriation']=$ligne['bn_appropriation'];
126
	$GLOBALS['_BAZAR_']['image_titre']=$ligne['bn_image_titre'];
130
	$GLOBALS['_BAZAR_']['image_titre']=$ligne['bn_image_titre'];
127
	$GLOBALS['_BAZAR_']['image_logo']=$ligne['bn_image_logo'];	
131
	$GLOBALS['_BAZAR_']['image_logo']=$ligne['bn_image_logo'];	
128
}
132
}
129
if (!isset($GLOBALS['_BAZAR_']['id_typeannonce'])) $GLOBALS['_BAZAR_']['id_typeannonce'] = 'toutes' ;
133
if (!isset($GLOBALS['_BAZAR_']['id_typeannonce'])) $GLOBALS['_BAZAR_']['id_typeannonce'] = 'toutes' ;
130
// +------------------------------------------------------------------------------------------------------+
134
// +------------------------------------------------------------------------------------------------------+
131
// |                                           LISTE de FONCTIONS                                         |
135
// |                                           LISTE de FONCTIONS                                         |
132
// +------------------------------------------------------------------------------------------------------+
136
// +------------------------------------------------------------------------------------------------------+
133
if ($GLOBALS['_BAZAR_']['affiche_menu']) {
137
if ($GLOBALS['_BAZAR_']['affiche_menu']) {
134
	//---------------le menu de l'appli-----------
138
	//---------------le menu de l'appli-----------
135
	function afficherContenuNavigation () {
139
	function afficherContenuNavigation () {
136
		$res ='<ul id="BAZ_menu">'."\n";
140
		$res ='<ul id="BAZ_menu">'."\n";
137
 
141
 
138
		// Gestion de la vue par défaut
142
		// Gestion de la vue par défaut
139
		if (!isset($_GET[BAZ_VARIABLE_VOIR])) {
143
		if (!isset($_GET[BAZ_VARIABLE_VOIR])) {
140
			$_GET[BAZ_VARIABLE_VOIR] = BAZ_VOIR_DEFAUT;
144
			$_GET[BAZ_VARIABLE_VOIR] = BAZ_VOIR_DEFAUT;
141
		}
145
		}
142
 
146
 
143
		//partie consultation d'annonces
147
		//partie consultation d'annonces
144
		if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_CONSULTER))) {
148
		if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_CONSULTER))) {
145
			$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_CONSULTER);
149
			$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_CONSULTER);
146
			$res .= '<li id="consulter"';
150
			$res .= '<li id="consulter"';
147
			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" ';
148
			$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";
149
			//$GLOBALS['_BAZAR_']['url']->removeQueryString(BAZ_VARIABLE_VOIR);
153
			//$GLOBALS['_BAZAR_']['url']->removeQueryString(BAZ_VARIABLE_VOIR);
150
		}
154
		}
151
		
155
		
152
		// Mes fiches
156
		// Mes fiches
153
		if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_MES_FICHES))) {
157
		if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_MES_FICHES))) {
154
			$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_MES_FICHES);
158
			$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_MES_FICHES);
155
			$res .= '<li id="consulter"';
159
			$res .= '<li id="consulter"';
156
			if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR] == BAZ_VOIR_MES_FICHES) $res .=' class="onglet_actif" ';
160
			if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR] == BAZ_VOIR_MES_FICHES) $res .=' class="onglet_actif" ';
157
			$res .= '><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_VOIR_VOS_ANNONCES.'</a>'."\n".'</li>'."\n";
161
			$res .= '><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_VOIR_VOS_ANNONCES.'</a>'."\n".'</li>'."\n";
158
			//$GLOBALS['_BAZAR_']['url']->removeQueryString(BAZ_VARIABLE_VOIR);
162
			//$GLOBALS['_BAZAR_']['url']->removeQueryString(BAZ_VARIABLE_VOIR);
159
		}
163
		}
160
		
164
		
161
		//partie abonnement aux annonces
165
		//partie abonnement aux annonces
162
		if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_S_ABONNER))) {
166
		if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_S_ABONNER))) {
163
			$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_S_ABONNER);
167
			$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_S_ABONNER);
164
			$res .= '<li id="inscrire"';
168
			$res .= '<li id="inscrire"';
165
			if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_S_ABONNER) $res .=' class="onglet_actif" ';
169
			if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_S_ABONNER) $res .=' class="onglet_actif" ';
166
			$res .= '><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_S_ABONNER.'</a></li>'."\n" ;
170
			$res .= '><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_S_ABONNER.'</a></li>'."\n" ;
167
			//$GLOBALS['_BAZAR_']['url']->removeQueryString(BAZ_VARIABLE_VOIR);
171
			//$GLOBALS['_BAZAR_']['url']->removeQueryString(BAZ_VARIABLE_VOIR);
168
		}
172
		}
169
		
173
		
170
		//partie saisie d'annonces
174
		//partie saisie d'annonces
171
		if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_SAISIR))) {
175
		if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_SAISIR))) {
172
			$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_SAISIR);
176
			$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_SAISIR);
173
			$res .= '<li id="deposer"';
177
			$res .= '<li id="deposer"';
174
			if (isset($_GET[BAZ_VARIABLE_VOIR]) && ($_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_SAISIR )) $res .=' class="onglet_actif" ';
178
			if (isset($_GET[BAZ_VARIABLE_VOIR]) && ($_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_SAISIR )) $res .=' class="onglet_actif" ';
175
			$res .='><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_SAISIR.'</a>'."\n".'</li>'."\n";
179
			$res .='><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_SAISIR.'</a>'."\n".'</li>'."\n";
176
			//$GLOBALS['_BAZAR_']['url']->removeQueryString(BAZ_VARIABLE_VOIR);
180
			//$GLOBALS['_BAZAR_']['url']->removeQueryString(BAZ_VARIABLE_VOIR);
177
		}
181
		}
178
		
182
		
179
		//choix des administrateurs	
183
		//choix des administrateurs	
180
		$utilisateur = new Administrateur_bazar($GLOBALS['AUTH']) ;
184
		$utilisateur = new Administrateur_bazar($GLOBALS['AUTH']) ;
181
		$est_admin=0;
185
		$est_admin=0;
182
		if ($GLOBALS['AUTH']->getAuth()) {
186
		if ($GLOBALS['AUTH']->getAuth()) {
183
			$requete='SELECT bn_id_nature FROM bazar_nature';
187
			$requete='SELECT bn_id_nature FROM bazar_nature';
184
			$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
188
			$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
185
			if (DB::isError($resultat)) {
189
			if (DB::isError($resultat)) {
186
				die ($resultat->getMessage().$resultat->getDebugInfo()) ;
190
				die ($resultat->getMessage().$resultat->getDebugInfo()) ;
187
			}
191
			}
188
			while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
192
			while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
189
				if ($utilisateur->isAdmin ($ligne['bn_id_nature'])) {
193
				if ($utilisateur->isAdmin ($ligne['bn_id_nature'])) {
190
					$est_admin=1;
194
					$est_admin=1;
191
			    }
195
			    }
192
			}
196
			}
193
			if ($est_admin || $utilisateur->isSuperAdmin()) {
197
			if ($est_admin || $utilisateur->isSuperAdmin()) {
194
				//partie administrer
198
				//partie administrer
195
				if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_ADMIN))) {
199
				if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_ADMIN))) {
196
					$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_ADMIN);
200
					$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_ADMIN);
197
					$res .= '<li id="administrer"';
201
					$res .= '<li id="administrer"';
198
					if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_ADMIN) $res .=' class="onglet_actif" ';
202
					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";
203
					$res .='><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_ADMINISTRER.'</a></li>'."\n";
200
					//$GLOBALS['_BAZAR_']['url']->removeQueryString(BAZ_VARIABLE_VOIR);
204
					//$GLOBALS['_BAZAR_']['url']->removeQueryString(BAZ_VARIABLE_VOIR);
201
				}
205
				}
202
				
206
				
203
				if ($utilisateur->isSuperAdmin()) {
207
				if ($utilisateur->isSuperAdmin()) {
204
					if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_GESTION_DROITS))) {
208
					if (strstr(BAZ_VOIR_AFFICHER, strval(BAZ_VOIR_GESTION_DROITS))) {
205
						$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_GESTION_DROITS);
209
						$GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, BAZ_VOIR_GESTION_DROITS);
206
						$res .= '<li id="gerer"';
210
						$res .= '<li id="gerer"';
207
						if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_GESTION_DROITS) $res .=' class="onglet_actif" ';
211
						if (isset($_GET[BAZ_VARIABLE_VOIR]) && $_GET[BAZ_VARIABLE_VOIR]==BAZ_VOIR_GESTION_DROITS) $res .=' class="onglet_actif" ';
208
						$res .='><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_GESTION_DES_DROITS.'</a></li>'."\n" ;
212
						$res .='><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_GESTION_DES_DROITS.'</a></li>'."\n" ;
209
						//$GLOBALS['_BAZAR_']['url']->removeQueryString(BAZ_VARIABLE_VOIR);
213
						//$GLOBALS['_BAZAR_']['url']->removeQueryString(BAZ_VARIABLE_VOIR);
210
					}
214
					}
211
				}
215
				}
212
			}
216
			}
213
		}	
217
		}	
214
		// Au final, on place dans l url, l action courante
218
		// Au final, on place dans l url, l action courante
215
		if (isset($_GET[BAZ_VARIABLE_VOIR])) $GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, $_GET[BAZ_VARIABLE_VOIR]);
219
		if (isset($_GET[BAZ_VARIABLE_VOIR])) $GLOBALS['_BAZAR_']['url']->addQueryString(BAZ_VARIABLE_VOIR, $_GET[BAZ_VARIABLE_VOIR]);
216
		$res.= '</ul>'."\n";
220
		$res.= '</ul>'."\n";
217
	    return $res ;
221
	    return $res ;
218
	}
222
	}
219
}
223
}
220
    
224
    
221
function afficherContenuCorps() {	
225
function afficherContenuCorps() {	
222
	$res = '';
226
	$res = '';
223
	$res.='<h1 id="titre_bazar">'.$GLOBALS['_GEN_commun']['info_menu']->gm_titre.'</h1>'."\n";
227
	$res.='<h1 id="titre_bazar">'.$GLOBALS['_GEN_commun']['info_menu']->gm_titre.'</h1>'."\n";
224
 
228
 
225
	// La resolution des actions ci-dessous AVANT l afichage des vues afin
229
	// La resolution des actions ci-dessous AVANT l afichage des vues afin
226
	// d afficher des vues correctes
230
	// d afficher des vues correctes
227
	
231
	
228
	if (isset($_GET['action'])) {
232
	if (isset($_GET['action'])) {
229
		if (($_GET['action']!=BAZ_ACTION_NOUVEAU_V)and($_GET['action']!=BAZ_ACTION_MODIFIER_V)) unset($_SESSION['formulaire_annonce_valide']);
233
		if (($_GET['action']!=BAZ_ACTION_NOUVEAU_V)and($_GET['action']!=BAZ_ACTION_MODIFIER_V)) unset($_SESSION['formulaire_annonce_valide']);
230
		switch ($_GET['action']) {
234
		switch ($_GET['action']) {
231
			case BAZ_ACTION_VOIR_VOS_ANNONCES : $res .= mes_fiches(); break;
235
			case BAZ_ACTION_VOIR_VOS_ANNONCES : $res .= mes_fiches(); break;
232
			//case BAZ_VOIR_TOUTES_ANNONCES : $res .= baz_liste($GLOBALS['_BAZAR_']['id_typeannonce']); break;
236
			//case BAZ_VOIR_TOUTES_ANNONCES : $res .= baz_liste($GLOBALS['_BAZAR_']['id_typeannonce']); break;
233
			//case BAZ_DEPOSER_ANNONCE : $res .= baz_formulaire(BAZ_DEPOSER_ANNONCE); break;
237
			//case BAZ_DEPOSER_ANNONCE : $res .= baz_formulaire(BAZ_DEPOSER_ANNONCE); break;
234
			case BAZ_ANNONCES_A_VALIDER : $res .= fiches_a_valider(); break;
238
			case BAZ_ANNONCES_A_VALIDER : $res .= fiches_a_valider(); break;
235
			case BAZ_ADMINISTRER_ANNONCES : $res .= baz_administrer_annonces(); break;
239
			case BAZ_ADMINISTRER_ANNONCES : $res .= baz_administrer_annonces(); break;
236
			//case BAZ_MODIFIER_FICHE : $res .= baz_formulaire(BAZ_ACTION_MODIFIER); break;
240
			//case BAZ_MODIFIER_FICHE : $res .= baz_formulaire(BAZ_ACTION_MODIFIER); break;
237
			case BAZ_SUPPRIMER_FICHE : $res .= baz_suppression().baz_liste('',$GLOBALS['id_user'],''); break;
241
			case BAZ_SUPPRIMER_FICHE : $res .= baz_suppression().baz_liste('',$GLOBALS['id_user'],''); break;
238
			case BAZ_VOIR_FICHE : $res .= baz_voir_fiche(1); break;
242
			case BAZ_VOIR_FICHE : $res .= baz_voir_fiche(1); break;
239
			//case BAZ_ACTION_NOUVEAU : $res .= baz_formulaire(BAZ_ACTION_NOUVEAU); break;
243
			//case BAZ_ACTION_NOUVEAU : $res .= baz_formulaire(BAZ_ACTION_NOUVEAU); break;
240
			case BAZ_ACTION_NOUVEAU_V : $res .= baz_formulaire(BAZ_ACTION_NOUVEAU_V).mes_fiches(); break;
244
			case BAZ_ACTION_NOUVEAU_V : $res .= baz_formulaire(BAZ_ACTION_NOUVEAU_V).mes_fiches(); break;
241
			//case BAZ_ACTION_MODIFIER : $res .= baz_formulaire(BAZ_ACTION_MODIFIER); break;
245
			//case BAZ_ACTION_MODIFIER : $res .= baz_formulaire(BAZ_ACTION_MODIFIER); break;
242
			case BAZ_ACTION_MODIFIER_V : $res .= baz_formulaire(BAZ_ACTION_MODIFIER_V).baz_voir_fiche(1); break;
246
			case BAZ_ACTION_MODIFIER_V : $res .= baz_formulaire(BAZ_ACTION_MODIFIER_V).baz_voir_fiche(1); break;
243
			case BAZ_ACTION_SUPPRESSION : $res .= baz_suppression(); unset ($_GET['action']); break;
247
			case BAZ_ACTION_SUPPRESSION : $res .= baz_suppression(); unset ($_GET['action']); break;
244
			case BAZ_ACTION_PUBLIER : publier_fiche(1) ; break;
248
			case BAZ_ACTION_PUBLIER : publier_fiche(1) ; break;
245
			case BAZ_ACTION_PAS_PUBLIER : publier_fiche(0) ;$res .= fiches_a_valider(); break;
249
			case BAZ_ACTION_PAS_PUBLIER : publier_fiche(0) ;$res .= fiches_a_valider(); break;
246
			//case BAZ_GERER_DROITS : $res .= baz_gestion_droits(); break;
250
			//case BAZ_GERER_DROITS : $res .= baz_gestion_droits(); break;
247
			case BAZ_S_INSCRIRE : $res .= baz_s_inscrire(); break;
251
			case BAZ_S_INSCRIRE : $res .= baz_s_inscrire(); break;
248
			case BAZ_VOIR_FLUX_RSS : header('Content-type: text/xml; charset=UTF-8');include("bazarRSS.php");exit(0);break;
252
			case BAZ_VOIR_FLUX_RSS : header('Content-type: text/xml; charset=UTF-8');include("bazarRSS.php");exit(0);break;
249
			//default : $res .= baz_liste($GLOBALS['_BAZAR_']['id_typeannonce']) ;
253
			//default : $res .= baz_liste($GLOBALS['_BAZAR_']['id_typeannonce']) ;
250
		}
254
		}
251
		
255
		
252
	}
256
	}
253
	if (isset ($_GET[BAZ_VARIABLE_VOIR])) {
257
	if (isset ($_GET[BAZ_VARIABLE_VOIR])) {
254
			switch ($_GET[BAZ_VARIABLE_VOIR]) {
258
			switch ($_GET[BAZ_VARIABLE_VOIR]) {
255
				case BAZ_VOIR_CONSULTER: 
259
				case BAZ_VOIR_CONSULTER: 
256
				if (isset ($_GET['action']) && $_GET['action'] != BAZ_VOIR_TOUTES_ANNONCES) $res .= baz_formulaire($_GET['action']) ; else $res .= baz_liste($GLOBALS['_BAZAR_']['id_typeannonce']);
260
				if (isset ($_GET['action']) && $_GET['action'] != BAZ_VOIR_TOUTES_ANNONCES) $res .= baz_formulaire($_GET['action']) ; else $res .= baz_liste($GLOBALS['_BAZAR_']['id_typeannonce']);
257
				break;
261
				break;
258
				case BAZ_VOIR_MES_FICHES : 
262
				case BAZ_VOIR_MES_FICHES : 
259
				if (isset ($_GET['action'])) $res .= baz_formulaire($_GET['action']) ; else $res .= mes_fiches();
263
				if (isset ($_GET['action'])) $res .= baz_formulaire($_GET['action']) ; else $res .= mes_fiches();
260
				break;
264
				break;
261
				case BAZ_VOIR_S_ABONNER : $res .= baz_s_inscrire();
265
				case BAZ_VOIR_S_ABONNER : $res .= baz_s_inscrire();
262
				break;
266
				break;
263
				case BAZ_VOIR_SAISIR : 
267
				case BAZ_VOIR_SAISIR : 
264
				if (isset ($_GET['action'])) $res .= baz_formulaire($_GET['action']) ; else $res .= baz_formulaire(BAZ_DEPOSER_ANNONCE);
268
				if (isset ($_GET['action'])) $res .= baz_formulaire($_GET['action']) ; else $res .= baz_formulaire(BAZ_DEPOSER_ANNONCE);
265
				break;
269
				break;
266
				case BAZ_VOIR_ADMIN: 
270
				case BAZ_VOIR_ADMIN: 
267
				if (isset($_GET['action'])) $res .= baz_formulaire($_GET['action']) ; else $res .= fiches_a_valider();
271
				if (isset($_GET['action'])) $res .= baz_formulaire($_GET['action']) ; else $res .= fiches_a_valider();
268
				break;
272
				break;
269
				case BAZ_VOIR_GESTION_DROITS: $res .= baz_gestion_droits();
273
				case BAZ_VOIR_GESTION_DROITS: $res .= baz_gestion_droits();
270
				break;
274
				break;
271
				default :
275
				default :
272
				$res .= baz_liste($GLOBALS['_BAZAR_']['id_typeannonce']);
276
				$res .= baz_liste($GLOBALS['_BAZAR_']['id_typeannonce']);
273
			}
277
			}
274
	}
278
	}
275
	return $res ;
279
	return $res ;
276
}
280
}
277
 
281
 
278
 
282
 
279
/* +--Fin du code ----------------------------------------------------------------------------------------+
283
/* +--Fin du code ----------------------------------------------------------------------------------------+
280
*
284
*
281
* $Log: not supported by cvs2svn $
285
* $Log: not supported by cvs2svn $
-
 
286
* Revision 1.47  2007-10-01 12:13:53  alexandre_tb
-
 
287
* bug, affichage vue / action pour la vue "administrer"
-
 
288
*
282
* Revision 1.46  2007-09-28 14:29:13  jp_milcent
289
* Revision 1.46  2007-09-28 14:29:13  jp_milcent
283
* Ajout de la gestion de l'affichage des vues ou pas.
290
* Ajout de la gestion de l'affichage des vues ou pas.
284
*
291
*
285
* Revision 1.45  2007-09-18 14:24:01  alexandre_tb
292
* Revision 1.45  2007-09-18 14:24:01  alexandre_tb
286
* onglet administrer
293
* onglet administrer
287
*
294
*
288
* Revision 1.44  2007-09-06 15:39:28  alexandre_tb
295
* Revision 1.44  2007-09-06 15:39:28  alexandre_tb
289
* fixation d une valeur par defaut a la variable vue pour
296
* fixation d une valeur par defaut a la variable vue pour
290
* eviter un ecran vide si pas de parametres dans le menu
297
* eviter un ecran vide si pas de parametres dans le menu
291
*
298
*
292
* Revision 1.43  2007-08-27 12:26:04  alexandre_tb
299
* Revision 1.43  2007-08-27 12:26:04  alexandre_tb
293
* Mise en place de l action BAZ_VOIR_ADMIN
300
* Mise en place de l action BAZ_VOIR_ADMIN
294
*
301
*
295
* Revision 1.42  2007-07-05 08:29:24  alexandre_tb
302
* Revision 1.42  2007-07-05 08:29:24  alexandre_tb
296
* modification du charset iso-8859-1 vers utf8 lors l'envoie des entetes xml.
303
* modification du charset iso-8859-1 vers utf8 lors l'envoie des entetes xml.
297
*
304
*
298
* Revision 1.41  2007-07-04 10:05:12  alexandre_tb
305
* Revision 1.41  2007-07-04 10:05:12  alexandre_tb
299
* ajout d une variable $_GET['vue'] en complement de la variable action.
306
* ajout d une variable $_GET['vue'] en complement de la variable action.
300
* Elle correspond aux 6 vues du bazar (consulter, mes fiches, s'abonner, saisir, administrer, gestion des droits)
307
* Elle correspond aux 6 vues du bazar (consulter, mes fiches, s'abonner, saisir, administrer, gestion des droits)
301
*
308
*
302
* Revision 1.40  2007/04/11 08:30:12  neiluj
309
* Revision 1.40  2007/04/11 08:30:12  neiluj
303
* remise en état du CVS...
310
* remise en état du CVS...
304
*
311
*
305
* Revision 1.35.2.2  2007/03/07 16:53:17  jp_milcent
312
* Revision 1.35.2.2  2007/03/07 16:53:17  jp_milcent
306
* Suppression du query string "action" et non pas "nature"
313
* Suppression du query string "action" et non pas "nature"
307
*
314
*
308
* Revision 1.35.2.1  2007/02/15 13:42:16  jp_milcent
315
* Revision 1.35.2.1  2007/02/15 13:42:16  jp_milcent
309
* Utilisation de IN à la place du = dans les requêtes traitant les catégories de fiches.
316
* Utilisation de IN à la place du = dans les requêtes traitant les catégories de fiches.
310
* Permet d'utiliser la syntaxe 1,2,3 dans la configuration de categorie_nature.
317
* Permet d'utiliser la syntaxe 1,2,3 dans la configuration de categorie_nature.
311
*
318
*
312
* Revision 1.35  2006/10/05 08:53:50  florian
319
* Revision 1.35  2006/10/05 08:53:50  florian
313
* amelioration moteur de recherche, correction de bugs
320
* amelioration moteur de recherche, correction de bugs
314
*
321
*
315
* Revision 1.34  2006/09/04 15:25:12  alexandre_tb
322
* Revision 1.34  2006/09/04 15:25:12  alexandre_tb
316
* ajout d'un id dans la balise HTML du titre
323
* ajout d'un id dans la balise HTML du titre
317
*
324
*
318
* Revision 1.33  2006/06/21 15:41:42  alexandre_tb
325
* Revision 1.33  2006/06/21 15:41:42  alexandre_tb
319
* rétablissement du menu mes fiches
326
* rétablissement du menu mes fiches
320
*
327
*
321
* Revision 1.32  2006/06/21 15:40:15  alexandre_tb
328
* Revision 1.32  2006/06/21 15:40:15  alexandre_tb
322
* rétablissement du menu mes fiches
329
* rétablissement du menu mes fiches
323
*
330
*
324
* Revision 1.31  2006/05/19 13:54:32  florian
331
* Revision 1.31  2006/05/19 13:54:32  florian
325
* stabilisation du moteur de recherche, corrections bugs, lien recherche avancee
332
* stabilisation du moteur de recherche, corrections bugs, lien recherche avancee
326
*
333
*
327
* Revision 1.30  2006/04/28 12:46:14  florian
334
* Revision 1.30  2006/04/28 12:46:14  florian
328
* integration des liens vers annuaire
335
* integration des liens vers annuaire
329
*
336
*
330
* Revision 1.29  2006/04/24 10:16:22  alexandre_tb
337
* Revision 1.29  2006/04/24 10:16:22  alexandre_tb
331
* ajout de la globale filtre.
338
* ajout de la globale filtre.
332
* elle remplace (à terme) catégorie nature
339
* elle remplace (à terme) catégorie nature
333
*
340
*
334
* Revision 1.28  2006/03/29 13:05:41  alexandre_tb
341
* Revision 1.28  2006/03/29 13:05:41  alexandre_tb
335
* utilisation de la classe Administrateur_bazar
342
* utilisation de la classe Administrateur_bazar
336
*
343
*
337
* Revision 1.27  2006/02/07 11:08:36  alexandre_tb
344
* Revision 1.27  2006/02/07 11:08:36  alexandre_tb
338
* utilisation de la classe Utilisateur_bazar pour la vérification des droits
345
* utilisation de la classe Utilisateur_bazar pour la vérification des droits
339
*
346
*
340
* Revision 1.26  2006/02/06 09:33:53  alexandre_tb
347
* Revision 1.26  2006/02/06 09:33:53  alexandre_tb
341
* modification de l'affichage lors de la saisie de fiche
348
* modification de l'affichage lors de la saisie de fiche
342
*
349
*
343
* Revision 1.25  2006/01/30 17:25:38  alexandre_tb
350
* Revision 1.25  2006/01/30 17:25:38  alexandre_tb
344
* correction de bugs
351
* correction de bugs
345
*
352
*
346
* Revision 1.24  2006/01/26 11:06:43  alexandre_tb
353
* Revision 1.24  2006/01/26 11:06:43  alexandre_tb
347
* ajout d'une requete pour recupere l'id_nature si un id_fiche est passé dans l'url
354
* ajout d'une requete pour recupere l'id_nature si un id_fiche est passé dans l'url
348
*
355
*
349
* Revision 1.23  2006/01/17 10:07:36  alexandre_tb
356
* Revision 1.23  2006/01/17 10:07:36  alexandre_tb
350
* en cours
357
* en cours
351
*
358
*
352
* Revision 1.22  2006/01/16 15:11:28  alexandre_tb
359
* Revision 1.22  2006/01/16 15:11:28  alexandre_tb
353
* simplification code
360
* simplification code
354
*
361
*
355
* Revision 1.21  2006/01/13 14:12:52  florian
362
* Revision 1.21  2006/01/13 14:12:52  florian
356
* utilisation des temlates dans la table bazar_nature
363
* utilisation des temlates dans la table bazar_nature
357
*
364
*
358
* Revision 1.20  2006/01/05 16:28:25  alexandre_tb
365
* Revision 1.20  2006/01/05 16:28:25  alexandre_tb
359
* prise en chage des checkbox, reste la mise à jour à gérer
366
* prise en chage des checkbox, reste la mise à jour à gérer
360
*
367
*
361
* Revision 1.19  2006/01/03 10:19:31  florian
368
* Revision 1.19  2006/01/03 10:19:31  florian
362
* 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...
369
* 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...
363
*
370
*
364
* Revision 1.18  2005/12/02 10:57:03  florian
371
* Revision 1.18  2005/12/02 10:57:03  florian
365
* MAJ pour paramétrage dans gestion de menus papyrus
372
* MAJ pour paramétrage dans gestion de menus papyrus
366
*
373
*
367
* Revision 1.17  2005/12/01 16:05:41  florian
374
* Revision 1.17  2005/12/01 16:05:41  florian
368
* changement des chemins pour appli Pear
375
* changement des chemins pour appli Pear
369
*
376
*
370
* Revision 1.16  2005/12/01 15:31:30  florian
377
* Revision 1.16  2005/12/01 15:31:30  florian
371
* correction bug modifs et saisies
378
* correction bug modifs et saisies
372
*
379
*
373
* Revision 1.15  2005/11/30 13:58:45  florian
380
* Revision 1.15  2005/11/30 13:58:45  florian
374
* ajouts graphisme (logos, boutons), changement structure SQL bazar_fiche
381
* ajouts graphisme (logos, boutons), changement structure SQL bazar_fiche
375
*
382
*
376
* Revision 1.14  2005/11/24 16:17:13  florian
383
* Revision 1.14  2005/11/24 16:17:13  florian
377
* corrections bugs, ajout des cases à cocher
384
* corrections bugs, ajout des cases à cocher
378
*
385
*
379
* Revision 1.13  2005/11/14 16:04:54  florian
386
* Revision 1.13  2005/11/14 16:04:54  florian
380
* maj bug affichage flux
387
* maj bug affichage flux
381
*
388
*
382
* Revision 1.12  2005/11/07 17:05:46  florian
389
* Revision 1.12  2005/11/07 17:05:46  florian
383
* amélioration validation conditions de saisie, ajout des règles spécifiques de saisie des formulaires
390
* amélioration validation conditions de saisie, ajout des règles spécifiques de saisie des formulaires
384
*
391
*
385
* Revision 1.11  2005/10/21 16:15:04  florian
392
* Revision 1.11  2005/10/21 16:15:04  florian
386
* mise a jour appropriation
393
* mise a jour appropriation
387
*
394
*
388
* Revision 1.10  2005/10/12 17:20:33  ddelon
395
* Revision 1.10  2005/10/12 17:20:33  ddelon
389
* Reorganisation calendrier + applette
396
* Reorganisation calendrier + applette
390
*
397
*
391
* Revision 1.9  2005/10/12 13:35:07  florian
398
* Revision 1.9  2005/10/12 13:35:07  florian
392
* amélioration de l'interface de bazar, de manière a simplifier les consultations, et à harmoniser par rapport aux Ressources
399
* amélioration de l'interface de bazar, de manière a simplifier les consultations, et à harmoniser par rapport aux Ressources
393
*
400
*
394
* Revision 1.8  2005/09/30 13:00:05  ddelon
401
* Revision 1.8  2005/09/30 13:00:05  ddelon
395
* Fiche bazar generique
402
* Fiche bazar generique
396
*
403
*
397
* Revision 1.7  2005/09/30 12:34:44  ddelon
404
* Revision 1.7  2005/09/30 12:34:44  ddelon
398
* petite modification pour integration bazar dans papyrus
405
* petite modification pour integration bazar dans papyrus
399
*
406
*
400
* Revision 1.6  2005/09/30 12:22:54  florian
407
* Revision 1.6  2005/09/30 12:22:54  florian
401
* Ajouts commentaires pour fiche, modifications graphiques, maj SQL
408
* Ajouts commentaires pour fiche, modifications graphiques, maj SQL
402
*
409
*
403
* Revision 1.4  2005/07/21 19:03:12  florian
410
* Revision 1.4  2005/07/21 19:03:12  florian
404
* nouveautés bazar: templates fiches, correction de bugs, ...
411
* nouveautés bazar: templates fiches, correction de bugs, ...
405
*
412
*
406
* Revision 1.2  2005/02/22 15:33:32  florian
413
* Revision 1.2  2005/02/22 15:33:32  florian
407
* integration dans Papyrus
414
* integration dans Papyrus
408
*
415
*
409
* Revision 1.1.1.1  2005/02/17 18:05:11  florian
416
* Revision 1.1.1.1  2005/02/17 18:05:11  florian
410
* Import initial de Bazar
417
* Import initial de Bazar
411
*
418
*
412
* Revision 1.1.1.1  2005/02/17 11:09:50  florian
419
* Revision 1.1.1.1  2005/02/17 11:09:50  florian
413
* Import initial
420
* Import initial
414
*
421
*
415
* Revision 1.1.1.1  2005/02/16 18:06:35  florian
422
* Revision 1.1.1.1  2005/02/16 18:06:35  florian
416
* import de la nouvelle version
423
* import de la nouvelle version
417
*
424
*
418
* Revision 1.3  2004/07/05 15:10:14  florian
425
* Revision 1.3  2004/07/05 15:10:14  florian
419
* changement interface de saisie
426
* changement interface de saisie
420
*
427
*
421
* Revision 1.2  2004/07/01 10:13:41  florian
428
* Revision 1.2  2004/07/01 10:13:41  florian
422
* modif Florian
429
* modif Florian
423
*
430
*
424
* Revision 1.1  2004/06/23 09:58:32  alex
431
* Revision 1.1  2004/06/23 09:58:32  alex
425
* version initiale
432
* version initiale
426
*
433
*
427
* Revision 1.1  2004/06/18 09:00:07  alex
434
* Revision 1.1  2004/06/18 09:00:07  alex
428
* version initiale
435
* version initiale
429
*
436
*
430
*
437
*
431
* +-- Fin du code ----------------------------------------------------------------------------------------+
438
* +-- Fin du code ----------------------------------------------------------------------------------------+
432
*/
439
*/
433
?>
440
?>