Subversion Repositories eFlore/Archives.eflore-consultation-v1

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 jpm 1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2005 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
8
// | This file is part of Integrateur eFlore.                                                             |
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
// +------------------------------------------------------------------------------------------------------+
6 jpm 24
// CVS : $Id: eflore_config.inc.php,v 1.2 2005-06-01 18:25:24 jpm Exp $
2 jpm 25
/**
26
* Fichier de configuration
27
*
28
*@package eFlore
29
*@subpackage Ancien
30
//Auteur original :
31
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
32
//Autres auteurs :
33
*@author        Aucun
34
*@copyright     Tela-Botanica 2000-2005
6 jpm 35
*@version       $Revision: 1.2 $ $Date: 2005-06-01 18:25:24 $
2 jpm 36
// +------------------------------------------------------------------------------------------------------+
37
*/
38
 
39
// +------------------------------------------------------------------------------------------------------+
40
// |                                            ENTETE du PROGRAMME                                       |
41
// +------------------------------------------------------------------------------------------------------+
42
 
43
// +------------------------------------------------------------------------------------------------------+
44
// |                                            CORPS du PROGRAMME                                        |
45
// +------------------------------------------------------------------------------------------------------+
46
// +------------------------------------------------------------------------------------------------------+
47
// Définition de la langue
48
/** Constante stockant la langue utilisée pour l'application.*/
49
define('EF_LANGUE', substr($GLOBALS['_GEN_commun']['i18n'], 0, 2));
50
 
51
// +------------------------------------------------------------------------------------------------------+
52
// Divers
53
$GLOBALS['eflore_services']['location']='http://eflore.tela-botanica.org/servicesxml/';
54
$GLOBALS['_EF_ANCIEN_']['type'] = 'ANT';
55
if (isset($GLOBALS['_GEN_commun']['info_application']->type)) {
56
    $GLOBALS['_EF_ANCIEN_']['type'] = $GLOBALS['_GEN_commun']['info_application']->type;
57
}
58
$GLOBALS['_EF_ANCIEN_']['maintenance'] = 'false';
59
if (isset($GLOBALS['_GEN_commun']['info_application']->maintenance)) {
60
    $GLOBALS['_EF_ANCIEN_']['maintenance'] = $GLOBALS['_GEN_commun']['info_application']->maintenance;
61
}
62
$GLOBALS['_EF_ANCIEN_']['statistique'] = 'true';
63
if (isset($GLOBALS['_GEN_commun']['info_application']->statistique)) {
64
    $GLOBALS['_EF_ANCIEN_']['statistique'] = $GLOBALS['_GEN_commun']['info_application']->statistique;
65
}
66
// +------------------------------------------------------------------------------------------------------+
67
// Chemins
68
define('EF_PATH_ROOT','client/eflore_ancien/');
69
define('EF_PATH_BIBLIO',EF_PATH_ROOT.'bibliotheque/');
70
define('EF_PATH_CONFIG',EF_PATH_ROOT.'configuration/');
71
define('EF_PATH_LANGUE',EF_PATH_ROOT.'langues/');
6 jpm 72
define('EF_PATH_PRESENTATION',EF_PATH_ROOT.'presentations/');
73
define('EF_PATH_STYLE',EF_PATH_PRESENTATION.'styles/');
74
define('EF_PATH_SCRIPT',EF_PATH_PRESENTATION.'scripts/');
2 jpm 75
define('EF_PATH_API','api/');
76
define('EF_PATH_API_BOG',EF_PATH_API.'debogage/');
77
define('EF_PATH_CLASSES',EF_PATH_BIBLIO.'classes/');
78
define('EF_PATH_DBACCESS',EF_PATH_BIBLIO.'dbaccess/');
79
define('EF_PATH_SERVICES',EF_PATH_BIBLIO.'servicesxml/');
80
define('EF_PATH_XSLT',EF_PATH_BIBLIO.'xsl/');
81
 
82
// +------------------------------------------------------------------------------------------------------+
83
// |                                            PIED du PROGRAMME                                         |
84
// +------------------------------------------------------------------------------------------------------+
85
 
86
 
87
 
88
/* +--Fin du code ----------------------------------------------------------------------------------------+
89
*
90
* $Log: not supported by cvs2svn $
6 jpm 91
* Revision 1.1  2005/05/24 15:57:48  jpm
92
* Gestion de l'ancienne base.
2 jpm 93
*
6 jpm 94
*
2 jpm 95
* +-- Fin du code ----------------------------------------------------------------------------------------+
96
*/
97
?>