Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 233 → Rev 234

/trunk/client/inscription/configuration/ins_config.inc.php
19,7 → 19,7
// | License along with this library; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: ins_config.inc.php,v 1.1 2004-12-15 13:32:38 alex Exp $
// CVS : $Id: ins_config.inc.php,v 1.2 2004-12-17 17:42:43 alex Exp $
/**
* Fichier de configuration de l'inscription
*
31,7 → 31,7
//Autres auteurs :
*@author Aucun
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.1 $ $Date: 2004-12-15 13:32:38 $
*@version $Revision: 1.2 $ $Date: 2004-12-17 17:42:43 $
// +------------------------------------------------------------------------------------------------------+
*/
 
84,6 → 84,13
define ("INS_CHAMPS_DATE_INSCRIPTION", "a_date_inscription") ;
define ("INS_CHAMPS_EST_STRUCTURE", "a_est_structure") ;
define ("INS_CHAMPS_SIGLE_STRUCTURE", "a_sigle_structure") ;
 
define ("INS_CHAMPS_TELEPHONE", "a_tel") ; // Laisser vide si non voulu
define ("INS_CHAMPS_FAX", "a_fax") ; // Laisser vide si non voulu
define ("INS_CHAMPS_STRUCTRE", "a_structure") ; // Laisser vide si non voulu
 
// Les champs suivant concernent la table contenant les pays et les codes iso
//
define ("PROJET_PRENOM", "U_SURNAME") ; // Nom du champs prénom
define ("PROJET_DPT", "gen_FRENCH_DPT") ; // Nom de la table département
define ("PROJET_PAYS", "gen_COUNTRY") ; // Nom de la table pays
96,7 → 103,7
//==================================================================================
*/
 
define ("INS_FORMULAIRE_STRUCTURE", 1) ; // Mettre à un si on propose un formulaire pour les structures
define ("INS_FORMULAIRE_STRUCTURE", 0) ; // Mettre à un si on propose un formulaire pour les structures
 
define ("INS_MAIL_ADMIN_APRES_INSCRIPTION", "alexandre@tela-botanica.org") ;
define ("INS_MAIL_ADMIN_APRES_INSCRIPTION_SUJET", "[I-Jumelage]Inscription") ;
119,6 → 126,9
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.1 2004/12/15 13:32:38 alex
* version initiale
*
* Revision 1.2 2004/09/01 16:38:17 alex
* modification de la configuration
*
/trunk/client/inscription/bibliotheque/inscription.fonct.php
19,8 → 19,8
// | License along with this library; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: inscription.fonct.php,v 1.1 2004-12-15 13:32:25 alex Exp $
// CVS : $Id: inscription.fonct.php,v 1.1 2004-12-15 13:32:25 alex Exp $
// CVS : $Id: inscription.fonct.php,v 1.2 2004-12-17 17:41:51 alex Exp $
// CVS : $Id: inscription.fonct.php,v 1.2 2004-12-17 17:41:51 alex Exp $
/**
* Fonctions du module inscription
*
32,8 → 32,8
//Autres auteurs :
*@author Aucun
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.1 $ $Date: 2004-12-15 13:32:25 $
*@version $Revision: 1.1 $ $Date: 2004-12-15 13:32:25 $
*@version $Revision: 1.2 $ $Date: 2004-12-17 17:41:51 $
*@version $Revision: 1.2 $ $Date: 2004-12-17 17:41:51 $
// +------------------------------------------------------------------------------------------------------+
*/
 
219,6 → 219,16
}
$req .= ",".INS_CHAMPS_DEPARTEMENT."='$n_dpt'";
}
// Le téléphone et le fax
if (INS_CHAMPS_TELEPHONE) {
$req .= ",".INS_CHAMPS_TELEPHONE.'="'.$valeur['telephone'].'"' ;
}
if (INS_CHAMPS_FAX) {
$req .= ",".INS_CHAMPS_FAX.'="'.$valeur['fax'].'"' ;
}
if (INS_CHAMPS_STRUCTURE) {
$req .= ",".INS_CHAMPS_STRUCTURE.'="'.$valeur['structure'].'"' ;
}
return $req ;
}
 
