Subversion Repositories Applications.bazar

Rev

Rev 30 | Rev 45 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
39 florian 1
 
5 florian 2
<?php
3
/*vim: set expandtab tabstop=4 shiftwidth=4: */
4
// +------------------------------------------------------------------------------------------------------+
5
// | PHP version 4.1                                                                                      |
6
// +------------------------------------------------------------------------------------------------------+
7
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
8
// +------------------------------------------------------------------------------------------------------+
9
// | This library is free software; you can redistribute it and/or                                        |
10
// | modify it under the terms of the GNU Lesser General Public                                           |
11
// | License as published by the Free Software Foundation; either                                         |
12
// | version 2.1 of the License, or (at your option) any later version.                                   |
13
// |                                                                                                      |
14
// | This library is distributed in the hope that it will be useful,                                      |
15
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
16
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
17
// | Lesser General Public License for more details.                                                      |
18
// |                                                                                                      |
19
// | You should have received a copy of the GNU Lesser General Public                                     |
20
// | License along with this library; if not, write to the Free Software                                  |
21
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
22
// +------------------------------------------------------------------------------------------------------+
39 florian 23
// CVS : $Id: bazar.php,v 1.11 2005-10-21 16:15:04 florian Exp $
5 florian 24
/**
25
*
26
*@package bazar
27
//Auteur original :
28
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
29
*@author        Florian Schmitt <florian@ecole-et-nature.org>
30
//Autres auteurs :
31
*@copyright     Tela-Botanica 2000-2004
39 florian 32
*@version       $Revision: 1.11 $ $Date: 2005-10-21 16:15:04 $
5 florian 33
// +------------------------------------------------------------------------------------------------------+
34
*/
35
 
36
// +------------------------------------------------------------------------------------------------------+
37
// |                             LES CONSTANTES DES ACTIONS DE BAZAR                                      |
38
// +------------------------------------------------------------------------------------------------------+
39
 
40
define ('BAZ_VOIR_VOS_ANNONCES', 0);
41
define ('BAZ_VOIR_TOUTES_ANNONCES', 1) ;
42
define ('BAZ_RECHERCHER_ANNONCE', 2) ;
43
define ('BAZ_DEPOSER_ANNONCE', 3) ;
44
define ('BAZ_ANNONCES_A_VALIDER', 4) ;
45
define ('BAZ_GERER_DROITS', 5) ;
46
define ('BAZ_ADMINISTRER_ANNONCES', 6) ;
47
define ('BAZ_MODIFIER_FICHE', 7) ;
30 ddelon 48
if (!defined('BAZ_VOIR_FICHE')) define ('BAZ_VOIR_FICHE', 8) ;
5 florian 49
define ('BAZ_SUPPRIMER_FICHE', 9) ;
50
define ('BAZ_ACTION_NOUVEAU', 10) ;
51
define ('BAZ_ACTION_NOUVEAU_V', 11) ;
52
define ('BAZ_ACTION_MODIFIER', 12) ;
53
define ('BAZ_ACTION_MODIFIER_V', 13) ;
54
define ('BAZ_ACTION_SUPPRESSION', 14) ;
55
define ('BAZ_ACTION_PUBLIER', 15) ;
56
define ('BAZ_ACTION_PAS_PUBLIER', 16) ;
57
define ('BAZ_S_INSCRIRE', 17);
58
define ('BAZ_VOIR_FLUX_RSS', 18);
59
 
60
 
61
// +------------------------------------------------------------------------------------------------------+
62
// |                                            ENTETE du PROGRAMME                                       |
63
// +------------------------------------------------------------------------------------------------------+
64
 
65
error_reporting(E_ALL);
66
include_once 'DB.php' ;
67
include_once 'Auth.php' ;
68
include_once 'configuration/baz_config.inc.php'; //fichier de configuration de Bazar
69
include_once 'bibliotheque/bazar.fonct.php'; //fichier des fonctions de Bazar
70
 
71
if (defined('PAP_VERSION')) { //si on est dans Papyrus
72
	GEN_stockerStyleExterne( 'bazar_interne', 'client/bazar/bazar.interne.css');
73
}
74
 
75
// +------------------------------------------------------------------------------------------------------+
76
// |                                           LISTE de FONCTIONS                                         |
77
// +------------------------------------------------------------------------------------------------------+
78
 
79
function afficherContenuCorps() {
80
 
81
	$GLOBALS['id_user']=$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID);
82
 
83
	$res = '';
84
	//---------------l'entête de l'appli-----------
85
	$res.='<div id="BAZ_hautdepage">'."\n";
7 florian 86
	$res.='<h1>'.$GLOBALS['_GEN_commun']['info_menu']->gm_titre.'</h1>'."\n";
5 florian 87
	$res.='</div>'."\n";
