Subversion Repositories Applications.papyrus

Rev

Rev 138 | Rev 871 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 138 Rev 409
Line 1... Line 1...
1
<?php
1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */ 
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */ 
-
 
3
// Copyright (C) 1999-2004 Tela Botanica (accueil@tela-botanica.org)
-
 
4
//
3
// +------------------------------------------------------------------------------------------------------+
5
// Ce logiciel est un programme informatique servant à gérer du contenu et des
-
 
6
// applications web.
-
 
7
                                                                                                      
4
// | PHP version 4.1                                                                                      |
8
// Ce logiciel est régi par la licence CeCILL soumise au droit français et
5
// +------------------------------------------------------------------------------------------------------+
9
// respectant les principes de diffusion des logiciels libres. Vous pouvez
-
 
10
// utiliser, modifier et/ou redistribuer ce programme sous les conditions
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
11
// de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA 
-
 
12
// sur le site "http://www.cecill.info".
-
 
13
 
7
// +------------------------------------------------------------------------------------------------------+
14
// En contrepartie de l'accessibilité au code source et des droits de copie,
8
// | This library is free software; you can redistribute it and/or                                        |
15
// de modification et de redistribution accordés par cette licence, il n'est
9
// | modify it under the terms of the GNU Lesser General Public                                           |
16
// offert aux utilisateurs qu'une garantie limitée.  Pour les mêmes raisons,
10
// | License as published by the Free Software Foundation; either                                         |
17
// seule une responsabilité restreinte pèse sur l'auteur du programme,  le
-
 
18
// titulaire des droits patrimoniaux et les concédants successifs.
-
 
19
 
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
20
// A cet égard  l'attention de l'utilisateur est attirée sur les risques
12
// |                                                                                                      |
21
// associés au chargement,  à l'utilisation,  à la modification et/ou au
13
// | This library is distributed in the hope that it will be useful,                                      |
22
// développement et à la reproduction du logiciel par l'utilisateur étant 
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
23
// donné sa spécificité de logiciel libre, qui peut le rendre complexe à 
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
24
// manipuler et qui le réserve donc à des développeurs et des professionnels
16
// | Lesser General Public License for more details.                                                      |
25
// avertis possédant  des  connaissances  informatiques approfondies.  Les
17
// |                                                                                                      |
26
// utilisateurs sont donc invités à charger  et  tester  l'adéquation  du
18
// | You should have received a copy of the GNU Lesser General Public                                     |
27
// logiciel à leurs besoins dans des conditions permettant d'assurer la
19
// | License along with this library; if not, write to the Free Software                                  |
28
// sécurité de leurs systèmes et ou de leurs données et, plus généralement, 
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
29
// à l'utiliser et l'exploiter dans les mêmes conditions de sécurité. 
-
 
30
 
21
// +------------------------------------------------------------------------------------------------------+
31
// Le fait que vous puissiez accéder à cet en-tête signifie que vous avez 
-
 
32
// pris connaissance de la licence CeCILL, et que vous en avez accepté les
-
 
33
// termes.
-
 
34
// ----
22
// CVS : $Id: adme_configuration.inc.php,v 1.4 2004-11-09 13:00:06 jpm Exp $
35
// CVS : $Id: adme_configuration.inc.php,v 1.5 2005-07-08 21:13:15 ddelon Exp $
23
/**
36
/**
24
* Fichier de configuration général de l'application Administrateur de Menus.
37
* Fichier de configuration général de l'application Administrateur de Menus.
25
*
38
*
26
* Permet de définir certains paramètres valables pour toutes l'application 
39
* Permet de définir certains paramètres valables pour toutes l'application 
27
* Administrateur de Menus.
40
* Administrateur de Menus.
Line 31... Line 44...
31
//Auteur original :
44
//Auteur original :
32
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
45
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
33
//Autres auteurs :
46
//Autres auteurs :
34
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
47
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
35
*@copyright     Tela-Botanica 2000-2004
48
*@copyright     Tela-Botanica 2000-2004
36
*@version       $Revision: 1.4 $ $Date: 2004-11-09 13:00:06 $
49
*@version       $Revision: 1.5 $ $Date: 2005-07-08 21:13:15 $
37
// +------------------------------------------------------------------------------------------------------+
50
// +------------------------------------------------------------------------------------------------------+
38
*/
51
*/
Line 39... Line 52...
39
 
