434 |
ddelon |
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 |
// +------------------------------------------------------------------------------------------------------+
|
439 |
ddelon |
22 |
// CVS : $Id: adwi_configuration.inc.php,v 1.2 2005-09-09 09:37:17 ddelon Exp $
|
434 |
ddelon |
23 |
/**
|
|
|
24 |
* Fichier de configuration général de l'application Administration des wikini
|
|
|
25 |
*
|
|
|
26 |
* Permet de définir certains paramètres valables pour toutes l'application
|
|
|
27 |
* Administrateur des Wikni
|
|
|
28 |
*
|
|
|
29 |
*@package Admin_Wikini
|
|
|
30 |
*@subpackage Configuration
|
|
|
31 |
//Auteur original :
|
|
|
32 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
|
|
33 |
//Autres auteurs :
|
|
|
34 |
*@author David Delon <david.delon@clapas.net>
|
|
|
35 |
*@copyright Tela-Botanica 2000-2004
|
439 |
ddelon |
36 |
*@version $Revision: 1.2 $
|
434 |
ddelon |
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 ADAP.*/
|
|
|
49 |
define('ADWI_I18N_DEFAUT', GEN_I18N_ID_DEFAUT);
|
|
|
50 |
|
|
|
51 |
// Chemin des fichiers à inclure.
|
|
|
52 |
/** Chemin vers la bibliothèque PEAR.*/
|
|
|
53 |
define('ADWI_CHEMIN_BIBLIOTHEQUE_PEAR', '');
|
|
|
54 |
/** Chemin vers la bibliothèque API.*/
|
|
|
55 |
define('ADWI_CHEMIN_BIBLIOTHEQUE_API', GEN_CHEMIN_API);
|
|
|
56 |
/** Chemin vers la bibliothèque de Papyrus.*/
|
|
|
57 |
define('ADWI_CHEMIN_BIBLIOTHEQUE_GEN', GEN_CHEMIN_BIBLIO);
|
|
|
58 |
|
439 |
ddelon |
59 |
|
|
|
60 |
|
434 |
ddelon |
61 |
// Chemin vers les dossiers de l'application
|
|
|
62 |
/** Chemin vers l'application Admin Auth de Papyrus.*/
|
|
|
63 |
define('ADWI_CHEMIN_APPLICATION', GEN_CHEMIN_CLIENT.'integrateur_wikini/');
|
439 |
ddelon |
64 |
/** Chemin vers la bibliothèque de l'application gestion des Wikini de Papyrus.*/
|
434 |
ddelon |
65 |
define('ADWI_CHEMIN_BIBLIOTHEQUE', ADWI_CHEMIN_APPLICATION.'bibliotheque/');
|
439 |
ddelon |
66 |
/** Chemin vers la reference Wikini de l'application gestion des Wikini de Papyrus.*/
|
|
|
67 |
define('ADWI_CHEMIN_BIBLIOTHEQUE_WIKINI', ADWI_CHEMIN_BIBLIOTHEQUE.'wikini/');
|
434 |
ddelon |
68 |
/** Chemin vers les fichiers de traduction de l'application Admin Auth de Papyrus.*/
|
|
|
69 |
define('ADWI_CHEMIN_LANGUE', ADWI_CHEMIN_APPLICATION.'langues/');
|
439 |
ddelon |
70 |
/** Constante stockant le chemin du dossier contenant les sites Wikini.*/
|
|
|
71 |
define('ADWI_CHEMIN_WIKINI', GEN_CHEMIN_WIKINI);
|
434 |
ddelon |
72 |
|
|
|
73 |
|
439 |
ddelon |
74 |
|
434 |
ddelon |
75 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
76 |
*
|
|
|
77 |
* $Log: not supported by cvs2svn $
|
439 |
ddelon |
78 |
* Revision 1.1 2005/08/25 08:59:12 ddelon
|
|
|
79 |
* Integrateur Wikini et administration des Wikini
|
|
|
80 |
*
|
434 |
ddelon |
81 |
* Revision 1.1 2004/12/13 18:07:33 alex
|
|
|
82 |
* version initiale
|
|
|
83 |
*
|
|
|
84 |
*
|
|
|
85 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
86 |
*/
|
|
|
87 |
?>
|