88
 
89
	//---------------le menu de l'appli-----------
90
	$res.='<div id="BAZ_menu">'."\n";
91
	$res .='<ul>'."\n";
92
	$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_VOIR_TOUTES_ANNONCES);
93
	$GLOBALS['_BAZAR_']['url']->addQueryString('nature', 'toutes');
94
	//partie consultation d'annonces
22 florian 95
	$res .= '<li><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_CONSULTER.'</a>'."\n".'</li>'."\n";
5 florian 96
	$GLOBALS['_BAZAR_']['url']->removeQueryString('nature');
97
 
22 florian 98
	/*$requete = 'SELECT bn_id_nature, bn_label_nature FROM bazar_nature WHERE bn_ce_id_menu='.$GLOBALS['_GEN_commun']['info_menu']->gm_id_menu.' or  bn_ce_id_menu=0';
5 florian 99
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
100
	if (DB::isError($resultat)) {
101
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
102
	}
103
	while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
104
		$GLOBALS['_BAZAR_']['url']->addQueryString('nature', $ligne['bn_label_nature']);
105
		$res .='<li><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.$ligne['bn_label_nature'].'</a></li>'."\n";
106
		$GLOBALS['_BAZAR_']['url']->removeQueryString('nature');
107
	}
108
 
109
	$GLOBALS['_BAZAR_']['url']->addQueryString('nature', 'toutes');
110
	$res .='<li><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_TOUTES_LES_ANNONCES.'</a></li></ul></li>'."\n";
111
	$GLOBALS['_BAZAR_']['url']->removeQueryString('nature');
112
	$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
113
 
114
	//partie recherche d'annonces
115
	$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_RECHERCHER_ANNONCE);
22 florian 116
	$res .='<li><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_RECHERCHER.'</a></li>'."\n";
5 florian 117
	$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
118
 
119
	//pour les identifiés seulement
22 florian 120
	if ($GLOBALS['AUTH']->getAuth()) {*/
5 florian 121
		//partie abonnement aux annonces
122
		$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_S_INSCRIRE);
22 florian 123
		$res .= '<li><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_S_ABONNER.'</a></li>'."\n" ;
5 florian 124
		$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
125
 
126
		//partie saisie d'annonces
127
		$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_DEPOSER_ANNONCE);
128
		$res .= '<li><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_SAISIR.'</a>'."\n".'<ul>'."\n";
129
		$res .= '<li><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_DEPOSE_UNE_NOUVELLE_ANNONCE.'</a></li>'."\n" ;
130
		$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
131
 
132
		//annonces propres
133
		$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_VOIR_VOS_ANNONCES);
134
		$res .='<li><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_VOS_ANNONCES.'</a></li>'."\n";
135
		$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
136
		$res .='</ul></li>'."\n";
137
 
138
 
139
		//choix des administrateurs
140
		$est_admin=0;
22 florian 141
		if ($GLOBALS['AUTH']->getAuth()) {
142
			$requete='SELECT bn_id_nature FROM bazar_nature';
143
			$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
144
			if (DB::isError($resultat)) {
145
				die ($resultat->getMessage().$resultat->getDebugInfo()) ;
5 florian 146
			}
22 florian 147
			while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
148
				if ((niveau_droit($ligne['bn_id_nature'],$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID)))=='administrateur') {
149
					$est_admin=1;
150
			    }
151
			}
152
			if (($est_admin)or(niveau_droit($id_nature_offre='0',$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID))=='superadministrateur')) {
5 florian 153
			//partie administrer
154
			$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_ANNONCES_A_VALIDER);
155
			$res .= '<li><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_ADMINISTRER.'</a><ul>'."\n";
156
			$res .= '<li><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_ANNONCES_A_ADMINISTRER.'</a></li>'."\n" ;
157
			$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
158
 
159
			if (niveau_droit($id_nature_offre='0',$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID))=='superadministrateur') {
160
				$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_GERER_DROITS);
161
				$res .= '<li><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_GESTION_DES_DROITS.'</a></li>'."\n" ;
162
				$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
163
 
164
				$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_ADMINISTRER_ANNONCES);
165
				$res .= '<li><a href="'.$GLOBALS['_BAZAR_']['url']->getURL().'">'.BAZ_ADMIN_ANNONCES.'</a></li>'."\n" ;
166
				$GLOBALS['_BAZAR_']['url']->removeQueryString('action');
167
			}
168
			$res .= '</ul></li>'."\n";
22 florian 169
			}
170
	}
171
	$res.= '</ul>'."\n";
5 florian 172
	$res.='</div>'."\n";
173
 
174
	//le corps de l'appli
175
	$res.='<div id="BAZ_corps">'."\n";
