229 |
alex |
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 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
22 |
// CVS : $Id: adap_configuration.inc.php,v 1.1 2004-12-13 18:07:33 alex Exp $
|
|
|
23 |
/**
|
|
|
24 |
* Fichier de configuration général de l'application Administration des applications.
|
|
|
25 |
*
|
|
|
26 |
* Permet de définir certains paramètres valables pour toutes l'application
|
|
|
27 |
* Administrateur des applications.
|
|
|
28 |
*
|
|
|
29 |
*@package Admin_application
|
|
|
30 |
*@subpackage Configuration
|
|
|
31 |
//Auteur original :
|
|
|
32 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
|
|
33 |
//Autres auteurs :
|
|
|
34 |
*@copyright Tela-Botanica 2000-2004
|
|
|
35 |
*@version $Revision: 1.1 $
|
|
|
36 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
37 |
*/
|
|
|
38 |
|
|
|
39 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
40 |
// | ENTETE du PROGRAMME |
|
|
|
41 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
42 |
|
|
|
43 |
|
|
|
44 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
45 |
// | CORPS du PROGRAMME |
|
|
|
46 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
47 |
/** Constante stockant la valeur de la langue par défaut pour l'appli ADAP.*/
|
|
|
48 |
define('ADAP_I18N_DEFAUT', GEN_I18N_ID_DEFAUT);
|
|
|
49 |
|
|
|
50 |
// Chemin des fichiers à inclure.
|
|
|
51 |
/** Chemin vers la bibliothèque PEAR.*/
|
|
|
52 |
define('ADAP_CHEMIN_BIBLIOTHEQUE_PEAR', '');
|
|
|
53 |
/** Chemin vers la bibliothèque API.*/
|
|
|
54 |
define('ADAP_CHEMIN_BIBLIOTHEQUE_API', GEN_CHEMIN_API);
|
|
|
55 |
/** Chemin vers la bibliothèque de Papyrus.*/
|
|
|
56 |
define('ADAP_CHEMIN_BIBLIOTHEQUE_GEN', GEN_CHEMIN_BIBLIO);
|
|
|
57 |
|
|
|
58 |
// Chemin vers les dossiers de l'application
|
|
|
59 |
/** Chemin vers l'application Admin Auth de Papyrus.*/
|
|
|
60 |
define('ADAP_CHEMIN_APPLICATION', GEN_CHEMIN_APPLICATION.'admin_application/');
|
|
|
61 |
/** Chemin vers les images de l'application Admin Auth de Papyrus.*/
|
|
|
62 |
define('ADAP_CHEMIN_IMAGE_INTERFACE', ADAP_CHEMIN_APPLICATION.'presentations/images/interface/');
|
|
|
63 |
/** Chemin vers la bibliothèque de l'application Admin Auth de Papyrus.*/
|
|
|
64 |
define('ADAP_CHEMIN_BIBLIOTHEQUE', ADAP_CHEMIN_APPLICATION.'bibliotheque/');
|
|
|
65 |
/** Chemin vers les classes de l'application Admin Auth de Papyrus.*/
|
|
|
66 |
define('ADAP_CHEMIN_CLASSES', ADAP_CHEMIN_APPLICATION.'classes/');
|
|
|
67 |
/** Chemin vers les fichiers de traduction de l'application Admin Auth de Papyrus.*/
|
|
|
68 |
define('ADAP_CHEMIN_LANGUE', ADAP_CHEMIN_APPLICATION.'langues/');
|
|
|
69 |
/** Chemin vers les styles de l'application Admin Auth de Papyrus.*/
|
|
|
70 |
define('ADAP_CHEMIN_STYLE', ADAP_CHEMIN_APPLICATION.'presentations/styles/');
|
|
|
71 |
|
|
|
72 |
|
|
|
73 |
|
|
|
74 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
75 |
*
|
|
|
76 |
* $Log: not supported by cvs2svn $
|
|
|
77 |
*
|
|
|
78 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
79 |
*/
|
|
|
80 |
?>
|