Line 17... |
Line 17... |
17 |
// | |
|
17 |
// | |
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
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 |
|
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 |
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
22 |
// CVS : $Id: inscription.class.php,v 1.20 2007-05-25 13:54:23 alexandre_tb Exp $
|
22 |
// CVS : $Id: inscription.class.php,v 1.21 2007-06-01 13:45:46 alexandre_tb Exp $
|
23 |
/**
|
23 |
/**
|
24 |
* Inscription
|
24 |
* Inscription
|
25 |
*
|
25 |
*
|
26 |
* Un module d'inscription, en général ce code est spécifique à
|
26 |
* Un module d'inscription, en general ce code est specifique a
|
27 |
* un site web
|
27 |
* un site web
|
28 |
*
|
28 |
*
|
29 |
*@package inscription
|
29 |
*@package inscription
|
30 |
//Auteur original :
|
30 |
//Auteur original :
|
31 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
31 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
32 |
//Autres auteurs :
|
32 |
//Autres auteurs :
|
33 |
*@copyright Tela-Botanica 2000-2004
|
33 |
*@copyright Tela-Botanica 2000-2004
|
34 |
*@version $Revision: 1.20 $ $Date: 2007-05-25 13:54:23 $
|
34 |
*@version $Revision: 1.21 $ $Date: 2007-06-01 13:45:46 $
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
36 |
*/
|
36 |
*/
|
Line 37... |
Line 37... |
37 |
|
37 |
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
Line 43... |
Line 43... |
43 |
|
43 |
|
Line 44... |
Line 44... |
44 |
class ListeDePays extends PEAR{
|
44 |
class ListeDePays extends PEAR{
|
45 |
|
45 |
|
46 |
var $_db ;
|
46 |
var $_db ;
|
47 |
/** Constructeur
|
47 |
/** Constructeur
|
48 |
* Vérifie l'existance de la table gen_pays_traduction
|
48 |
* Verifie l'existance de la table gen_pays_traduction
|
49 |
*
|
49 |
*
|
50 |
* @param DB Un objet PEAR::DB
|
50 |
* @param DB Un objet PEAR::DB
|
Line 61... |
Line 61... |
61 |
while ($ligne = $resultat->fetchRow()) {
|
61 |
while ($ligne = $resultat->fetchRow()) {
|
62 |
if ($ligne[0] == INS_TABLE_PAYS) {
|
62 |
if ($ligne[0] == INS_TABLE_PAYS) {
|
63 |
return ;
|
63 |
return ;
|
64 |
}
|
64 |
}
|
65 |
}
|
65 |
}
|
66 |
return $this->raiseError('La table gen_i18n_pays n\'est pas présente dans la base de donnée !') ;
|
66 |
return $this->raiseError('La table gen_i18n_pays n\'est pas presente dans la base de donnee !') ;
|
67 |
}
|
67 |
}
|
Line 68... |
Line 68... |
68 |
|
68 |
|
69 |
/** Renvoie la liste des pays traduite
|
69 |
/** Renvoie la liste des pays traduite
|
70 |
*
|
70 |
*
|
71 |
* @param string une chaine de type i18n ou une chaine code iso langue (fr_FR ou fr ou FR)
|
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
|
72 |
* @return un tableau contenant en cle, le code iso du pays, en majuscule et en valeur le nom du pays traduit
|
73 |
*/
|
73 |
*/
|
74 |
function getListePays($i18n) {
|
74 |
function getListePays($i18n) {
|
75 |
if (strlen($i18n) == 2) {
|
75 |
if (strlen($i18n) == 2) {
|
76 |
$i18n = strtolower($i18n)."-".strtoupper($i18n) ;
|
76 |
$i18n = strtolower($i18n)."-".strtoupper($i18n) ;
|
Line 81... |
Line 81... |
81 |
|
81 |
|
82 |
if (DB::isError($resultat)) {
|
82 |
if (DB::isError($resultat)) {
|
83 |
die ("Echec de la requete : $requete<br />".$resultat->getMessage()) ;
|
83 |
die ("Echec de la requete : $requete<br />".$resultat->getMessage()) ;
|
84 |
}
|
84 |
}
|
85 |
if ($resultat->numRows() == 0) {
|
85 |
if ($resultat->numRows() == 0) {
|
86 |
return $this->raiseError('Le code fourni ne correspond à aucun pays ou n\'est pas dans la table!') ;
|
86 |
return $this->raiseError('Le code fourni ne correspond a aucun pays ou n\'est pas dans la table!') ;
|
87 |
}
|
87 |
}
|
88 |
$retour = array() ;
|
88 |
$retour = array() ;
|
89 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
89 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
90 |
$retour[$ligne[INS_CHAMPS_ID_PAYS]] = $ligne[INS_CHAMPS_LABEL_PAYS] ;
|
90 |
$retour[$ligne[INS_CHAMPS_ID_PAYS]] = $ligne[INS_CHAMPS_LABEL_PAYS] ;
|
Line 93... |
Line 93... |
93 |
}
|
93 |
}
|
Line 94... |
Line 94... |
94 |
|
94 |
|
95 |
/** Renvoie le nom d'un pays traduit dans la langue passé en paramètre
|
95 |
/** Renvoie le nom d'un pays traduit dans la langue passé en paramètre
|
96 |
*
|
96 |
*
|
97 |
* @param string une chaine de type i18n ou une chaine code iso langue (fr_FR ou fr ou FR)
|
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
|
98 |
* @return un tableau contenant en cle, le code iso du pays, en majuscule et en valeur le nom du pays traduit
|
99 |
*/
|
99 |
*/
|
100 |
function getNomPays($codeIso, $i18n = INS_LANGUE_DEFAUT) {
|
100 |
function getNomPays($codeIso, $i18n = INS_LANGUE_DEFAUT) {
|
101 |
if (strlen($i18n) == 2) {
|
101 |
if (strlen($i18n) == 2) {
|
102 |
$i18n = strtolower($i18n)."-".strtoupper($i18n) ;
|
102 |
$i18n = strtolower($i18n)."-".strtoupper($i18n) ;
|
Line 108... |
Line 108... |
108 |
|
108 |
|
109 |
if (DB::isError($resultat)) {
|
109 |
if (DB::isError($resultat)) {
|
110 |
die ("Echec de la requete : $requete<br />".$resultat->getMessage()) ;
|
110 |
die ("Echec de la requete : $requete<br />".$resultat->getMessage()) ;
|
111 |
}
|
111 |
}
|
112 |
if ($resultat->numRows() == 0) {
|
112 |
if ($resultat->numRows() == 0) {
|
113 |
return $this->raiseError('Le code fourni ne correspond à aucun pays ou n\'est pas dans la table!') ;
|
113 |
return $this->raiseError('Le code fourni ne correspond a aucun pays ou n\'est pas dans la table!') ;
|
114 |
}
|
114 |
}
|
115 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC) ;
|
115 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC) ;
|
116 |
return $ligne[INS_CHAMPS_LABEL_PAYS] ;
|
116 |
return $ligne[INS_CHAMPS_LABEL_PAYS] ;
|
117 |
}
|
117 |
}
|
Line 122... |
Line 122... |
122 |
|
122 |
|
123 |
/**
|
123 |
/**
|
124 |
* Constructeur
|
124 |
* Constructeur
|
125 |
*
|
125 |
*
|
126 |
* @param string formName Le nom du formulaire
|
126 |
* @param string formName Le nom du formulaire
|
127 |
* @param string method Méthode post ou get
|
127 |
* @param string method Methode post ou get
|
128 |
* @param string action L'action du formulaire.
|
128 |
* @param string action L'action du formulaire.
|
129 |
* @param int target La cible.
|
129 |
* @param int target La cible.
|
130 |
* @param Array attributes Les attributs HTML en plus.
|
130 |
* @param Array attributes Les attributs HTML en plus.
|
131 |
* @param bool trackSubmit ??
|
131 |
* @param bool trackSubmit ??
|
Line 164... |
Line 164... |
164 |
$this->setRequiredNote(INS_CHAMPS_REQUIS) ;
|
164 |
$this->setRequiredNote(INS_CHAMPS_REQUIS) ;
|
165 |
$this->setJsWarnings(INS_ERREUR_SAISIE,INS_VEUILLEZ_CORRIGER);
|
165 |
$this->setJsWarnings(INS_ERREUR_SAISIE,INS_VEUILLEZ_CORRIGER);
|
Line 166... |
Line 166... |
166 |
|
166 |
|
167 |
$debut = '<h2>'.INS_AJOUT_MEMBRE.'</h2>'."\n";
|
167 |
$debut = '<h2>'.INS_AJOUT_MEMBRE.'</h2>'."\n";
|
- |
|
168 |
$this->addElement('html', $debut);
|
168 |
$this->addElement('html', $debut);
|
169 |
|
169 |
$this->addElement('text', 'email', INS_EMAIL) ;
|
170 |
$this->addElement('text', 'email', INS_EMAIL) ;
|
170 |
$this->addRule('email', INS_EMAIL_REQUIS, 'required','', 'client') ;
|
171 |
$this->addRule('email', INS_EMAIL_REQUIS, 'required','', 'client') ;
|
171 |
$this->addRule('email', INS_MAIL_INCORRECT, 'email', '', 'client') ;
|
172 |
$this->addRule('email', INS_MAIL_INCORRECT, 'email', '', 'client') ;
|
172 |
$this->addElement('password', 'mot_de_passe', INS_MOT_DE_PASSE, array('size' => '10')) ;
|
173 |
$this->addElement('password', 'mot_de_passe', INS_MOT_DE_PASSE, array('size' => '10')) ;
|
Line 181... |
Line 182... |
181 |
$this->addElement('text', 'adresse_1', INS_ADRESSE_1, array('id' => 'adresse_1')) ;
|
182 |
$this->addElement('text', 'adresse_1', INS_ADRESSE_1, array('id' => 'adresse_1')) ;
|
182 |
$this->addElement('text', 'adresse_2', INS_ADRESSE_2, array('id' => 'adresse_2')) ;
|
183 |
$this->addElement('text', 'adresse_2', INS_ADRESSE_2, array('id' => 'adresse_2')) ;
|
183 |
$this->addElement('text', 'cp', INS_CODE_POSTAL, array('id' => 'cp')) ;
|
184 |
$this->addElement('text', 'cp', INS_CODE_POSTAL, array('id' => 'cp')) ;
|
184 |
$this->addRule('cp', INS_CODE_POSTAL_REQUIS, 'required', '', 'client') ;
|
185 |
$this->addRule('cp', INS_CODE_POSTAL_REQUIS, 'required', '', 'client') ;
|
185 |
$this->addElement('text', 'ville', INS_VILLE, array('id' => 'ville')) ;
|
186 |
$this->addElement('text', 'ville', INS_VILLE, array('id' => 'ville')) ;
|
186 |
// L'élément pays est construit à partir du tableau liste_pays
|
187 |
// L'element pays est construit a partir du tableau liste_pays
|
187 |
$liste_pays = new ListeDePays($GLOBALS['ins_db']) ;
|
188 |
$liste_pays = new ListeDePays($GLOBALS['ins_db']) ;
|
188 |
$this->addElement('select', 'pays', INS_PAYS, $liste_pays->getListePays(INS_LANGUE_DEFAUT), array('id' => 'pays')) ;
|
189 |
$this->addElement('select', 'pays', INS_PAYS, $liste_pays->getListePays(INS_LANGUE_DEFAUT), array('id' => 'pays')) ;
|
189 |
$this->addElement('text', 'telephone', INS_TELEPHONE, array('size' => '12')) ;
|
190 |
$this->addElement('text', 'telephone', INS_TELEPHONE, array('size' => '12')) ;
|
190 |
$this->addElement('text', 'fax', INS_FAX, array('size' => '12')) ;
|
191 |
$this->addElement('text', 'fax', INS_FAX, array('size' => '12')) ;
|
191 |
$this->addElement('text', 'site', INS_SITE_INTERNET) ;
|
192 |
$this->addElement('text', 'site', INS_SITE_INTERNET) ;
|
Line 201... |
Line 202... |
201 |
$this->addElement('text', 'latitude', 'Latitude', array('id' => 'latitude', 'size' => 6, 'readonly' => 'readonly'));
|
202 |
$this->addElement('text', 'latitude', 'Latitude', array('id' => 'latitude', 'size' => 6, 'readonly' => 'readonly'));
|
202 |
$this->addElement('text', 'longitude', 'longitude', array('id' => 'longitude', 'size' => 6, 'readonly' => 'readonly'));
|
203 |
$this->addElement('text', 'longitude', 'longitude', array('id' => 'longitude', 'size' => 6, 'readonly' => 'readonly'));
|
203 |
$this->addElement('html', '<tr><td colspan="2" ><div id="map" style="width: 600px; height: 450px"></div></td></tr>');
|
204 |
$this->addElement('html', '<tr><td colspan="2" ><div id="map" style="width: 600px; height: 450px"></div></td></tr>');
|
204 |
}
|
205 |
}
|
205 |
$this->setDefaults($defauts);
|
206 |
$this->setDefaults($defauts);
|
206 |
// on fait un groupe avec les boutons pour les mettres sur la même ligne
|
207 |
// on fait un groupe avec les boutons pour les mettres sur la meme ligne
|
207 |
$boutons[] = &HTML_QuickForm::createElement('button', 'annuler', INS_ANNULER, array ("onclick" => "javascript:document.location.href='".$url."'",
|
208 |
$boutons[] = &HTML_QuickForm::createElement('button', 'annuler', INS_ANNULER, array ("onclick" => "javascript:document.location.href='".$url."'",
|
208 |
'id' => 'annuler', 'class' => 'bouton'));
|
209 |
'id' => 'annuler', 'class' => 'bouton'));
|
209 |
$boutons[] = &HTML_QuickForm::createElement('submit', 'valider', INS_VALIDER, array ('id' => 'valider', 'class' =>'bouton'));
|
210 |
$boutons[] = &HTML_QuickForm::createElement('submit', 'valider', INS_VALIDER, array ('id' => 'valider', 'class' =>'bouton'));
|
210 |
$this->addGroup($boutons, 'groupe_bouton', '', "\n");
|
211 |
$this->addGroup($boutons, 'groupe_bouton', '', "\n");
|
Line 333... |
Line 334... |
333 |
$site_structure = & HTML_QuickForm::createElement('text', 'site', INS_SITE_STRUCTURE) ;
|
334 |
$site_structure = & HTML_QuickForm::createElement('text', 'site', INS_SITE_STRUCTURE) ;
|
334 |
$this->insertElementBefore($site_structure, 'lettre') ;
|
335 |
$this->insertElementBefore($site_structure, 'lettre') ;
|
335 |
$this->removeElement('est_structure', false) ;
|
336 |
$this->removeElement('est_structure', false) ;
|
336 |
$this->addElement('hidden', 'est_structure', 1) ;
|
337 |
$this->addElement('hidden', 'est_structure', 1) ;
|
337 |
$this->addElement('hidden', 'form_structure', 1) ;
|
338 |
$this->addElement('hidden', 'form_structure', 1) ;
|
- |
|
339 |
|
338 |
}
|
340 |
}
|
339 |
/**
|
341 |
/**
|
340 |
*
|
342 |
*
|
341 |
*
|
343 |
*
|
342 |
* @return string
|
344 |
* @return string
|