Subversion Repositories Sites.gentiana.org

Rev

Rev 44 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 44 Rev 63
Line 54... Line 54...
54
/**
54
/**
55
//==================================== CONSTANTES ==================================
55
//==================================== CONSTANTES ==================================
56
* Constantes des noms de tables et de champs dans l'annuaire
56
* Constantes des noms de tables et de champs dans l'annuaire
57
//==================================================================================
57
//==================================================================================
58
*/
58
*/
59
define ('INS_ANNUAIRE', 'annuaire') ;
59
define('INS_ANNUAIRE', 'annuaire') ;
60
define ('INS_CHAMPS_ID', 'a_id') ;
60
define ('INS_CHAMPS_ID', 'a_id') ;
61
define ('INS_CHAMPS_MAIL', 'a_mail');// Nom du champs mail
61
define ('INS_CHAMPS_MAIL', 'a_mail');// Nom du champs mail
62
define ('INS_CHAMPS_LOGIN', 'a_nom_wikini') ;
62
define ('INS_CHAMPS_LOGIN', 'a_nom_wikini') ;
63
define ('INS_CHAMPS_NOM', 'a_nom') ;
63
define ('INS_CHAMPS_NOM', 'a_nom') ;
64
define ('INS_CHAMPS_PRENOM', 'a_prenom') ;
64
define ('INS_CHAMPS_PRENOM', 'a_prenom') ;
65
define ('INS_CHAMPS_PASSE', 'a_mot_de_passe') ;
65
define ('INS_CHAMPS_PASSE', 'a_mot_de_passe') ;
66
define ('INS_CHAMPS_PAYS', 'a_ce_pays') ;
66
define ('INS_CHAMPS_PAYS', 'a_ce_pays') ;
-
 
67
define ('PROJET_PRENOM', 'a_prenom') ;             // Nom du champs prénom
-
 
68
define ('PROJET_DPT', 'carto_DEPARTEMENT') ;       // Nom de la table département
-
 
69
define ('INS_TABLE_PAYS', 'carto_PAYS') ;          // Nom de la table pays
-
 
70
define ('INS_CHAMPS_ID_PAYS', 'CP_ID_Pays') ;
-
 
71
define ('INS_CHAMPS_LABEL_PAYS', 'CP_Intitule_pays') ;
-
 
72
define ('INS_CHAMPS_PAYS_LG', 'CP_Langue_intitule') ;// Langue de l'intitule du pays
67
define ('INS_CHAMPS_CODE_POSTAL', 'a_code_postal') ;
73
define ('INS_CHAMPS_CODE_POSTAL', 'a_code_postal') ;
68
define ('INS_CHAMPS_VILLE', 'a_ville') ;
74
define ('INS_CHAMPS_VILLE', 'a_ville') ;
69
define ('INS_CHAMPS_ADRESSE_1', 'a_adresse1') ;
75
define ('INS_CHAMPS_ADRESSE_1', 'a_adresse1') ;
70
define ('INS_CHAMPS_ADRESSE_2', 'a_adresse2') ;
76
define ('INS_CHAMPS_ADRESSE_2', 'a_adresse2') ;
71
define ('INS_CHAMPS_REGION', 'a_region') ;
77
define ('INS_CHAMPS_REGION', 'a_region') ;
Line 75... Line 81...
75
define ('INS_CHAMPS_FAX', 'a_fax') ;
81
define ('INS_CHAMPS_FAX', 'a_fax') ;
76
define ('INS_CHAMPS_STRUCTURE', 'a_structure') ;
82
define ('INS_CHAMPS_STRUCTURE', 'a_structure') ;
77
define ('INS_CHAMPS_DATE', 'a_date_inscription') ;
83
define ('INS_CHAMPS_DATE', 'a_date_inscription') ;
78
define ('INS_CHAMPS_LETTRE', 'a_lettre') ;  // Le champs qui indique si l'usager est inscrit à la lettre d'inscription
84
define ('INS_CHAMPS_LETTRE', 'a_lettre') ;  // Le champs qui indique si l'usager est inscrit à la lettre d'inscription
Line 79... Line -...
79
 
-
 
80
define ('PROJET_PRENOM', 'a_prenom') ;             // Nom du champs prénom
-
 
81
define ('PROJET_DPT', 'carto_DEPARTEMENT') ;       // Nom de la table département
-
 
82
define ('INS_TABLE_PAYS', 'carto_PAYS') ;          // Nom de la table pays
-
 
83
define ('INS_CHAMPS_ID_PAYS', 'CP_ID_Pays') ;
-
 
84
define ('INS_CHAMPS_LABEL_PAYS', 'CP_Intitule_pays') ;
-
 
85
define ('INS_CHAMPS_PAYS_LG', 'CP_Langue_intitule') ;// Langue de l'intitule du pays
-
 
86
 
85
 
87
/**
86
/**
88
//==================================== PARAMETRAGE =================================
87
//==================================== PARAMETRAGE =================================
89
* Pour régler certaines fonctionnalité de l'application
88
* Pour régler certaines fonctionnalité de l'application
90
//==================================================================================
89
//==================================================================================
91
*/
90
*/
92
// Indique le type de cryptage du mot de passe à appliquer (doit être identique à PEAR_AUTH)
91
// Indique le type de cryptage du mot de passe à appliquer (doit être identique à PEAR_AUTH)
Line 93... Line 92...
93
define ('INS_MDP_CRYPTYPE', 'md5');// Choix : md5 seulement
92
define ('INS_MDP_CRYPTYPE', 'md5');// Choix : md5 seulement
94
 
93
 
Line 95... Line 94...
95
define ('INS_MAIL_ADMIN_APRES_INSCRIPTION', 'Association Gentiana <accueil@gentiana.org>') ;
94
define ('INS_MAIL_ADMIN_APRES_INSCRIPTION', 'Association Gentiana <gentiana@gentiana.org>') ;
96
define ('INS_MAIL_ADMIN_APRES_INSCRIPTION_SUJET', '[Gentiana] Inscription') ;
95
define ('INS_MAIL_ADMIN_APRES_INSCRIPTION_SUJET', '[Gentiana] Inscription') ;
97
 
96