Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 170 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 170 Rev 173
1
<?php
1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */ 
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */ 
3
// +------------------------------------------------------------------------------------------------------+
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 5.0.3                                                                                    |
4
// | PHP version 5.0.3                                                                                    |
5
// +------------------------------------------------------------------------------------------------------+
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
7
// +------------------------------------------------------------------------------------------------------+
8
// | This file is part of eRibo.                                                                          |
8
// | This file is part of eRibo.                                                                          |
9
// |                                                                                                      |
9
// |                                                                                                      |
10
// | Foobar is free software; you can redistribute it and/or modify                                       |
10
// | Foobar is free software; you can redistribute it and/or modify                                       |
11
// | it under the terms of the GNU General Public License as published by                                 |
11
// | it under the terms of the GNU General Public License as published by                                 |
12
// | the Free Software Foundation; either version 2 of the License, or                                    |
12
// | the Free Software Foundation; either version 2 of the License, or                                    |
13
// | (at your option) any later version.                                                                  |
13
// | (at your option) any later version.                                                                  |
14
// |                                                                                                      |
14
// |                                                                                                      |
15
// | Foobar is distributed in the hope that it will be useful,                                            |
15
// | Foobar is distributed in the hope that it will be useful,                                            |
16
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
16
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
17
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                        |
17
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                        |
18
// | GNU General Public License for more details.                                                         |
18
// | GNU General Public License for more details.                                                         |
19
// |                                                                                                      |
19
// |                                                                                                      |
20
// | You should have received a copy of the GNU General Public License                                    |
20
// | You should have received a copy of the GNU General Public License                                    |
21
// | along with Foobar; if not, write to the Free Software                                                |
21
// | along with Foobar; if not, write to the Free Software                                                |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
23
// +------------------------------------------------------------------------------------------------------+
23
// +------------------------------------------------------------------------------------------------------+
24
// CVS : $Id: formulaire_taxonomique_xhtml.php,v 1.7 2005-06-09 18:09:52 jpm Exp $
24
// CVS : $Id: formulaire_taxonomique_xhtml.php,v 1.8 2005-06-30 15:25:07 jpm Exp $
25
/**
25
/**
26
* Vue affichant le formulaire de recherche taxonomique.
26
* Vue affichant le formulaire de recherche taxonomique.
27
*
27
*
28
* Permet de retourner le xhtml correspondant au formulaire de recherche taxonomique.
28
* Permet de retourner le xhtml correspondant au formulaire de recherche taxonomique.
29
*
29
*
30
*@package eFlore
30
*@package eFlore
31
*@subpackage Vues
31
*@subpackage Vues
32
//Auteur original :
32
//Auteur original :
33
*@author        Frédéric LEGENS <flegens@free.fr>
33
*@author        Frédéric LEGENS <flegens@free.fr>
34
//Autres auteurs :
34
//Autres auteurs :
35
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
35
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
36
*@copyright     Tela-Botanica 2000-2004
36
*@copyright     Tela-Botanica 2000-2004
37
*@version       $Revision: 1.7 $ $Date: 2005-06-09 18:09:52 $
37
*@version       $Revision: 1.8 $ $Date: 2005-06-30 15:25:07 $
38
// +------------------------------------------------------------------------------------------------------+
38
// +------------------------------------------------------------------------------------------------------+
39
*/
39
*/
40
 
40
 
41
// +------------------------------------------------------------------------------------------------------+
41
// +------------------------------------------------------------------------------------------------------+
42
// |                                            ENTETE du PROGRAMME                                       |
42
// |                                            ENTETE du PROGRAMME                                       |
43
// +------------------------------------------------------------------------------------------------------+
43
// +------------------------------------------------------------------------------------------------------+
44
require_once EFSE_CHEMIN_FONCTION.'eribo_encodage.fonct.php';
44
require_once EFSE_CHEMIN_FONCTION.'eribo_encodage.fonct.php';
45
$GLOBALS['alphabet'] = array();
45
$GLOBALS['alphabet'] = array();
46
 
46
 
