Subversion Repositories Applications.papyrus

Rev

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

Rev Author Line No. Line
206 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: adau_configuration.inc.php,v 1.1 2004-12-06 11:31:42 alex Exp $
23
/**
24
* Fichier de configuration général de l'application Administrateur de authentification.
25
*
26
* Permet de définir certains paramètres valables pour toutes l'application
27
* Administrateur de Menus.
28
*
29
*@package Admin_auth
30
*@subpackage Configuration
31
//Auteur original :
32
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
33
//Autres auteurs :
34
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
35
*@copyright     Tela-Botanica 2000-2004
36
*@version       $Revision: 1.1 $
37
// +------------------------------------------------------------------------------------------------------+
38
*/
39
 
40
// +------------------------------------------------------------------------------------------------------+
41
// |                                            ENTETE du PROGRAMME                                       |
42
// +------------------------------------------------------------------------------------------------------+
43
 
44
 
45
// +------------------------------------------------------------------------------------------------------+
46
// |                                            CORPS du PROGRAMME                                        |
47
// +------------------------------------------------------------------------------------------------------+
48
/** Constante stockant la valeur de la langue par défaut pour l'appli ADME.*/
49
define('ADAU_I18N_DEFAUT', GEN_I18N_ID_DEFAUT);
50
 
51
// Chemin des fichiers à inclure.
52
/** Chemin vers la bibliothèque PEAR.*/
53
define('ADAU_CHEMIN_BIBLIOTHEQUE_PEAR', '');
54
/** Chemin vers la bibliothèque API.*/
55
define('ADAU_CHEMIN_BIBLIOTHEQUE_API', GEN_CHEMIN_API);
56
/** Chemin vers la bibliothèque de Papyrus.*/
57
define('ADAU_CHEMIN_BIBLIOTHEQUE_GEN', GEN_CHEMIN_BIBLIO);
58
 
59
// Chemin vers les dossiers de l'application
60
/** Chemin vers l'application Admin Auth de Papyrus.*/
61
define('ADAU_CHEMIN_APPLICATION', GEN_CHEMIN_APPLICATION.'admin_auth/');
62
/** Chemin vers les images de l'application Admin Auth de Papyrus.*/
63
define('ADAU_CHEMIN_IMAGE_INTERFACE', ADAU_CHEMIN_APPLICATION.'presentations/images/interface/');
64
/** Chemin vers la bibliothèque de l'application Admin Auth de Papyrus.*/
65
define('ADAU_CHEMIN_BIBLIOTHEQUE', ADAU_CHEMIN_APPLICATION.'bibliotheque/');
66
/** Chemin vers les classes de l'application Admin Auth de Papyrus.*/
67
define('ADAU_CHEMIN_CLASSES', ADAU_CHEMIN_APPLICATION.'classes/');
68
/** Chemin vers les fichiers de traduction de l'application Admin Auth de Papyrus.*/
69
define('ADAU_CHEMIN_LANGUE', ADAU_CHEMIN_APPLICATION.'langues/');
70
/** Chemin vers les styles de l'application Admin Auth de Papyrus.*/
71
define('ADAU_CHEMIN_STYLE', ADAU_CHEMIN_APPLICATION.'presentations/styles/');
72
 
73
 
74
 
75
/* +--Fin du code ----------------------------------------------------------------------------------------+
76
*
2150 mathias 77
* $Log: adau_configuration.inc.php,v $
78
* Revision 1.1  2004-12-06 11:31:42  alex
79
* version initiale
80
*
206 alex 81
*
82
* +-- Fin du code ----------------------------------------------------------------------------------------+
83
*/
84
?>