176
	if (isset($_GET['action'])) {
177
		switch ($_GET['action']) {
178
			case BAZ_VOIR_VOS_ANNONCES : $res .= mes_fiches(); break;
22 florian 179
			case BAZ_VOIR_TOUTES_ANNONCES : $res .= baz_liste($_REQUEST['nature'],'',''); break;
5 florian 180
			case BAZ_RECHERCHER_ANNONCE : $res .= baz_rechercher(); break;
181
			case BAZ_DEPOSER_ANNONCE : $res .= baz_formulaire(BAZ_DEPOSER_ANNONCE); break;
182
			case BAZ_ANNONCES_A_VALIDER : $res .= fiches_a_valider(); break;
183
			case BAZ_ADMINISTRER_ANNONCES : $res .= baz_administrer_annonces(); break;
184
			case BAZ_MODIFIER_FICHE : $res .= baz_formulaire(BAZ_ACTION_MODIFIER); break;
185
			case BAZ_SUPPRIMER_FICHE : $res .= baz_suppression().baz_liste('',$GLOBALS['id_user'],''); break;
186
			case BAZ_VOIR_FICHE : $res .= baz_voir_fiche(1); break;
187
			case BAZ_ACTION_NOUVEAU : $res .= baz_formulaire(BAZ_ACTION_NOUVEAU); break;
188
			case BAZ_ACTION_NOUVEAU_V : $res .= baz_formulaire().mes_fiches(); break;
189
			case BAZ_ACTION_MODIFIER : $res .= baz_formulaire(BAZ_ACTION_MODIFIER); break;
190
			case BAZ_ACTION_MODIFIER_V : $res .= baz_formulaire(BAZ_ACTION_MODIFIER_V).mes_fiches(); break;
191
			case BAZ_ACTION_SUPPRESSION : $res .= baz_suppression().mes_fiches(); break;
192
			case BAZ_ACTION_PUBLIER : publier_fiche(1) ;$res .= fiches_a_valider(); break;
193
			case BAZ_ACTION_PAS_PUBLIER : publier_fiche(0) ;$res .= fiches_a_valider(); break;
194
			case BAZ_GERER_DROITS : $res .= baz_formulaire(BAZ_GERER_DROITS); break;
195
			case BAZ_S_INSCRIRE : $res .= baz_s_inscrire(); break;
196
			case BAZ_VOIR_FLUX_RSS : header('Content-type: text/xml; charset=ISO-8859-1');include("bazarRSS.php");exit(0);break;
197
			default : $res .= accueil() ;
198
		}
199
	}
200
	else {
201
		$res .= baz_liste('toutes','','');
202
	}
203
	$res.='</div>'."\n";
204
	return $res ;
205
}
206
 
207
 
208
/* +--Fin du code ----------------------------------------------------------------------------------------+
209
*
10 ddelon 210
* $Log: not supported by cvs2svn $
39 florian 211
* Revision 1.10  2005/10/12 17:20:33  ddelon
212
* Reorganisation calendrier + applette
213
*
30 ddelon 214
* Revision 1.9  2005/10/12 13:35:07  florian
215
* amélioration de l'interface de bazar, de manière a simplifier les consultations, et à harmoniser par rapport aux Ressources
216
*
22 florian 217
* Revision 1.8  2005/09/30 13:00:05  ddelon
218
* Fiche bazar generique
219
*
11 ddelon 220
* Revision 1.7  2005/09/30 12:34:44  ddelon
221
* petite modification pour integration bazar dans papyrus
222
*
10 ddelon 223
* Revision 1.6  2005/09/30 12:22:54  florian
224
* Ajouts commentaires pour fiche, modifications graphiques, maj SQL
225
*
7 florian 226
* Revision 1.4  2005/07/21 19:03:12  florian
227
* nouveautés bazar: templates fiches, correction de bugs, ...
228
*
5 florian 229
* Revision 1.2  2005/02/22 15:33:32  florian
230
* integration dans Papyrus
231
*
232
* Revision 1.1.1.1  2005/02/17 18:05:11  florian
233
* Import initial de Bazar
234
*
235
* Revision 1.1.1.1  2005/02/17 11:09:50  florian
236
* Import initial
237
*
238
* Revision 1.1.1.1  2005/02/16 18:06:35  florian
239
* import de la nouvelle version
240
*
241
* Revision 1.3  2004/07/05 15:10:14  florian
242
* changement interface de saisie
243
*
244
* Revision 1.2  2004/07/01 10:13:41  florian
245
* modif Florian
246
*
247
* Revision 1.1  2004/06/23 09:58:32  alex
248
* version initiale
249
*
250
* Revision 1.1  2004/06/18 09:00:07  alex
251
* version initiale
252
*
253
*
254
* +-- Fin du code ----------------------------------------------------------------------------------------+
255
*/
256
?>