Subversion Repositories Applications.papyrus

Rev

Rev 805 | 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
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
8
// | This library is free software; you can redistribute it and/or                                        |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
10
// | License as published by the Free Software Foundation; either                                         |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
12
// |                                                                                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
16
// | Lesser General Public License for more details.                                                      |
17
// |                                                                                                      |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
19
// | License along with this library; if not, write to the Free Software                                  |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
810 florian 22
// CVS : $Id: inscription.class.php,v 1.11 2006-04-10 14:01:36 florian Exp $
448 ddelon 23
/**
24
* Inscription
25
*
26
* Un module d'inscription, en général ce code est spécifique à
27
* un site web
28
*
29
*@package inscription
30
//Auteur original :
31
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
32
//Autres auteurs :
33
*@copyright     Tela-Botanica 2000-2004
810 florian 34
*@version       $Revision: 1.11 $ $Date: 2006-04-10 14:01:36 $
448 ddelon 35
// +------------------------------------------------------------------------------------------------------+
36
*/
37
 
38
// +------------------------------------------------------------------------------------------------------+
39
// |                                            ENTETE du PROGRAMME                                       |
40
// +------------------------------------------------------------------------------------------------------+
41
 
810 florian 42
//require_once 'HTML/QuickForm.php' ;
448 ddelon 43
 
44
   class ListeDePays extends PEAR{
45
 
46
    var $_db ;
47
    /** Constructeur
48
     *  Vérifie l'existance de la table gen_pays_traduction
49
     *
50
     *  @param  DB  Un objet PEAR::DB
51
     * @return
52
     */
53
 
54
    function ListeDePays(&$objetDB) {
55
        $this->_db = $objetDB ;
603 florian 56
        $requete = 'SHOW TABLES';
448 ddelon 57
        $resultat = $objetDB->query ($requete) ;
58
        if (DB::isError ($resultat)) {
59
            die ("Echec de la requete : $requete<br />".$resultat->getMessage()) ;
60
        }
61
        while ($ligne = $resultat->fetchRow()) {
62
            if ($ligne[0] == INS_TABLE_PAYS) {
63
                return ;
64
            }
65
        }
471 alexandre_ 66
        return $this->raiseError('La table gen_i18n_pays n\'est pas présente dans la base de donnée !') ;
448 ddelon 67
    }
68
 
69
    /** Renvoie la liste des pays traduite
70
     *
71
     *  @param  string  une chaine de type i18n ou une chaine code iso langue (fr_FR ou fr ou FR)
72
     * @return  un tableau contenant en clé, le code iso du pays, en majuscule et en valeur le nom du pays traduit
73
     */
74
    function getListePays($i18n) {
75
	    if (strlen($i18n) == 2) {
76
		    $i18n = strtolower($i18n)."-".strtoupper($i18n) ;
77
	    }
776 alexandre_ 78
	    $requete = 'select '.INS_CHAMPS_ID_PAYS.', '.INS_CHAMPS_LABEL_PAYS.' from '.INS_TABLE_PAYS
79
							.' where '.INS_CHAMPS_I18N_PAYS.'="'.$i18n.'"';
448 ddelon 80
	    $resultat = $this->_db->query($requete) ;
81
 
82
	    if (DB::isError($resultat)) {
83
		    die ("Echec de la requete : $requete<br />".$resultat->getMessage()) ;
84
	    }
85
	    if ($resultat->numRows() == 0) {
86
		    return $this->raiseError('Le code fourni ne correspond à aucun pays ou n\'est pas dans la table!') ;
87
	    }
88
	    $retour = array() ;
89
	    while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
90
		    $retour[$ligne[INS_CHAMPS_ID_PAYS]] = $ligne[INS_CHAMPS_LABEL_PAYS] ;
91
	    }
92
	    return $retour ;
93
    }
673 alexandre_ 94
 
95
    /** Renvoie le nom d'un pays traduit dans la langue passé en paramètre
96
     *
97
     *  @param  string  une chaine de type i18n ou une chaine code iso langue (fr_FR ou fr ou FR)
98
     * @return  un tableau contenant en clé, le code iso du pays, en majuscule et en valeur le nom du pays traduit
99
     */
