Subversion Repositories Applications.papyrus

Rev

Rev 6 | Rev 135 | Go to most recent revision | Details | Compare with Previous | 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
// +------------------------------------------------------------------------------------------------------+
25 jpm 22
// CVS : $Id: adme_configuration.inc.php,v 1.2 2004-07-06 17:07:42 jpm Exp $
6 jpm 23
/**
24
* Fichier de configuration général de l'application Administrateur de Menus.
25
*
26
* Permet de définir certains paramètres valables pour toutes l'application
27
* Administrateur de Menus.
28
*
25 jpm 29
*@package Admin_menu
30
*@subpackage Configuration
6 jpm 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
25 jpm 36
*@version       $Revision: 1.2 $ $Date: 2004-07-06 17:07:42 $
6 jpm 37
// +------------------------------------------------------------------------------------------------------+
38
*/
39
 
40
// +------------------------------------------------------------------------------------------------------+
41
// |                                            ENTETE du PROGRAMME                                       |
42
// +------------------------------------------------------------------------------------------------------+
43
                                    /*Mettre ici les inclusions de fichiers*/
44
 
45
 
46
// +------------------------------------------------------------------------------------------------------+
47
// |                                            CORPS du PROGRAMME                                        |
48
// +------------------------------------------------------------------------------------------------------+
49
                                       /*Mettre ici le code du programme*/
50
// Chemin des fichiers à inclure.
51
define('ADME_CHEMIN_BIBLIOTHEQUE_PEAR', '');
52
define('ADME_CHEMIN_BIBLIOTHEQUE_API', GEN_CHEMIN_API);
53
define('ADME_CHEMIN_BIBLIOTHEQUE_GEN', GEN_CHEMIN_BIBLIO);
54
 
55
// Chemin vers les dossiers de l'application
56
define('ADME_CHEMIN_APPLICATION', GEN_CHEMIN_APPLICATION.'admin_menu/');
57
define('ADME_CHEMIN_IMAGE_INTERFACE', ADME_CHEMIN_APPLICATION.'presentations/images/interface/');
58
define('ADME_CHEMIN_BIBLIOTHEQUE_ADME', ADME_CHEMIN_APPLICATION.'bibliotheque/');
59
 
60
// Chemin vers le dossier contenant les images des drapeaux des pays
61
define('ADME_CHEMIN_IMAGE_DRAPEAUX', GEN_CHEMIN_COMMUN.GEN_DOSSIER_GENERIQUE.'/'.GEN_DOSSIER_IMAGE.'/drapeaux/');
62
 
63
// Chemin (intégrant le nom du fichier) vers les images de l'interface de l'application
64
define('ADME_IMAGE_PLUS',           ADME_CHEMIN_IMAGE_INTERFACE.'openclose-plus.gif') ;
65
define('ADME_IMAGE_MOINS',          ADME_CHEMIN_IMAGE_INTERFACE.'openclose-minus.gif') ;
66
define('ADME_IMAGE_VOIR',           ADME_CHEMIN_IMAGE_INTERFACE.'see.gif') ;
67
define('ADME_IMAGE_FLECHE_HAUT',    ADME_CHEMIN_IMAGE_INTERFACE.'up-arrow.gif') ;
68
define('ADME_IMAGE_FLECHE_BAS',     ADME_CHEMIN_IMAGE_INTERFACE.'down-arrow.gif') ;
69
define('ADME_IMAGE_SUPPRIMER',      ADME_CHEMIN_IMAGE_INTERFACE.'trash.gif') ;
70
define('ADME_IMAGE_NOUVEAU',        ADME_CHEMIN_IMAGE_INTERFACE.'addcross.gif') ;
71
define('ADME_IMAGE_TEXTE',          ADME_CHEMIN_IMAGE_INTERFACE.'doc.gif') ;
72
 
73
 
74
 
75
/* +--Fin du code ----------------------------------------------------------------------------------------+
76
*
77
* $Log: not supported by cvs2svn $
25 jpm 78
* Revision 1.1  2004/06/16 14:39:44  jpm
79
* Changement de nom de Génésia en Papyrus.
80
* Changement de l'arborescence.
81
*
6 jpm 82
* Revision 1.7  2004/05/07 16:32:46  jpm
83
* Correction erreur de chemin.
84
*
85
* Revision 1.6  2004/05/07 09:53:58  jpm
86
* Ajout de commentaires et de nouvelles constantes.
87
*
88
*
89
* +-- Fin du code ----------------------------------------------------------------------------------------+
90
*/
91
?>