Subversion Repositories Sites.tela-botanica.org

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
376 jpm 1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.3                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
8
// | This file is part of eFlore-consultation.                                                            |
9
// |                                                                                                      |
10
// | Foobar is free software; you can redistribute it and/or modify                                       |
11
// | it under the terms of the GNU General Public License as published by                                 |
12
// | the Free Software Foundation; either version 2 of the License, or                                    |
13
// | (at your option) any later version.                                                                  |
14
// |                                                                                                      |
15
// | Foobar is distributed in the hope that it will be useful,                                            |
16
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
17
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                        |
18
// | GNU General Public License for more details.                                                         |
19
// |                                                                                                      |
20
// | You should have received a copy of the GNU General Public License                                    |
21
// | along with Foobar; if not, write to the Free Software                                                |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
23
// +------------------------------------------------------------------------------------------------------+
24
// CVS : $Id: ef_config_chemin.inc.php,v 1.16 2007-07-17 07:48:23 jp_milcent Exp $
25
/**
26
* Fichier de configuration des chemins des fichiers utilisés par l'application eFlore.
27
*
28
* Fichier contenant des constantes et des variables globales permettant de configurer eFlore-consultation.
29
*
30
*@package eflore
31
*@subpackage configuration
32
//Auteur original :
33
*@author        Linda ANGAMA<linda_angama@yahoo.fr>
34
//Autres auteurs :
35
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
36
*@copyright     Tela-Botanica 2000-2005
37
*@version       $Revision: 1.16 $
38
// +------------------------------------------------------------------------------------------------------+
39
*/
40
 
41
// +------------------------------------------------------------------------------------------------------+
42
// |                                            ENTETE du PROGRAMME                                       |
43
// +------------------------------------------------------------------------------------------------------+
44
 
45
 
46
// +------------------------------------------------------------------------------------------------------+
47
// |                                            CORPS du PROGRAMME                                        |
48
// +------------------------------------------------------------------------------------------------------+
49
 
50
// +------------------------------------------------------------------------------------------------------+
51
// Définition des chemins de fichiers.
52
/** Constante stockant le chemin vers le dossier modules.*/
53
define('SC_CHEMIN_MODULE', SC_CHEMIN_APPLI.'modules/');
54
/** Constante stockant le chemin vers le dossier bibliothèque.*/
55
define('SC_CHEMIN_BIBLIO', SC_CHEMIN_APPLI.'bibliotheque/');
56
/** Constante stockant le chemin vers le dossier metier.*/
57
define('SC_CHEMIN_BIBLIO_METIER', Sc_CHEMIN_BIBLIO.'metier/');
58
/** Constante stockant le chemin vers le dossier noyau.*/
59
define('SC_CHEMIN_BIBLIO_NOYAU', SC_CHEMIN_BIBLIO.'noyau/');
60
/** Constante stockant le chemin vers l'API PEAR.*/
61
define('SC_CHEMIN_PEAR', '../api/pear/');
62
 
63
// +------------------------------------------------------------------------------------------------------+
64
// Tableaux sotckant les chemins des classes pour la fonction autoload
65
$GLOBALS['_SCRIPT_']['chemins_classes'] = array(	SC_CHEMIN_BIBLIO_NOYAU,
66
													SC_CHEMIN_BIBLIO_METIER);
67
?>