52
 
40
// +------------------------------------------------------------------------------------------------------+
53
// +------------------------------------------------------------------------------------------------------+
Line 81... Line 94...
81
define('ADME_IMAGE_VOIR',           ADME_CHEMIN_IMAGE_INTERFACE.'adme_modifier.png');
94
define('ADME_IMAGE_VOIR',           ADME_CHEMIN_IMAGE_INTERFACE.'adme_modifier.png');
82
/** Chemin vers l'image monter un menu.*/
95
/** Chemin vers l'image monter un menu.*/
83
define('ADME_IMAGE_FLECHE_HAUT',    ADME_CHEMIN_IMAGE_INTERFACE.'adme_monter.png');
96
define('ADME_IMAGE_FLECHE_HAUT',    ADME_CHEMIN_IMAGE_INTERFACE.'adme_monter.png');
84
/** Chemin vers l'image descendre un menu.*/
97
/** Chemin vers l'image descendre un menu.*/
85
define('ADME_IMAGE_FLECHE_BAS',     ADME_CHEMIN_IMAGE_INTERFACE.'adme_descendre.png');
98
define('ADME_IMAGE_FLECHE_BAS',     ADME_CHEMIN_IMAGE_INTERFACE.'adme_descendre.png');
-
 
99
/** Chemin vers l'image diminuer un menu.*/
-
 
100
define('ADME_IMAGE_FLECHE_GAUCHE',    ADME_CHEMIN_IMAGE_INTERFACE.'adme_diminuer.png');
-
 
101
/** Chemin vers l'image augmenter un menu.*/
-
 
102
define('ADME_IMAGE_FLECHE_DROITE',     ADME_CHEMIN_IMAGE_INTERFACE.'adme_augmenter.png');
86
/** Chemin vers l'image supprimer un menu.*/
103
/** Chemin vers l'image supprimer un menu.*/
87
define('ADME_IMAGE_SUPPRIMER',      ADME_CHEMIN_IMAGE_INTERFACE.'adme_supprimer.png');
104
define('ADME_IMAGE_SUPPRIMER',      ADME_CHEMIN_IMAGE_INTERFACE.'adme_supprimer.png');
88
/** Chemin vers l'image ajouter un menu.*/
105
/** Chemin vers l'image ajouter un menu.*/
89
define('ADME_IMAGE_NOUVEAU',        ADME_CHEMIN_IMAGE_INTERFACE.'adme_ajouter.png');
106
define('ADME_IMAGE_NOUVEAU',        ADME_CHEMIN_IMAGE_INTERFACE.'adme_ajouter.png');
90
/** Chemin vers l'image accéder à l'interface d'administration de l'application du menu courant.*/
107
/** Chemin vers l'image accéder à l'interface d'administration de l'application du menu courant.*/
Line 97... Line 114...
97
define('ADME_CLASS_IMG_PD', 'adme_img_plier_deplier');
114
define('ADME_CLASS_IMG_PD', 'adme_img_plier_deplier');
Line 98... Line 115...
98
 
115
 
99
/* +--Fin du code ----------------------------------------------------------------------------------------+
116
/* +--Fin du code ----------------------------------------------------------------------------------------+
100
*
117
*
-
 
118
* $Log: not supported by cvs2svn $
-
 
119
* Revision 1.4  2004/11/09 13:00:06  jpm
-
 
120
* Changement de noms des images.
101
* $Log: not supported by cvs2svn $
121
*
102
* Revision 1.3  2004/11/09 12:51:16  jpm
122
* Revision 1.3  2004/11/09 12:51:16  jpm
103
* Ajout de commentaires.
123
* Ajout de commentaires.
104
*
124
*
105
* Revision 1.2  2004/07/06 17:07:42  jpm
125
* Revision 1.2  2004/07/06 17:07:42  jpm