47
// +------------------------------------------------------------------------------------------------------+
47
// +------------------------------------------------------------------------------------------------------+
48
// |                                            CLASSE de la VUE                                          |
48
// |                                            CLASSE de la VUE                                          |
49
// +------------------------------------------------------------------------------------------------------+
49
// +------------------------------------------------------------------------------------------------------+
50
class formulaire_taxonomique_xhtml implements iVue {
50
class formulaire_taxonomique_xhtml implements iVue {
51
    
51
    
52
    protected $leBlock;
52
    protected $leBlock;
53
    
53
    
54
    function __construct($unBlock)
54
    function __construct($unBlock)
55
    {
55
    {
56
        $this->leBlock = $unBlock;
56
        $this->leBlock = $unBlock;
57
    }
57
    }
58
    
58
    
59
    function serialiser()
59
    function serialiser()
60
    {
60
    {
61
        $retour = '<?xml version="1.0" encoding="iso-8859-15" ?>'."\n";
61
        $retour = '<?xml version="1.0" encoding="iso-8859-15" ?>'."\n";
62
        $retour .= '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "../../../commun/generique/dtd/xhtml1-strict.dtd">'."\n";
62
        $retour .= '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "../../../commun/generique/dtd/xhtml1-strict.dtd">'."\n";
63
        $retour .= '<html xmlns="http://w ww.w3.org/1999/xhtml" lang="fr" >'."\n";
63
        $retour .= '<html xmlns="http://w ww.w3.org/1999/xhtml" lang="fr" >'."\n";
64
        
64
        
65
        $retour .= '<head>'."\n";
65
        $retour .= '<head>'."\n";
66
        $retour .= '<!-- BEGIN entete -->'."\n";
66
        $retour .= '<!-- BEGIN entete -->'."\n";
67
        $retour .= '<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />'."\n";
67
        $retour .= '<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />'."\n";
68
        $retour .= '<meta http-equiv="Content-style-type" content="text/css" />'."\n";
68
        $retour .= '<meta http-equiv="Content-style-type" content="text/css" />'."\n";
69
        $retour .= '<meta http-equiv="Content-script-type" content="text/javascript />'."\n";
69
        $retour .= '<meta http-equiv="Content-script-type" content="text/javascript />'."\n";
70
        $retour .= '<meta http-equiv="Content-language" content="fr" />'."\n";
70
        $retour .= '<meta http-equiv="Content-language" content="fr" />'."\n";
71
        $retour .= '<title>Formulaire de recherche taxonomique</title>'."\n";
71
        $retour .= '<title>Formulaire de recherche taxonomique</title>'."\n";
72
        $retour .= '<!-- END entete -->'."\n";
72
        $retour .= '<!-- END entete -->'."\n";
73
        $retour .= '</head>'."\n";
73
        $retour .= '</head>'."\n";
74
        
74
        
75
        $retour .= '<body>'."\n";
75
        $retour .= '<body>'."\n";
76
        $retour .= '<!-- BEGIN corps -->'."\n";
76
        $retour .= '<!-- BEGIN corps -->'."\n";
77
        $retour .= '<h2>'.'Consultation par projet'.'</h2>'."\n";
77
        $retour .= '<h2>'.'Consultation taxonomique'.'</h2>'."\n";
78
        $retour .= '<form id="eflore_form_taxonomie" name="eflore_form_taxonomie" action="{UrlProjetTaxon}" method="post">'."\n";
78
        $retour .= '<form id="eflore_form_taxonomie" name="eflore_form_taxonomie" action="{UrlProjetTaxon}" method="post">'."\n";
79
        $retour .= '<fieldset>'."\n".'<legend>'.'Consultation par projet'.'</legend>'."\n";
79
        $retour .= '<fieldset>'."\n".'<legend>'.'Consultation taxonomique'.'</legend>'."\n";
80
        $retour .= '<ul>'."\n";
80
        $retour .= '<ul>'."\n";
81
        $retour .= '<li><label for="eflore_projet">'.'Projet : '.'</label>'."\n";
81
        $retour .= '<li><label for="eflore_projet">'.'Référenciel : '.'</label>'."\n";
82
        $retour .= '<select id="eflore_projet" name="eflore_projet">'."\n";
82
        $retour .= '<select id="eflore_projet" name="eflore_projet">'."\n";
83
        $retour .= $this->leBlock->afficherPattern('FORMULAIRE_TAXONOMIQUE>PROJET_VERSION_TOUS','afficherProjets', null, TRUE);
83
        $retour .= $this->leBlock->afficherPattern('FORMULAIRE_TAXONOMIQUE>PROJET_VERSION_TOUS','afficherProjets', null, TRUE);
84
        $retour .= '</select></li>'."\n";
84
        $retour .= '</select></li>'."\n";
85
        $retour .= '<li id="eflore_ordre_li"><label for="eflore_ordre">'.'afficher les taxons : '.'</label>'."\n";
-
 
86
        $retour .= '<select id="eflore_ordre" name="eflore_ordre">'."\n";
-
 
87
        $retour .= $this->leBlock->afficherPattern('FORMULAIRE_TAXONOMIQUE','afficherOrdre');
-
 
88
        $retour .= '</select></li>'."\n";
-
 
89
        $retour .= '<li id="eflore_rang_li"><label for="eflore_rang">'.'au rang : '.'</label>'."\n";
85
        $retour .= '<li id="eflore_rang_li"><label for="eflore_rang">'.'Rang : '.'</label>'."\n";
90
        $retour .= '<select id="eflore_rang" name="eflore_rang">'."\n";
86
        $retour .= '<select id="eflore_rang" name="eflore_rang">'."\n";
91
        $retour .= $this->leBlock->afficherPattern('FORMULAIRE_TAXONOMIQUE','afficherRang');
87
        $retour .= $this->leBlock->afficherPattern('FORMULAIRE_TAXONOMIQUE','afficherRang');
92
        $retour .= '</select></li>'."\n";
88
        $retour .= '</select></li>'."\n";
93
        $retour .= '<li><input id="eflore_taxonomie_submit" type="submit" value="'.'OK'.'" /></li>'."\n";
89
        $retour .= '<li><input id="eflore_taxonomie_submit" type="submit" value="'.'OK'.'" /></li>'."\n";
94
        $retour .= $this->leBlock->afficherPattern('FORMULAIRE_TAXONOMIQUE>TAXON_RECHERCHE','creerAlphabetTaxon');
90
        $retour .= $this->leBlock->afficherPattern('FORMULAIRE_TAXONOMIQUE>TAXON_RECHERCHE','creerAlphabetTaxon');
95
        $retour .= afficherAlphabetTaxon();
91
        $retour .= afficherAlphabetTaxon();
96
        $retour .= '</ul>'."\n";
92
        $retour .= '</ul>'."\n";
-
 
93
        $retour .= '<input id="eflore_ordre" name="eflore_ordre" type="hidden" value="ega" />'."\n";
97
        $retour .= '</fieldset>'."\n";
94
        $retour .= '</fieldset>'."\n";
98
        $retour .= '</form>'."\n";
95
        $retour .= '</form>'."\n";
99
        $retour .= '<!-- END corps -->'."\n";
96
        $retour .= '<!-- END corps -->'."\n";
100
        $retour .= '</body>'."\n";
97
        $retour .= '</body>'."\n";
101
        $retour .= '</html>'."\n";
98
        $retour .= '</html>'."\n";
102
        
99
        
103
        // Envoi au navigateur après encodage en entité des caractères posant problème
100
        // Envoi au navigateur après encodage en entité des caractères posant problème
104
        echo remplaceEntiteHTLM($retour);
101
        echo remplaceEntiteHTLM($retour);
105
    }
102
    }
106
}
103
}
107
 
