425 |
florian |
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: inscription.config.inc.php,v 1.3 2005-07-21 18:24:38 florian Exp $
|
|
|
23 |
/**
|
|
|
24 |
* Fichier de configuration de l'inscription
|
|
|
25 |
*
|
|
|
26 |
* A éditer de façon spécifique à chaque déploiement
|
|
|
27 |
*
|
|
|
28 |
*@package inscription
|
|
|
29 |
//Auteur original :
|
|
|
30 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
|
|
31 |
//Autres auteurs :
|
|
|
32 |
*@author Aucun
|
|
|
33 |
*@copyright Tela-Botanica 2000-2004
|
|
|
34 |
*@version $Revision: 1.3 $ $Date: 2005-07-21 18:24:38 $
|
|
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
36 |
*/
|
|
|
37 |
|
|
|
38 |
//==================================== PARAMETRAGE =================================
|
|
|
39 |
/** Définir la présence d'un formulaire d'inscription de structure (mettre à 1 pour oui, 0 pour non */
|
|
|
40 |
define ('INS_FORMULAIRE_STRUCTURE', 1);
|
|
|
41 |
/** Définir la nécessité d'envoyer un message de confirmation d'inscription (mettre à 1 pour oui, 0 pour non */
|
|
|
42 |
define ('INS_MAIL_VALIDATION_INSCRIPTION', 0);
|
|
|
43 |
/** Adresse de messagerie de l'administrateur, pour suivre les inscriptions */
|
|
|
44 |
define ('INS_MAIL_ADMIN_APRES_INSCRIPTION', '');
|
|
|
45 |
/** Sujet du message envoyé pour l'inscription */
|
|
|
46 |
define ('INS_MAIL_ADMIN_APRES_INSCRIPTION_SUJET', 'Inscription');
|
|
|
47 |
/** L'inscription génère t'elle l'inscription à un Spip? Mettre à 1 pour oui , et 0 pour non */
|
|
|
48 |
define ('INS_UTILISE_SPIP', 0);
|
|
|
49 |
if (INS_UTILISE_SPIP) {
|
|
|
50 |
/** Chemin d'accès au Spip */
|
|
|
51 |
define ('INS_CHEMIN_SPIP', '');
|
|
|
52 |
}
|
|
|
53 |
/** L'inscription génère t'elle l'inscription à un Wikini? Mettre à 1 pour oui , et 0 pour non */
|
|
|
54 |
define ('INS_UTILISE_WIKINI', 0);
|
|
|
55 |
if (INS_UTILISE_WIKINI) {
|
|
|
56 |
/** Le nom du champs contenant le nom wikini dans l'annuaire */
|
|
|
57 |
define ('INS_CHAMPS_NOM_WIKINI', 'a_nom_wikini');
|
|
|
58 |
}
|
|
|
59 |
|
|
|
60 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
61 |
*
|
|
|
62 |
* $Log: not supported by cvs2svn $
|
|
|
63 |
* version initiale
|
|
|
64 |
*
|
|
|
65 |
*
|
|
|
66 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
67 |
*/
|
|
|
68 |
?>
|