Rev 609 | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php// +------------------------------------------------------------------------------------------------------+// | PHP version 4.1 |// +------------------------------------------------------------------------------------------------------+// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |// +------------------------------------------------------------------------------------------------------+// | This library is free software; you can redistribute it and/or |// | modify it under the terms of the GNU Lesser General Public |// | License as published by the Free Software Foundation; either |// | version 2.1 of the License, or (at your option) any later version. |// | |// | This library is distributed in the hope that it will be useful, |// | but WITHOUT ANY WARRANTY; without even the implied warranty of |// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |// | Lesser General Public License for more details. |// | |// | You should have received a copy of the GNU Lesser General Public |// | License along with this library; if not, write to the Free Software |// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |// +------------------------------------------------------------------------------------------------------+/*** Fichier de configuration de l'inscription** A éditer de façon spécifique à chaque déploiement**@package inscription//Auteur original :*@author Alexandre GRANIER <alexandre@tela-botanica.org>//Autres auteurs :*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>*@copyright Tela-Botanica 2000-2004*@version $Id: ins_config.inc.php,v 1.3 2005/05/13 13:49:15 alex Exp $// +------------------------------------------------------------------------------------------------------+*//**//=========================DEFINITION DE VARIABLES =================================* Définition des variables globales//==================================================================================*/$GLOBALS['AUTH'] =& $GLOBALS['_GEN_commun']['pear_auth'] ;/**//==================================== LES URLS ==================================* Constantes liées à l'utilisation des url//==================================================================================*/$GLOBALS['ins_url'] =& $GLOBALS['_GEN_commun']['url'] ;$GLOBALS['ins_db'] =& $GLOBALS['_GEN_commun']['pear_db'] ;define('INS_CHEMIN_FICHIER', 'client/inscription/') ;define('URL_LISTE_ACTU', 'http://vpopmail.tela-botanica.org/');/**//==================================== CONSTANTES ==================================* Constantes des noms de tables et de champs dans l'annuaire//==================================================================================*/define ('INS_ANNUAIRE', 'annuaire_tela');define ('INS_CHAMPS_ID', 'U_ID');// Nom du champs nomdefine ('INS_CHAMPS_MAIL', 'U_MAIL');// Nom du champs maildefine ('INS_CHAMPS_LOGIN', 'at_nom_wiki');define ('INS_CHAMPS_NOM', 'U_NAME');define ('INS_CHAMPS_PRENOM', 'U_SURNAME');define ('INS_CHAMPS_PASSE', 'U_PASSWD');define ('INS_CHAMPS_PAYS', 'U_COUNTRY');define ('INS_CHAMPS_CODE_POSTAL', 'U_ZIP_CODE');define ('INS_CHAMPS_VILLE', 'U_CITY');define ('INS_CHAMPS_ADRESSE_1', 'U_ADDR1');define ('INS_CHAMPS_ADRESSE_2', 'U_ADDR2');define ('INS_CHAMPS_REGION', 'U_STATE');define ('INS_CHAMPS_SITE_WEB', 'U_WEB');define ('INS_CHAMPS_TELEPHONE', 'U_PHONE');define ('INS_CHAMPS_FAX', 'U_FAX');define ('INS_CHAMPS_STRUCTURE', 'U_TITLE');define ('INS_CHAMPS_DATE', 'U_DATE');define ('INS_CHAMPS_LETTRE', 'U_LETTRE');// Le champs qui indique si l'usager est inscrit à la lettre d'inscriptiondefine ('INS_CHAMPS_DPT', 'U_FRENCH_DPT');define ('PROJET_DPT', 'carto_DEPARTEMENT');// Nom de la table départementdefine ('INS_TABLE_PAYS', 'carto_PAYS');// Nom de la table paysdefine ('INS_CHAMPS_ID_PAYS', 'CP_ID_Pays');define ('INS_CHAMPS_LABEL_PAYS', 'CP_Intitule_pays');define ('INS_CHAMPS_PAYS_LG', 'CP_Langue_intitule');// Langue de l'intitule du pays/**//==================================== PARAMETRAGE =================================* Pour régler certaines fonctionnalité de l'application//==================================================================================*/// Indique le type de cryptage du mot de passe à appliquer (doit être identique à PEAR_AUTH)define ('INS_MDP_CRYPTYPE', 'md5');// Choix : md5 seulementdefine ('INS_MAIL_ADMIN_APRES_INSCRIPTION', 'Accueil Tela Botanica <accueil@tela-botanica.org>');define ('INS_MAIL_ADMIN_APRES_INSCRIPTION_SUJET', '[Tela Botanica] Inscription');define ('INS_UTILISE_LISTE', true);// Mettre à false si pas de liste d'actudefine ('INS_MAIL_INSCRIPTION_LISTE', 'actu-subscribe@tela-botanica.org');define ('INS_MAIL_DESINSCRIPTION_LISTE', 'actu-unsubscribe@tela-botanica.org');// Liste des personne recevant le mail après inscription$GLOBALS['mail_admin'] = array ('Accueil <accueil@tela-botanica.org>','Daniel MATHIEU <dmathieu@tela-botanica.org>','Jean-Pascal MILCENT <jpm@tela-botanica.org>');define ('INS_UTILISE_SPIP', 1);if (INS_UTILISE_SPIP) {define ('INS_BDD_SPIP', 'tela_prod_spip_actu');}/**//==================================== PARAMETRAGE =================================* Pour gérer la réécriture d'url de l'inscription* Cela nécessite une ligne dans le fichier .htaccess, par exemple* RewriteRule ^ins([0-9a-z]*)$ papyrus.php?menu=22&action=ajouter&id=$1 [L]* Cela sert à racourcir l'URL de confirmation d'inscription//==================================================================================*/define ('INS_UTILISE_REECRITURE_URL', 1);// mettre à 1 si on souhaite utiliser la réécritureif (INS_UTILISE_REECRITURE_URL) {define ('INS_URL_PREFIXE', '_ins_');// Indique le préfixe de l'url http://www.mondomaine.org/prefix____}define ('INS_UTILISE_STAT', true);define ('INS_TABLE_STATISTIQUE', 'ins_STATS') ;define ('INS_STATS_CHAMPS_DATE', 'IS_DATE') ;define ('INS_STATS_CHAMPS_ACTION', 'IS_ACTION') ;/* +--Fin du code ----------------------------------------------------------------------------------------+** $Log: ins_config.inc.php,v $* Revision 1.3 2005/05/13 13:49:15 alex* ajout de la réécriture d'url et des statistiques** Revision 1.2 2005/03/21 16:50:31 alex* mille et une corrction** Revision 1.1 2005/03/04 10:39:41 tam* installation** Revision 1.1 2004/07/06 15:42:17 alex* en cours** Revision 1.4 2004/07/06 15:31:33 alex* en cours** Revision 1.3 2004/06/30 10:00:53 alex* ajout de champs pour gérer les pays** Revision 1.2 2004/06/18 09:20:54 alex* version initiale*** +-- Fin du code ----------------------------------------------------------------------------------------+*/?>