104
 
108
// +------------------------------------------------------------------------------------------------------+
105
// +------------------------------------------------------------------------------------------------------+
109
// |                                            LISTE des FONCTIONS                                       |
106
// |                                            LISTE des FONCTIONS                                       |
110
// +------------------------------------------------------------------------------------------------------+
107
// +------------------------------------------------------------------------------------------------------+
111
function afficherProjets($donnees)
108
function afficherProjets($donnees)
112
{
109
{
113
    //$retour .= '<pre>'.print_r($donnees, true).'</pre>';
110
    //$retour .= '<pre>'.print_r($donnees, true).'</pre>';
114
    if ($donnees['PROJET_VERSION_TOUS']['eprv_id_version'] == $donnees['FORMULAIRE_TAXONOMIQUE']['nvp']) {
111
    if ($donnees['PROJET_VERSION_TOUS']['eprv_id_version'] == $donnees['FORMULAIRE_TAXONOMIQUE']['nvp']) {
115
        $retour .= '  <option value="'.$donnees['PROJET_VERSION_TOUS']['eprv_id_version'].'" selected="selected">';
112
        $retour .= '  <option value="'.$donnees['PROJET_VERSION_TOUS']['eprv_id_version'].'" selected="selected">';
116
    } else {
113
    } else {
117
        $retour .= '  <option value="'.$donnees['PROJET_VERSION_TOUS']['eprv_id_version'].'">';
114
        $retour .= '  <option value="'.$donnees['PROJET_VERSION_TOUS']['eprv_id_version'].'">';
118
    }
115
    }
119
    $retour .= $donnees['PROJET_VERSION_TOUS']['eprv_nom'].' - '.$donnees['PROJET_VERSION_TOUS']['epr_intitule_projet'];
116
    $retour .= $donnees['PROJET_VERSION_TOUS']['eprv_nom'].' ('.$donnees['PROJET_VERSION_TOUS']['eprv_code_version'].') - '.$donnees['PROJET_VERSION_TOUS']['epr_intitule_projet'];
120
    $retour .= '</option>'."\n";
117
    $retour .= '</option>'."\n";
121
    return $retour;
118
    return $retour;
122
}
119
}
123
 
