231 |
alex |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
// +----------------------------------------------------------------------------+
|
|
|
4 |
// |car_config.inc.php |
|
|
|
5 |
// +----------------------------------------------------------------------------+
|
|
|
6 |
// | Copyright (c) 2004 Tela Botanica |
|
|
|
7 |
// +----------------------------------------------------------------------------+
|
|
|
8 |
// | Le module d'inscription amélioré, configuration |
|
|
|
9 |
// +----------------------------------------------------------------------------+
|
|
|
10 |
// | Auteur : Alexandre Granier <alexandre@tela-botanica.org> |
|
|
|
11 |
// +----------------------------------------------------------------------------+
|
|
|
12 |
//
|
|
|
13 |
// $Id: car_config.inc.php,v 1.1 2004-12-15 13:30:38 alex Exp $
|
|
|
14 |
|
|
|
15 |
|
|
|
16 |
|
|
|
17 |
|
|
|
18 |
/**
|
|
|
19 |
//=========================DEFINITION DE VARIABLES =================================
|
|
|
20 |
* Définition des variables globales
|
|
|
21 |
//==================================================================================
|
|
|
22 |
*/
|
|
|
23 |
|
|
|
24 |
$GLOBALS['car_auth'] = &$_GEN_commun['pear_auth'] ;
|
|
|
25 |
$GLOBALS['car_db'] = &$_GEN_commun['pear_db'] ;
|
|
|
26 |
|
|
|
27 |
/**
|
|
|
28 |
//==================================== LES URLS ==================================
|
|
|
29 |
* Constantes liées à l'utilisation des url
|
|
|
30 |
//==================================================================================
|
|
|
31 |
*/
|
|
|
32 |
define ("CAR_URL", $_GEN_commun['url']->getURL()) ;
|
|
|
33 |
|
|
|
34 |
/**
|
|
|
35 |
//==================================== LES CHEMINS =================================
|
|
|
36 |
* Constantes définissant les chemins d'accès aux différents fichiers inclus dans les
|
|
|
37 |
* applications.
|
|
|
38 |
//==================================================================================
|
|
|
39 |
*/
|
|
|
40 |
define("CAR_CHEMIN_APPLI",'client/cartographie') ;//le chemin vers l'application courrante
|
|
|
41 |
define("CAR_CHEMIN_LIBRAIRIE",'client/cartographie/bibliotheque/');//le chemin de la librairie de fichier php
|
|
|
42 |
|
|
|
43 |
/**
|
|
|
44 |
//==================================== CONSTANTES ==================================
|
|
|
45 |
* Constantes des noms de tables et de champs dans l'annuaire
|
|
|
46 |
//==================================================================================
|
|
|
47 |
*/
|
|
|
48 |
|
|
|
49 |
define ("CAR_ANNUAIRE", "annuaire") ;
|
|
|
50 |
define ("CAR_CHAMPS_NOM", "a_nom") ; // Nom du champs nom
|
|
|
51 |
define ("CAR_CHAMPS_MAIL", "a_mail") ; // Nom du champs mail
|
|
|
52 |
define ("CAR_CHAMPS_PRENOM", "a_prenom") ; // Nom du champs prénom
|
|
|
53 |
define ("CAR_CHAMPS_CE_PAYS", "a_pays") ;
|
|
|
54 |
define ("CAR_CHAMPS_DPT", " a_numero_dpt") ;
|
|
|
55 |
define ("CAR_CHAMPS_ID", "a_id") ;
|
|
|
56 |
define ("CAR_CHAMPS_DATE_INS", "a_date_inscription") ;
|
|
|
57 |
define ("CAR_CHAMPS_REGION", "a_region") ;
|
|
|
58 |
define ("CAR_CHAMPS_CODE_POSTAL", "a_code_postal") ;
|
|
|
59 |
define ("CAR_CHAMPS_VILLE", "a_ville") ;
|
|
|
60 |
|
|
|
61 |
define ("PROJET_DPT", "gen_FRENCH_DPT") ; // Nom de la table département
|
|
|
62 |
define ("PROJET_PAYS", "gen_COUNTRY") ; // Nom de la table pays
|
|
|
63 |
|
|
|
64 |
/**
|
|
|
65 |
//==================================== CONSTANTES ==================================
|
|
|
66 |
* Constantes
|
|
|
67 |
//==================================================================================
|
|
|
68 |
**/
|
|
|
69 |
define ("CAR_TEXTE_FIN_MAIL", "\n---------------------------------------------------------------------------\n".
|
|
|
70 |
"Ce message vous est envoyé par l'intermédiaire du site Internet\n".
|
|
|
71 |
"(http://www.outils-reseaux.org) Serveur de ressources pour les réseaux\n".
|
|
|
72 |
"auquel vous êtes inscrit. D'autres inscrits peuvent avoir reçu ce message.\n".
|
|
|
73 |
"Ne répondez que si vous êtes concerné, ou si vous avez des informations\n".
|
|
|
74 |
"utiles à transmettre au demandeur.\n".
|
|
|
75 |
"----------------------------------------------------------------------------") ;
|
|
|
76 |
define ("CAR_NO_DESTINATAIRE", "Veuillez cocher au moins un destinataire pour votre mail");
|
|
|
77 |
|
|
|
78 |
define ("CAR_MAIL_ADMIN", "carto@outils-reseaux.org") ; // L'email de l'administrateur de la carto pour envoyer un message en double
|
|
|
79 |
?>
|