100
    function getNomPays($codeIso, $i18n = INS_LANGUE_DEFAUT) {
101
	    if (strlen($i18n) == 2) {
102
		    $i18n = strtolower($i18n)."-".strtoupper($i18n) ;
103
	    }
104
	    $requete = 'select '.INS_CHAMPS_LABEL_PAYS.' from '.INS_TABLE_PAYS.
105
							' where '.INS_CHAMPS_I18N_PAYS.'="'.$i18n.'" and '.
106
							INS_CHAMPS_ID_PAYS.'="'.$codeIso.'"';
805 florian 107
		$resultat = $this->_db->query($requete) ;
673 alexandre_ 108
	    if (DB::isError($resultat)) {
109
		    die ("Echec de la requete : $requete<br />".$resultat->getMessage()) ;
110
	    }
111
	    if ($resultat->numRows() == 0) {
112
		    return $this->raiseError('Le code fourni ne correspond à aucun pays ou n\'est pas dans la table!') ;
113
	    }
114
	    $ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC) ;
115
	    return $ligne[INS_CHAMPS_LABEL_PAYS] ;
116
    }
448 ddelon 117
}
118
 
119
class HTML_formulaireInscription extends HTML_Quickform {
120
 
121
 
122
    /**
123
     *  Constructeur
124
     *
125
     * @param string formName Le nom du formulaire
126
     * @param string method Méthode post ou get
127
     * @param string action L'action du formulaire.
128
     * @param int target La cible.
129
     * @param Array attributes Les attributs HTML en plus.
130
     * @param bool trackSubmit ??
131
     * @return void
132
     * @access public
133
     */
134
 
135
    function HTML_formulaireInscription( $formName,  $method = "post",  $action,  $target = "_self",  $attributes,  $trackSubmit = false ) {
136
        HTML_Quickform::HTML_Quickform($formName, $method, $action, $target, $attributes, $trackSubmit) ;
137
    }
138
 
139
    /**
140
     *
141
     *
142
     * @return void
143
     * @access public
144
     */
145
    function construitFormulaire($url)
146
    {
147
        $squelette =& $this->defaultRenderer();
148
        $squelette->setFormTemplate("\n".'<form {attributes}>'."\n".'{content}'."\n".'</form>'."\n");
810 florian 149
        $squelette->setElementTemplate( '<p class="label_inscription">'."\n".
150
											'{label}<!-- BEGIN required --><span class="symbole_obligatoire">*</span><!-- END required -->'."\n".'&nbsp;:&nbsp;'."\n".
151
										'</p>'."\n".
152
										'<p class="input_inscription">'."\n".
153
											'{element}'."\n".
154
										'</p>'."\n");
155
        $squelette->setRequiredNoteTemplate("\n".'<p class="inscription_note_obligatoire">'."\n".'<span class="symbole_obligatoire">*</span> : {requiredNote}'."\n".'</p>'."\n");
156
        $squelette->setElementTemplate( '<p class="liste_inscription" id="case_inscription_lettre">{label}&nbsp;{element}</p>'."\n", 'lettre');
157
        $squelette->setElementTemplate( '<p class="liste_inscription" id="case_apparaitre_carto">{label}&nbsp;{element}</p>'."\n", 'visible');
158
        $squelette->setElementTemplate( '<p style="clear:both;" class="inscription_bouton" id="bouton_annuler">{label}{element}</p>'."\n", 'annuler');
159
        $squelette->setElementTemplate( '<p class="inscription_bouton" id="bouton_valider">{label}{element}</p>'."\n", 'valider');
612 florian 160
        //Traduction de champs requis
633 florian 161
		$this->setRequiredNote(INS_CHAMPS_REQUIS) ;
162
		$this->setJsWarnings(INS_ERREUR_SAISIE,INS_VEUILLEZ_CORRIGER);
603 florian 163
        $debut = '<h2>'.INS_AJOUT_MEMBRE.'</h2>'."\n";
164
        $this->addElement('html', $debut);
448 ddelon 165
        $this->addElement('text', 'email', INS_EMAIL) ;
166
        $this->addRule('email', INS_EMAIL_REQUIS, 'required','', 'client') ;
167
        $this->addRule('email', INS_MAIL_INCORRECT, 'email', '', 'client') ;
168
        $this->registerRule('doublonmail', 'callback', 'verif_doublonMail');
169
        $this->addRule('email', INS_MAIL_DOUBLE, 'doublonmail', true);
471 alexandre_ 170
        $this->addElement('password', 'mot_de_passe', INS_MOT_DE_PASSE, array('size' => '10')) ;
171
        $this->addElement('password', 'mot_de_passe_repete', INS_REPETE_MOT_DE_PASSE, array('size' => '10')) ;
448 ddelon 172
        $this->addRule('mot_de_passe', INS_MOT_DE_PASSE_REQUIS, 'required', '', 'client') ;
173
        $this->addRule('mot_de_passe_repete', INS_MOT_DE_PASSE_REQUIS, 'required', '', 'client') ;
174
        $this->addRule(array ('mot_de_passe', 'mot_de_passe_repete'), INS_MOTS_DE_PASSE_DIFFERENTS, 'compare', '', 'client') ;
175
        $this->addElement('text', 'nom', INS_NOM) ;
603 florian 176
        $this->addRule('nom', INS_NOM_REQUIS, 'required', '', 'client') ;
177
        $this->addElement('text', 'prenom', INS_PRENOM) ;
178
        $this->addRule('prenom', INS_PRENOM_REQUIS, 'required', '', 'client') ;
448 ddelon 179
        $this->addElement('text', 'adresse_1', INS_ADRESSE_1) ;
180
        $this->addElement('text', 'adresse_2', INS_ADRESSE_2) ;
181
        $this->addElement('text', 'cp', INS_CODE_POSTAL) ;
182
        $this->addRule('cp', INS_CODE_POSTAL_REQUIS, 'required', '', 'client') ;
603 florian 183
        $this->addElement('text', 'ville', INS_VILLE) ;
184
        // L'élément pays est construit à partir du tableau liste_pays
185
        $liste_pays = new ListeDePays($GLOBALS['ins_db']) ;
186
        $this->addElement('select', 'pays', INS_PAYS, $liste_pays->getListePays(INS_LANGUE_DEFAUT)) ;
187
        $this->addElement('text', 'telephone', INS_TELEPHONE, array('size' => '12')) ;
188
        $this->addElement('text', 'fax', INS_FAX, array('size' => '12')) ;
189
        $this->addElement('text', 'site', INS_SITE_INTERNET) ;
190
        if (INS_CHAMPS_LETTRE != '') $this->addElement('checkbox', 'lettre',INS_LETTRE, '<br />') ;
191
        $this->addElement('checkbox', 'visible',INS_VISIBLE, '<br />') ;
192
        $this->addElement('hidden', 'est_structure', 0) ;
448 ddelon 193
        // on fait un groupe avec les boutons pour les mettres sur la même ligne
603 florian 194
        $this->addElement('button', 'annuler', INS_ANNULER, array ("onclick" => "javascript:document.location.href='".$url."'"));
805 florian 195
        $this->addElement('submit', 'valider', INS_VALIDER);
448 ddelon 196
    } // end of member function construitFormulaire
197
 
198
    /** Modifie le formulaire pour l'adapter au cas des structures
199
     *
200
     *
201
     * @return void
202
     * @access public
203
     */
204
    function formulaireStructure()
205
    {
206
        $this->removeElement('nom', false) ;
603 florian 207
        $this->removeElement('prenom') ;
448 ddelon 208
        $this->removeElement('email', false) ;
209
        $mail = & HTML_QuickForm::createElement('text', 'email', INS_MAIL_STRUCTURE) ;
210
        $this->insertElementBefore($mail, 'mot_de_passe') ;
603 florian 211
        $nom_structure = & HTML_QuickForm::createElement('text', 'nom', INS_NOM_STRUCTURE) ;
212
        $this->insertElementBefore($nom_structure, 'email') ;
213
        $this->addRule('nom', INS_NOM_REQUIS, 'required', '', 'client') ;
214
        $sigle_structure = & HTML_QuickForm::createElement('text', 'sigle_structure', INS_SIGLE_DE_LA_STRUCTURE) ;
215
        $this->insertElementBefore($sigle_structure, 'email') ;
448 ddelon 216
        $this->addRule('sigle_structure', INS_SIGLE_REQUIS, 'required', '', 'client') ;
603 florian 217
        $num_agrement = & HTML_QuickForm::createElement('text', 'num_agrement', INS_NUM_AGREMENT) ;
218
        $this->insertElementBefore($num_agrement, 'email') ;
219
        $this->removeElement('site', false) ;
448 ddelon 220
        $site_structure = & HTML_QuickForm::createElement('text', 'site', INS_SITE_STRUCTURE) ;
221
        $this->insertElementBefore($site_structure, 'lettre') ;
222
        $this->removeElement('est_structure', false) ;
603 florian 223
        $this->addElement('hidden', 'est_structure', 1) ;
224
        $this->addElement('hidden', 'form_structure', 1) ;
448 ddelon 225
    }
226
    /**
227
     *
228
     *
229
     * @return string
230
     * @access public
231
     */
232
    function toHTML( )
233
    {
234
        $res = HTML_QuickForm::toHTML() ;
235
        return $res ;
236
    } // end of member function toHTML
237
}
238
 
239
?>