120
 
124
function creerAlphabetTaxon($donnees)
121
function creerAlphabetTaxon($donnees)
125
{
122
{
126
    $chaine = '';
123
    $chaine = '';
127
    if (!empty($donnees['eni_intitule_nom'])) {
124
    if (!empty($donnees['eni_intitule_nom'])) {
128
        $chaine = $donnees['eni_intitule_nom'];
125
        $chaine = $donnees['eni_intitule_nom'];
129
    }
126
    }
130
    if (isset($chaine{0}) AND !isset($GLOBALS['alphabet'][$chaine{0}])) {
127
    if (isset($chaine{0}) AND !isset($GLOBALS['alphabet'][$chaine{0}])) {
131
        $GLOBALS['alphabet'][$chaine{0}] = $chaine{0};
128
        $GLOBALS['alphabet'][$chaine{0}] = $chaine{0};
132
    }
129
    }
133
}
130
}
134
 
131
 
135
function afficherAlphabetTaxon()
132
function afficherAlphabetTaxon()
136
{
133
{
137
    $retour = '';
134
    $retour = '';
138
    if (count($GLOBALS['alphabet']) != 0) {
135
    if (count($GLOBALS['alphabet']) != 0) {
139
        $retour .= '</p>'."\n";
136
        $retour .= '</p>'."\n";
140
        $retour .= '<p>'."\n";
137
        $retour .= '<p>'."\n";
141
        foreach ($GLOBALS['alphabet'] as $cle) {
138
        foreach ($GLOBALS['alphabet'] as $cle) {
142
            $retour .= '<input id="eflore_lettre" name="eflore_lettre" type="submit" value="'.ucfirst($cle).'" />'."\n";
139
            $retour .= '<input id="eflore_lettre" name="eflore_lettre" type="submit" value="'.ucfirst($cle).'" />'."\n";
143
        }
140
        }
144
        $retour .= '<input id="eflore_lettre" name="eflore_lettre" type="submit" value="'.'TOUS'.'" />'."\n";
141
        $retour .= '<input id="eflore_lettre" name="eflore_lettre" type="submit" value="'.'TOUS'.'" />'."\n";
145
    }
142
    }
146
    return $retour;
143
    return $retour;
147
}
144
}
148
 
-
 
-
 
145
// Fonction afficherOrdre($donnees) inutilisé en mode d'affichage par défaut
149
function afficherOrdre($donnees)
146
function afficherOrdre($donnees)
150
{
147
{
151
    $retour = '';
148
    $retour = '';
152
    $selected_sup = '';
149
    $selected_sup = '';
153
    $selected_ega = '';
150
    $selected_ega = '';
154
    $selected_inf = '';
151
    $selected_inf = '';
155
    $selected = 'selected="selected"';
152
    $selected = 'selected="selected"';
156
    switch ($donnees['od']) {
153
    switch ($donnees['od']) {
157
        case 'sup':
154
        case 'sup':
158
            $selected_sup = $selected;
155
            $selected_sup = $selected;
159
            break;
156
            break;
160
        case 'ega':
157
        case 'ega':
161
            $selected_ega = $selected;
158
            $selected_ega = $selected;
162
            break;
159
            break;
163
        case 'inf':
160
        case 'inf':
164
            $selected_inf = $selected;
161
            $selected_inf = $selected;
165
            break;
162
            break;
166
        default:
163
        default:
167
            $selected_ega = $selected;
164
            $selected_ega = $selected;
168
            break;
165
            break;
169
    }
166
    }
170
    $retour .= '<option value="sup" '.$selected_sup.'>'.'Supérieur'.'</option>'."\n";
167
    $retour .= '<option value="sup" '.$selected_sup.'>'.'Supérieur'.'</option>'."\n";
171
    $retour .= '<option value="ega" '.$selected_ega.'>'.'Égal'.'</option>'."\n";
168
    $retour .= '<option value="ega" '.$selected_ega.'>'.'Égal'.'</option>'."\n";
172
    $retour .= '<option value="inf" '.$selected_inf.'>'.'Inférieur'.'</option>'."\n";
169
    $retour .= '<option value="inf" '.$selected_inf.'>'.'Inférieur'.'</option>'."\n";
173
    return $retour;
170
    return $retour;
174
}
171
}
175
 
