Line 1... |
Line 1... |
1 |
<?php
|
1 |
<?php
|
2 |
|
- |
|
3 |
// +----------------------------------------------------------------------------+
|
2 |
// +----------------------------------------------------------------------------+
|
4 |
// |car_config.inc.php |
|
3 |
// |car_config.inc.php |
|
5 |
// +----------------------------------------------------------------------------+
|
4 |
// +----------------------------------------------------------------------------+
|
6 |
// | Copyright (c) 2004 Tela Botanica |
|
5 |
// | Copyright (c) 2004 Tela Botanica |
|
7 |
// +----------------------------------------------------------------------------+
|
6 |
// +----------------------------------------------------------------------------+
|
Line 10... |
Line 9... |
10 |
// | Auteur : Alexandre Granier <alexandre@tela-botanica.org> |
|
9 |
// | Auteur : Alexandre Granier <alexandre@tela-botanica.org> |
|
11 |
// +----------------------------------------------------------------------------+
|
10 |
// +----------------------------------------------------------------------------+
|
12 |
//
|
11 |
//
|
13 |
// $Id: car_config.inc.php,v 1.1 2004/11/30 13:37:13 tam Exp $
|
12 |
// $Id: car_config.inc.php,v 1.1 2004/11/30 13:37:13 tam Exp $
|
Line 14... |
Line -... |
14 |
|
- |
|
15 |
|
- |
|
- |
|
13 |
|
- |
|
14 |
// Paramêtres indiquant que l'on est en français pourpermettre la mise en majuscule des caractères accentués
|
Line 16... |
Line 15... |
16 |
|
15 |
setlocale(LC_CTYPE, "fr_FR");
|
17 |
|
16 |
|
18 |
/**
|
17 |
/**
|
19 |
//=========================DEFINITION DE VARIABLES =================================
|
18 |
//=========================DEFINITION DE VARIABLES =================================
|
20 |
* Définition des variables globales
|
19 |
* Définition des variables globales
|
21 |
//==================================================================================
|
- |
|
22 |
*/
|
20 |
//==================================================================================
|
23 |
|
21 |
*/
|
- |
|
22 |
$GLOBALS['car_auth'] =& $_GEN_commun['pear_auth'] ;
|
Line 24... |
Line 23... |
24 |
$GLOBALS['car_auth'] = &$_GEN_commun['pear_auth'] ;
|
23 |
$GLOBALS['car_db'] =& $_GEN_commun['pear_db'] ;
|
25 |
$GLOBALS['car_db'] = &$_GEN_commun['pear_db'] ;
|
24 |
$GLOBALS['car_url'] = $_GEN_commun['url'];
|
26 |
|
25 |
|
27 |
/**
|
26 |
/**
|
Line 46... |
Line 45... |
46 |
/**
|
45 |
/**
|
47 |
//==================================== CONSTANTES ==================================
|
46 |
//==================================== CONSTANTES ==================================
|
48 |
* Constantes des noms de tables et de champs dans l'annuaire
|
47 |
* Constantes des noms de tables et de champs dans l'annuaire
|
49 |
//==================================================================================
|
48 |
//==================================================================================
|
50 |
*/
|
49 |
*/
|
51 |
|
- |
|
52 |
define ("CAR_ANNUAIRE", "annuaire_tela") ;
|
50 |
define ("CAR_ANNUAIRE", "annuaire_tela") ;
|
53 |
define ("CAR_CHAMPS_NOM", "U_NAME") ; // Nom du champs nom
|
51 |
define ("CAR_CHAMPS_NOM", "U_NAME") ; // Nom du champs nom
|
54 |
define ("CAR_CHAMPS_MAIL", "U_MAIL") ; // Nom du champs mail
|
52 |
define ("CAR_CHAMPS_MAIL", "U_MAIL") ; // Nom du champs mail
|
55 |
define ("CAR_CHAMPS_PRENOM", "U_SURNAME") ; // Nom du champs prénom
|
53 |
define ("CAR_CHAMPS_PRENOM", "U_SURNAME") ; // Nom du champs prénom
|
56 |
define ("CAR_CHAMPS_CE_PAYS", "U_COUNTRY") ;
|
54 |
define ("CAR_CHAMPS_CE_PAYS", "U_COUNTRY") ;
|