* Copyright (C) 2001-2002 Jean-Louis Bergamo * Copyright (C) 2006-2007 Laurent Destailleur * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * $Id$ * $Source$ */ /** \file htdocs/public/adherents/new.php \ingroup adherent \brief formulaire exemple pour inscription publique d'un nouveau membre \version $Revision$ */ require("./pre.inc.php"); require_once(DOL_DOCUMENT_ROOT."/adherents/adherent.class.php"); require_once(DOL_DOCUMENT_ROOT."/adherents/adherent_type.class.php"); require_once(DOL_DOCUMENT_ROOT."/adherents/adherent_options.class.php"); $adho = new AdherentOptions($db); $errmsg=''; $num=0; $error=0; /* * Actions */ if ($_POST["action"] == 'add') { // test si le login existe deja $login=$_POST["login"]; if(!isset($_POST["login"]) || $_POST["login"]=''){ $error+=1; $errmsg .="Login $login vide. Veuillez en positionner un
\n"; } $sql = "SELECT login FROM ".MAIN_DB_PREFIX."adherent WHERE login='".$login."';"; $result = $db->query($sql); if ($result) { $num = $db->num_rows(); } if (!isset($_POST["nom"]) || !isset($_POST["prenom"]) || $_POST["prenom"]=='' || $_POST["nom"]==''){ $error+=1; $errmsg .="Nom et Prenom obligatoires
\n"; } if (!isset($_POST["email"]) || $_POST["email"] == '' || !ereg('@',$_POST["email"])){ $error+=1; $errmsg .="Adresse Email invalide
\n"; } if ($num !=0){ $error+=1; $errmsg .="Login ".$login." deja utilise. Veuillez en changer
\n"; } if (!isset($_POST["pass1"]) || !isset($_POST["pass2"]) || $_POST["pass1"] == '' || $_POST["pass2"] == '' || $_POST["pass1"]!=$_POST["pass2"]){ $error+=1; $errmsg .="Password invalide
\n"; } if (isset($_POST["naiss"]) && $_POST["naiss"] !=''){ if (!preg_match("/^\d\d\d\d-\d\d-\d\d$/",$_POST["naiss"])){ $error+=1; $errmsg .="Date de naissance invalide (Format AAAA-MM-JJ)
\n"; } } if (isset($public)){ $public=1; }else{ $public=0; } if (! $error) { // email a peu pres correct et le login n'existe pas $adh = new Adherent($db); $adh->statut = -1; $adh->public = $_POST["public"]; $adh->prenom = $_POST["prenom"]; $adh->nom = $_POST["nom"]; $adh->societe = $_POST["societe"]; $adh->adresse = $_POST["adresse"]; $adh->cp = $_POST["cp"]; $adh->ville = $_POST["ville"]; $adh->email = $_POST["email"]; $adh->login = $login; $adh->pass = $_POST["pass1"]; $adh->naiss = $_POST["naiss"]; $adh->photo = $_POST["photo"]; $adh->note = $_POST["note"]; $adh->pays = $_POST["pays"]; $adh->typeid = $_POST["type"]; $adh->note = $_POST["comment"]; $adh->morphy = $_POST["morphy"]; foreach($_POST as $key => $value){ if (ereg("^options_",$key)){ $adh->array_options[$key]=$_POST[$key]; } } $result=$adh->create($user->id); if ($result > 0) { if ($cotisation > 0) { $adh->cotisation(mktime(12, 0 , 0, $remonth, $reday, $reyear), $cotisation); } // Envoi d'un Email de confirmation au nouvel adherent $adh->send_an_email($email,$conf->adherent->email_new,$conf->adherent->email_new_subject); Header("Location: new.php?action=added"); exit; } } } // On vient de s'inscrire avec succes if (isset($_GET["action"]) && $_GET["action"] == 'added' && $conf->global->MEMBER_URL_REDIRECT_SUBSCRIPTION) { // Si conf->global->MEMBER_URL_REDIRECT_SBUSCRIPTION defini, faire redirect sur page. Header("Location: ".$conf->global->MEMBER_URL_REDIRECT_SUBSCRIPTION); exit; } llxHeaderVierge(); $html = new Form($db); print_titre("Nouvel adhérent"); /* ************************************************************************** */ /* */ /* Création d'une fiche */ /* */ /* ************************************************************************** */ $adht = new AdherentType($db); // fetch optionals attributes and labels $adho->fetch_optionals(); if (isset($_GET["action"]) && $_GET["action"] == 'added') { // Si on a pas été redirigé print '
'; print ''; print "\n"; print '
Nouvel Adhérent ajouté. En attente de validation
'; } if ($errmsg != '') { print '
'; print ''; print ''; print "\n"; // print "$errmsg\n"; print '
Erreur dans le formulaire
$errmsg
'; } if (defined("ADH_TEXT_NEW_ADH") && ADH_TEXT_NEW_ADH !='') { print ADH_TEXT_NEW_ADH; print "
\n"; } print '
\n"; print "
\n"; print ''; print ''; print '\n"; print ''; $morphys["phy"] = "Physique"; $morphys["mor"] = "Morale"; print "\n"; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; foreach($adho->attribute_label as $key=>$value){ print "\n"; } print ''; print "\n"; print "
'.$langs->trans("Type").''; $html->select_array("type", $adht->liste_array()); print "'.$langs->trans("Comments").' :
Personne\n"; $html->select_array("morphy", $morphys); print "
* * Prénom
* * Nom
Societe
Adresse'; print '
CP Ville
Pays
* * Email
* Login
* Password (a entrer 2 fois)
Date de naissance
Format AAAA-MM-JJ
* URL Photo
Profil public ?
$value
\n"; $db->close(); llxFooter("Dernière modification $Date$ révision $Revision$"); ?>