172
 
176
function afficherRang($donnees)
173
function afficherRang($donnees)
177
{
174
{
178
    $retour = '';
175
    $retour = '';
179
    $selected_120 = '';
176
    $selected_120 = '';
180
    $selected_160 = '';
177
    $selected_160 = '';
181
    $selected_250 = '';
178
    $selected_250 = '';
182
    $selected_280 = '';
179
    $selected_280 = '';
183
    $selected = 'selected="selected"';
180
    $selected = 'selected="selected"';
184
    switch ($donnees['rg']) {
181
    switch ($donnees['rg']) {
185
        case 120:
182
        case 120:
186
            $selected_120 = $selected;
183
            $selected_120 = $selected;
187
            break;
184
            break;
188
        case 160:
185
        case 160:
189
            $selected_160 = $selected;
186
            $selected_160 = $selected;
190
            break;
187
            break;
191
        case 250:
188
        case 250:
192
            $selected_250 = $selected;
189
            $selected_250 = $selected;
193
            break;
190
            break;
194
        case 280:
191
        case 280:
195
            $selected_280 = $selected;
192
            $selected_280 = $selected;
196
            break;
193
            break;
197
    }
194
    }
198
    $retour .= '<option value="120" '.$selected_120.'>'.'Famille'.'</option>'."\n";
195
    $retour .= '<option value="120" '.$selected_120.'>'.'Famille'.'</option>'."\n";
199
    $retour .= '<option value="160" '.$selected_160.'>'.'Genre'.'</option>'."\n";
196
    $retour .= '<option value="160" '.$selected_160.'>'.'Genre'.'</option>'."\n";
200
    $retour .= '<option value="250" '.$selected_250.'>'.'Espèce'.'</option>'."\n";
197
    $retour .= '<option value="250" '.$selected_250.'>'.'Espèce'.'</option>'."\n";
201
    $retour .= '<option value="280" '.$selected_280.'>'.'Sous-Espèce'.'</option>'."\n";
198
    $retour .= '<option value="280" '.$selected_280.'>'.'Sous-Espèce'.'</option>'."\n";
202
    return $retour;
199
    return $retour;
203
}
200
}
204
 
201
 
205
// +------------------------------------------------------------------------------------------------------+
202
// +------------------------------------------------------------------------------------------------------+
206
// |                                            PIED du PROGRAMME                                         |
203
// |                                            PIED du PROGRAMME                                         |
207
// +------------------------------------------------------------------------------------------------------+
204
// +------------------------------------------------------------------------------------------------------+
208
 
205
 
209
 
206
 
210
/* +--Fin du code ----------------------------------------------------------------------------------------+
207
/* +--Fin du code ----------------------------------------------------------------------------------------+
211
*
208
*
212
* $Log: not supported by cvs2svn $
209
* $Log: not supported by cvs2svn $
-
 
210
* Revision 1.7  2005/06/09 18:09:52  jpm
-
 
211
* Début gestion des référenciels dans la recherche nomenclaturale.
-
 
212
*
213
* Revision 1.6  2005/03/15 15:11:07  jpm
213
* Revision 1.6  2005/03/15 15:11:07  jpm
214
* Ajout d'une sélection par défaut pour le choix de l'ordre.
214
* Ajout d'une sélection par défaut pour le choix de l'ordre.
215
*
215
*
216
* Revision 1.5  2005/03/15 14:45:59  tam
216
* Revision 1.5  2005/03/15 14:45:59  tam
217
* modifs labels
217
* modifs labels
218
*
218
*
219
* Revision 1.2  2005/02/09 13:06:52  jpm
219
* Revision 1.2  2005/02/09 13:06:52  jpm
220
* Modification pour utiliser le macro-élément PROJET_VERSION_TOUS.
220
* Modification pour utiliser le macro-élément PROJET_VERSION_TOUS.
221
*
221
*
222
* Revision 1.1  2005/01/28 19:45:44  jpm
222
* Revision 1.1  2005/01/28 19:45:44  jpm
223
* Début recheche taxons.
223
* Début recheche taxons.
224
*
224
*
225
* Revision 1.1  2005/01/26 10:45:33  jpm
225
* Revision 1.1  2005/01/26 10:45:33  jpm
226
* Ajout des résultats de recherche par noms vernaculaires.
226
* Ajout des résultats de recherche par noms vernaculaires.
227
*
227
*
228
*
228
*
229
* +-- Fin du code ----------------------------------------------------------------------------------------+
229
* +-- Fin du code ----------------------------------------------------------------------------------------+
230
*/
230
*/
231
?>
231
?>