427 |
florian |
1 |
<?php
|
|
|
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
|
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
4 |
// | PHP version 4.1 |
|
|
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
6 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
|
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
8 |
// | This library is free software; you can redistribute it and/or |
|
|
|
9 |
// | modify it under the terms of the GNU Lesser General Public |
|
|
|
10 |
// | License as published by the Free Software Foundation; either |
|
|
|
11 |
// | version 2.1 of the License, or (at your option) any later version. |
|
|
|
12 |
// | |
|
|
|
13 |
// | This library is distributed in the hope that it will be useful, |
|
|
|
14 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
15 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
16 |
// | Lesser General Public License for more details. |
|
|
|
17 |
// | |
|
|
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
|
|
19 |
// | License along with this library; if not, write to the Free Software |
|
|
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
|
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
1465 |
alexandre_ |
22 |
// CVS : $Id: baz_config.inc.php,v 1.29 2007-06-25 09:57:37 alexandre_tb Exp $
|
427 |
florian |
23 |
/**
|
|
|
24 |
* Fichier de configuration du bazar
|
|
|
25 |
*
|
1298 |
neiluj |
26 |
* A éditer de façon spécifique à chaque déploiement
|
427 |
florian |
27 |
*
|
|
|
28 |
*@package bazar
|
|
|
29 |
//Auteur original :
|
|
|
30 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
|
|
31 |
*@author Florian SCHMITT <florian@ecole-et-nature.org>
|
|
|
32 |
//Autres auteurs :
|
|
|
33 |
*@copyright Tela-Botanica 2000-2004
|
1465 |
alexandre_ |
34 |
*@version $Revision: 1.29 $ $Date: 2007-06-25 09:57:37 $
|
427 |
florian |
35 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
36 |
*/
|
834 |
florian |
37 |
|
|
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
39 |
// | LES CONSTANTES DES ACTIONS DE BAZAR |
|
|
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
41 |
|
|
|
42 |
define ('BAZ_VOIR_TOUTES_ANNONCES', 1) ;
|
869 |
alexandre_ |
43 |
define ('BAZ_ACTION_VOIR_VOS_ANNONCES', 2);
|
834 |
florian |
44 |
define ('BAZ_DEPOSER_ANNONCE', 3) ;
|
|
|
45 |
define ('BAZ_ANNONCES_A_VALIDER', 4) ;
|
|
|
46 |
define ('BAZ_GERER_DROITS', 5) ;
|
|
|
47 |
define ('BAZ_ADMINISTRER_ANNONCES', 6) ;
|
|
|
48 |
define ('BAZ_MODIFIER_FICHE', 7) ;
|
|
|
49 |
if (!defined('BAZ_VOIR_FICHE')) define ('BAZ_VOIR_FICHE', 8) ;
|
|
|
50 |
define ('BAZ_SUPPRIMER_FICHE', 9) ;
|
|
|
51 |
define ('BAZ_ACTION_NOUVEAU', 10) ;
|
|
|
52 |
define ('BAZ_ACTION_NOUVEAU_V', 11) ;
|
|
|
53 |
define ('BAZ_ACTION_MODIFIER', 12) ;
|
|
|
54 |
define ('BAZ_ACTION_MODIFIER_V', 13) ;
|
|
|
55 |
define ('BAZ_ACTION_SUPPRESSION', 14) ;
|
|
|
56 |
define ('BAZ_ACTION_PUBLIER', 15) ;
|
|
|
57 |
define ('BAZ_ACTION_PAS_PUBLIER', 16) ;
|
|
|
58 |
define ('BAZ_S_INSCRIRE', 17);
|
|
|
59 |
define ('BAZ_VOIR_FLUX_RSS', 18);
|
|
|
60 |
|
427 |
florian |
61 |
//==================================== LES FLUX RSS==================================
|
|
|
62 |
// Constantes liées aux flux RSS
|
|
|
63 |
//==================================================================================
|
|
|
64 |
|
|
|
65 |
define('BAZ_CREER_FICHIERS_XML',0); //0=ne cree pas le fichier XML dans rss/; 1=cree le fichier XML dans rss/
|
1298 |
neiluj |
66 |
define('BAZ_RSS_NOMSITE','Educ-Envir.org'); //Nom du site indiqué dans les flux rss
|
|
|
67 |
define('BAZ_RSS_ADRESSESITE','http://educ-envir.org'); //Adresse Internet du site indiqué dans les flux rss
|
|
|
68 |
define('BAZ_RSS_DESCRIPTIONSITE','Educ-Envir.org, pour mutualiser l\'information en éducation à l\'environnement.'); //Description du site indiquée dans les flux rss
|
|
|
69 |
define('BAZ_RSS_LOGOSITE','http://ecole-et-nature.org/images/Logo_REN-Site.png'); //Logo du site indiqué dans les flux rss
|
1351 |
florian |
70 |
define('BAZ_RSS_MANAGINGEDITOR', 'nom@domaine.tld') ; //Managing editor du site
|
|
|
71 |
define('BAZ_RSS_WEBMASTER', 'nom@domaine.tld') ; //Mail Webmaster du site
|
1298 |
neiluj |
72 |
define('BAZ_RSS_CATEGORIE', 'Education a l\'environnement'); //catégorie du flux RSS
|
427 |
florian |
73 |
|
|
|
74 |
|
|
|
75 |
//==================================== PARAMETRAGE =================================
|
1298 |
neiluj |
76 |
// Pour régler certaines fonctionnalité de l'application
|
427 |
florian |
77 |
//==================================================================================
|
|
|
78 |
|
1298 |
neiluj |
79 |
define ('BAZ_ETAT_VALIDATION',0);
|
|
|
80 |
//Valeur par défaut d'état de la fiche annonce après saisie
|
427 |
florian |
81 |
//Mettre 0 pour 'en attente de validation d'un administrateur'
|
1298 |
neiluj |
82 |
//Mettre 1 pour 'directement validée en ligne'
|
427 |
florian |
83 |
|
1298 |
neiluj |
84 |
define ('BAZ_TAILLE_MAX_FICHIER',2000*1024);
|
|
|
85 |
//Valeur maximale en octets pour la taille d'un fichier joint à télécharger
|
427 |
florian |
86 |
|
774 |
florian |
87 |
define ('BAZ_TYPE_AFFICHAGE_LISTE', 'jma');
|
427 |
florian |
88 |
$GLOBALS['_BAZAR_']['db'] = & $GLOBALS['_GEN_commun']['pear_db'];
|
|
|
89 |
$GLOBALS['AUTH'] =& $GLOBALS['_GEN_commun']['pear_auth'];
|
1298 |
neiluj |
90 |
|
684 |
florian |
91 |
define ('BAZ_ANNUAIRE','annuaire'); //Table annuaire
|
|
|
92 |
define ('BAZ_CHAMPS_ID','a_id'); //Champs index sur la table annuaire
|
|
|
93 |
define ('BAZ_CHAMPS_NOM','a_nom'); //Champs nom sur la table annuaire
|
|
|
94 |
define ('BAZ_CHAMPS_PRENOM','a_prenom'); //Champs prenom sur la table annuaire
|
1298 |
neiluj |
95 |
define ('BAZ_CHAMPS_EST_STRUCTURE','a_est_structure'); //Champs indiquant si c'est une structure qui est identifiée
|
684 |
florian |
96 |
define ('BAZ_CHAMPS_EMAIL','a_mail'); //Champs prenom sur la table annuaire
|
859 |
florian |
97 |
define ('BAZ_CHAMPS_NOM_WIKI','a_nom_wikini'); //Champs nom wikini sur la table annuaire
|
667 |
alexandre_ |
98 |
|
1298 |
neiluj |
99 |
/** Réglage des droits pour déposer des annonces */
|
|
|
100 |
// Mettre à true pour limiter le dépot aux rédacteurs
|
967 |
florian |
101 |
define ('BAZ_RESTREINDRE_DEPOT', 0) ;
|
667 |
alexandre_ |
102 |
|
1298 |
neiluj |
103 |
/** Réglage de l'affichage de la liste deroulante pour la saisie des dates */
|
|
|
104 |
// Mettre à true pour afficher une liste deroulante vide pour la saisie des dates
|
834 |
florian |
105 |
define ('BAZ_DATE_VIDE', 0);
|
|
|
106 |
|
1298 |
neiluj |
107 |
/** Réglage de l'URL de l'annuaire */
|
|
|
108 |
// Mettre l'URL correspondant à l'annuaire
|
834 |
florian |
109 |
define ('BAZ_URL_ANNUAIRE', 'http://localhost/papyrus/papyrus.php?site=1&menu=13');
|
|
|
110 |
|
1298 |
neiluj |
111 |
// Mettre à true pour faire apparaitre un champs texte déroulant dans le formulaire
|
|
|
112 |
// de recherche des fiches, pour choisir les émetteurs
|
967 |
florian |
113 |
define ('BAZ_RECHERCHE_PAR_EMETTEUR', 1) ;
|
726 |
alexandre_ |
114 |
|
427 |
florian |
115 |
$GLOBALS['_BAZAR_']['url'] = $GLOBALS['_GEN_commun']['url'];
|
967 |
florian |
116 |
|
427 |
florian |
117 |
//BAZ_CHEMIN_APPLI : chemin vers l'application bazar METTRE UN SLASH (/) A LA FIN!!!!
|
|
|
118 |
define('BAZ_CHEMIN_APPLI', PAP_CHEMIN_RACINE.'client/bazar/');
|
|
|
119 |
|
|
|
120 |
//==================================== LES LANGUES ==================================
|
1298 |
neiluj |
121 |
// Constantes liées à l'utilisation des langues
|
427 |
florian |
122 |
//==================================================================================
|
701 |
florian |
123 |
$GLOBALS['_BAZAR_']['langue']='fr-FR';
|
1298 |
neiluj |
124 |
define ('BAZ_LANGUE_PAR_DEFAUT', 'fr') ; //Indique un code langue par défaut
|
|
|
125 |
define ('BAZ_VAR_URL_LANGUE', 'lang') ; //Nom de la variable GET qui sera passée dans l'URL (Laisser vide pour les sites monolingues)
|
427 |
florian |
126 |
//code pour l'inclusion des langues NE PAS MODIFIER
|
|
|
127 |
if (BAZ_VAR_URL_LANGUE != '' && isset (${BAZ_VAR_URL_LANGUE})) {
|
|
|
128 |
include_once BAZ_CHEMIN_APPLI.'langues/baz_langue_'.${BAZ_VAR_URL_LANGUE}.'.inc.php';
|
|
|
129 |
} else {
|
|
|
130 |
include_once BAZ_CHEMIN_APPLI.'langues/baz_langue_'.BAZ_LANGUE_PAR_DEFAUT.'.inc.php';
|
|
|
131 |
}
|
|
|
132 |
|
847 |
florian |
133 |
// Option concernant la division des resultats en pages
|
844 |
alexandre_ |
134 |
define ('BAZ_NOMBRE_RES_PAR_PAGE', 30);
|
|
|
135 |
define ('BAZ_MODE_DIVISION', 'Jumping'); // 'Jumping' ou 'Sliding' voir http://pear.php.net/manual/fr/package.html.pager.compare.php
|
1298 |
neiluj |
136 |
define ('BAZ_DELTA', 12); // Le nombre de page à afficher avant le 'next';
|
844 |
alexandre_ |
137 |
|
1298 |
neiluj |
138 |
/** Réglage de l'affichage du formulaire de recherche avancee */
|
|
|
139 |
// Mettre à true pour afficher automatiquement le formulaire de recherche avancee, à false pour avoir un lien afficher la recherche avancee
|
967 |
florian |
140 |
define ('BAZ_MOTEUR_RECHERCHE_AVANCEE', 1);
|
844 |
alexandre_ |
141 |
|
1351 |
florian |
142 |
/** Réglage de l'utilisation ou non des templates */
|
|
|
143 |
// Mettre à true pour afficher les pages incluses dans la base bazar_template, à false sinon
|
|
|
144 |
define ('BAZ_UTILISE_TEMPLATE',0);
|
|
|
145 |
|
1298 |
neiluj |
146 |
// Mettre ici le type d'annonce qui va s'afficher dans les calendriers.
|
|
|
147 |
// Il est possible d'indiquer plusieurs identifiant de nature de fiche (bn_id_nature) en séparant les nombre par des
|
1221 |
jp_milcent |
148 |
// virgules : '1,2,3'
|
900 |
alexandre_ |
149 |
define ('BAZ_NUM_ANNONCE_CALENDRIER', 3);
|
847 |
florian |
150 |
|
1465 |
alexandre_ |
151 |
define ('BAZ_CHEMIN_SQUELETTE', BAZ_CHEMIN_APPLI.'squelettes'.GEN_SEP);
|
|
|
152 |
define ('BAZ_SQUELETTE_DEFAUT', 'baz_cal.tpl.html');
|
|
|
153 |
|
427 |
florian |
154 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
155 |
*
|
1298 |
neiluj |
156 |
* $Log: not supported by cvs2svn $
|
1465 |
alexandre_ |
157 |
* Revision 1.28 2007/04/20 09:57:21 florian
|
|
|
158 |
* correction bugs suite au merge
|
|
|
159 |
*
|
1351 |
florian |
160 |
* Revision 1.27 2007/04/11 08:30:12 neiluj
|
|
|
161 |
* remise en état du CVS...
|
|
|
162 |
*
|
1298 |
neiluj |
163 |
* Revision 1.21.2.1 2007/02/15 13:43:54 jp_milcent
|
|
|
164 |
* Ajout de commentaire pour la constante utilisée par le Calendrier.
|
|
|
165 |
*
|
|
|
166 |
* Revision 1.21 2006/10/05 08:53:50 florian
|
|
|
167 |
* amelioration moteur de recherche, correction de bugs
|
|
|
168 |
*
|
|
|
169 |
* Revision 1.20 2006/07/04 13:59:01 alexandre_tb
|
|
|
170 |
* Ajout de la constante BAZ_NUM_ANNONCE_CALENDRIER dans le fichier de conf. Elle indique le type d'annonce que le calendrier doit afficher
|
|
|
171 |
*
|
|
|
172 |
* Revision 1.19 2006/06/21 15:40:15 alexandre_tb
|
|
|
173 |
* rétablissement du menu mes fiches
|
|
|
174 |
*
|
|
|
175 |
* Revision 1.18 2006/06/02 09:29:30 florian
|
|
|
176 |
* ajout constante nom wikini
|
|
|
177 |
*
|
|
|
178 |
* Revision 1.17 2006/05/19 13:53:57 florian
|
|
|
179 |
* stabilisation du moteur de recherche, corrections bugs, lien recherche avancee
|
|
|
180 |
*
|
|
|
181 |
* Revision 1.16 2006/05/17 09:48:48 alexandre_tb
|
|
|
182 |
* Ajout des constantes pour le découpage en page
|
|
|
183 |
*
|
|
|
184 |
* Revision 1.15 2006/04/28 12:46:14 florian
|
|
|
185 |
* integration des liens vers annuaire
|
|
|
186 |
*
|
|
|
187 |
* Revision 1.14 2006/03/24 09:23:30 alexandre_tb
|
|
|
188 |
* ajout de la variable globale $GLOBALS['_BAZAR_']['filtre']
|
|
|
189 |
*
|
|
|
190 |
* Revision 1.13 2006/03/14 17:10:21 florian
|
|
|
191 |
* ajout des fonctions de syndication, changement du moteur de recherche
|
|
|
192 |
*
|
|
|
193 |
* Revision 1.12 2006/02/07 13:57:41 alexandre_tb
|
|
|
194 |
* ajout de la constante pour masquer la liste des émetteurs
|
|
|
195 |
*
|
|
|
196 |
* Revision 1.11 2006/01/18 10:03:36 florian
|
|
|
197 |
* recodage de l'insertion et de la maj des données relatives aux listes et checkbox dans des formulaires
|
|
|
198 |
*
|
|
|
199 |
* Revision 1.10 2006/01/03 10:19:31 florian
|
|
|
200 |
* 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...
|
|
|
201 |
*
|
|
|
202 |
* Revision 1.9 2005/12/16 15:47:54 alexandre_tb
|
|
|
203 |
* ajout de l'option restreindre dépôt
|
|
|
204 |
*
|
|
|
205 |
* Revision 1.8 2005/10/24 09:42:21 florian
|
|
|
206 |
* mise a jour appropriation
|
|
|
207 |
*
|
|
|
208 |
* Revision 1.7 2005/10/21 16:15:04 florian
|
|
|
209 |
* mise a jour appropriation
|
568 |
florian |
210 |
*
|
561 |
florian |
211 |
* Revision 1.6 2005/09/30 12:22:54 florian
|
|
|
212 |
* Ajouts commentaires pour fiche, modifications graphiques, maj SQL
|
|
|
213 |
*
|
479 |
florian |
214 |
* Revision 1.4 2005/07/21 19:03:12 florian
|
|
|
215 |
* nouveautés bazar: templates fiches, correction de bugs, ...
|
|
|
216 |
*
|
427 |
florian |
217 |
* Revision 1.2 2005/02/22 15:34:17 florian
|
|
|
218 |
* integration dans Papyrus
|
|
|
219 |
*
|
|
|
220 |
* Revision 1.1.1.1 2005/02/17 18:05:11 florian
|
|
|
221 |
* Import initial de Bazar
|
|
|
222 |
*
|
|
|
223 |
* Revision 1.1.1.1 2005/02/17 11:09:50 florian
|
|
|
224 |
* Import initial
|
|
|
225 |
*
|
|
|
226 |
* Revision 1.1.1.1 2005/02/16 18:06:35 florian
|
|
|
227 |
* import de la nouvelle version
|
|
|
228 |
*
|
|
|
229 |
* Revision 1.5 2004/07/08 12:15:32 florian
|
|
|
230 |
* ajout constantes pour flux RSS
|
|
|
231 |
*
|
|
|
232 |
* Revision 1.4 2004/07/06 16:21:54 florian
|
1298 |
neiluj |
233 |
* débuggage modification + MAJ flux RSS
|
427 |
florian |
234 |
*
|
|
|
235 |
* Revision 1.3 2004/07/02 14:50:47 florian
|
|
|
236 |
* ajout configuration de l'etat de l'annonce (visible,masquée,...)
|
|
|
237 |
*
|
|
|
238 |
* Revision 1.2 2004/07/01 10:13:30 florian
|
|
|
239 |
* modif Florian
|
|
|
240 |
*
|
|
|
241 |
* Revision 1.1 2004/06/23 09:58:32 alex
|
|
|
242 |
* version initiale
|
|
|
243 |
*
|
|
|
244 |
* Revision 1.1 2004/06/18 09:00:41 alex
|
|
|
245 |
* version initiale
|
|
|
246 |
*
|
|
|
247 |
*
|
|
|
248 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
249 |
*/
|
|
|
250 |
?>
|