247,6 → 257,9
$valeurs_par_defaut['ville'] = $ligne[INS_CHAMPS_VILLE] ;
$valeurs_par_defaut['adresse_1'] = $ligne[INS_CHAMPS_ADRESSE_1] ;
$valeurs_par_defaut['adresse_2'] = $ligne[INS_CHAMPS_ADRESSE_2] ;
$valeurs_par_defaut['telephone'] = $ligne[INS_CHAMPS_TELEPHONE] ;
$valeurs_par_defaut['fax'] = $ligne[INS_CHAMPS_FAX] ;
$valeurs_par_defaut['structure'] = $ligne[INS_CHAMPS_STRUCTURE] ;
return $valeurs_par_defaut ;
}
273,6 → 286,9
if ($ligne[INS_CHAMPS_LOGIN] != "") $res .= "<div>".INS_NOM_WIKI." : ".$ligne[INS_CHAMPS_LOGIN]."</div>\n" ;
if ($ligne[INS_CHAMPS_ADRESSE_1] != "") $res .= "<div>".INS_ADRESSE." : ".$ligne[INS_CHAMPS_ADRESSE_1]."</div>\n" ;
if ($ligne[INS_CHAMPS_ADRESSE_2] != "") $res .= "<div> : ".$ligne[INS_CHAMPS_ADRESSE_2]."</div>\n" ;
if ($ligne[INS_CHAMPS_TELEPHONE] != "") $res .= "<div> : ".$ligne[INS_CHAMPS_TELEPHONE]."</div>\n" ;
if ($ligne[INS_CHAMPS_FAX] != "") $res .= "<div> : ".$ligne[INS_CHAMPS_FAX]."</div>\n" ;
if ($ligne[INS_CHAMPS_STRUCTURE] != "") $res .= "<div> : ".$ligne[INS_CHAMPS_STRUCTURE]."</div>\n" ;
return $res ;
}
465,6 → 481,9
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.1 2004/12/15 13:32:25 alex
* version initiale
*
* Revision 1.2 2004/09/01 16:37:52 alex
* modification du formulaire
*
/trunk/client/inscription/classes/inscription.class.php
19,7 → 19,7
// | License along with this library; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: inscription.class.php,v 1.1 2004-12-15 13:32:29 alex Exp $
// CVS : $Id: inscription.class.php,v 1.2 2004-12-17 17:41:57 alex Exp $
/**
* Inscription
*
31,7 → 31,7
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
//Autres auteurs :
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.1 $ $Date: 2004-12-15 13:32:29 $
*@version $Revision: 1.2 $ $Date: 2004-12-17 17:41:57 $
// +------------------------------------------------------------------------------------------------------+
*/
 
111,6 → 111,8
}
$this->addElement ('text', 'adresse_1', INS_ADRESSE) ;
$this->addElement ('text', 'adresse_2', INS_ADRESSE) ;
if (INS_CHAMPS_TELEPHONE) $this->addElement('text', 'telephone', INS_TELEPHONE) ;
if (INS_CHAMPS_FAX) $this->addElement('text', 'fax', INS_FAX) ;
$this->addElement ('text', 'region', INS_REGION) ;
$cp_ville[] = & HTML_QuickForm::createElement ('text', 'cp', INS_CODE_POSTAL) ;
122,6 → 124,8
 
$this->addElement ('select', 'pays', INS_PAYS, $liste_pays) ;
if (INS_CHAMPS_STRUCTURE) $this->addElement('text', 'structure', INS_STRUCTURE) ;
$this->addElement ('text', 'site', INS_SITE_INTERNET) ;
// on fait un groupe avec les boutons pour les mettres sur la même ligne
/trunk/client/inscription/langues/ins_langue_fr.inc.php
19,7 → 19,7
// | License along with this library; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: ins_langue_fr.inc.php,v 1.1 2004-12-15 13:32:43 alex Exp $
// CVS : $Id: ins_langue_fr.inc.php,v 1.2 2004-12-17 17:41:45 alex Exp $
/**
* Fichier de traduction en français de l'application inscription
*
31,7 → 31,7
//Autres auteurs :
*@author Aucun
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.1 $ $Date: 2004-12-15 13:32:43 $
*@version $Revision: 1.2 $ $Date: 2004-12-17 17:41:45 $
// +------------------------------------------------------------------------------------------------------+
*/
 
71,6 → 71,10
define ("INS_MESSAGE_BIENVENU", "Vous &ecirc;tes inscrit au r&eacute;seau") ;
define ("INS_FICHE_PERSONNELLE", "Fiche personnelle") ;
define ("INS_DECONNEXION", 'D&eacute;connexion') ;
define ("INS_TELEPHONE", "T&eacute;l&eacute;phone") ;
define ("INS_FAX", "Fax") ;
define ("INS_STRUCTURE", "Structure") ;
 
define ("INS_INSCRIPTION", 'Inscription individuelle') ;
define ("INS_TEXTE_PERDU", "Si vous avez perdu votre mot de passe, indiquer ".
"votre adresse email dans le champs login ci-dessus et cliquez sur \"Valider\"") ;
123,6 → 127,9
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.1 2004/12/15 13:32:43 alex
* version initiale
*
* Revision 1.2 2004/09/01 16:38:44 alex
* modification du nom du package
*