Subversion Repositories Applications.papyrus

Rev

Rev 25 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 jpm 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: adsi_configuration.inc.php,v 1.1 2004-06-16 14:20:28 jpm Exp $
23
/**
24
* Fichier de configuration général de l'application Administrateur de sites.
25
*
26
* Permet de définir certains paramètres valables pour toutes l'application
27
* Administrateur de sites.
28
*
29
*@package Administrateur de Sites
30
//Auteur original :
31
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
32
//Autres auteurs :
33
*@author        Aucun
34
*@copyright     Tela-Botanica 2000-2004
35
*@version       $Revision: 1.1 $ $Date: 2004-06-16 14:20:28 $
36
// +------------------------------------------------------------------------------------------------------+
37
*/
38
 
39
// +------------------------------------------------------------------------------------------------------+
40
// |                                            ENTETE du PROGRAMME                                       |
41
// +------------------------------------------------------------------------------------------------------+
42
                                    /*Mettre ici les inclusions de fichiers*/
43
 
44
 
45
// +------------------------------------------------------------------------------------------------------+
46
// |                                            CORPS du PROGRAMME                                        |
47
// +------------------------------------------------------------------------------------------------------+
48
                                       /*Mettre ici le code du programme*/
49
// Chemin des fichiers à inclure.
50
/** <br> Chemin vers le dossier de Pear.*/
51
define('ADSI_CHEMIN_BIBLIOTHEQUE_PEAR','');
52
/** <br> Chemin vers le dossier des API.*/
53
define('ADSI_CHEMIN_BIBLIOTHEQUE_API', GEN_CHEMIN_API);
54
/** <br> Chemin vers le dossier des bibliothèques de l'appli Papyrus.*/
55
define('ADSI_CHEMIN_BIBLIOTHEQUE_GEN', GEN_CHEMIN_BIBLIO);
56
/** <br> Chemin vers le dossier des bibliothèques de l'appli Admin sites.*/
57
define('ADSI_CHEMIN_BIBLIOTHEQUE_ADSI', GEN_CHEMIN_APPLICATION.'admin_site/bibliotheque/');
58
 
59
 
60
/* +--Fin du code ----------------------------------------------------------------------------------------+
61
*
62
* $Log: not supported by cvs2svn $
63
* Revision 1.1  2004/05/07 08:21:39  jpm
64
* Ajout des constantes de définition des chemins des fichiers à inclure.
65
*
66
*
67
* +-- Fin du code ----------------------------------------------------------------------------------------+
68
*/
69
?>