Subversion Repositories Applications.papyrus

Rev

Rev 448 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
448 ddelon 1
<?php
2
 
3
// +--------------------------------------------------------------------------------+
4
// | annuaire_moteur_config.php 				                          						|
5
// +--------------------------------------------------------------------------------+
6
// | Copyright (c) 2000 - 2003 Tela Botanica 					   							        	|
7
// +--------------------------------------------------------------------------------+
8
// | Fichier de configuration de annuaire_moteur.php            |
9
// +--------------------------------------------------------------------------------+
10
// | Auteur : Alexandre Granier <alexandre@tela-botanica.org> 		  		        |
11
// +--------------------------------------------------------------------------------+
12
//
1081 florian 13
// $Id: annuaire_backoffice.config.inc.php,v 1.2 2006-12-01 13:23:16 florian Exp $
448 ddelon 14
 
15
/**
16
//==================================== CONSTANTES ==================================
1081 florian 17
* Constantes des noms de tables et de champs dans l'annuaire admin papyrus
448 ddelon 18
//==================================================================================
19
*/
20
 
1081 florian 21
/** Nom de la table Annuaire */
22
define ('INS_ANNUAIRE', 'gen_annuaire');
23
/** Champs identifiant */
24
define ('INS_CHAMPS_ID', 'ga_id_administrateur');
25
/** Champs adresse mail */
26
define ('INS_CHAMPS_MAIL', 'ga_mail');
27
/** Champs nom */
28
define ('INS_CHAMPS_NOM', 'ga_nom');
29
/** Champs prénom */
30
define ('INS_CHAMPS_PRENOM', 'ga_prenom');
31
/** Champs mot de passe */
32
define ('INS_CHAMPS_PASSE', 'ga_mot_de_passe');
448 ddelon 33
?>