Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 166 | Rev 173 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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