Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 164 | Rev 166 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 164 Rev 165
Line 19... Line 19...
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.4 2005-03-15 14:17:48 tam Exp $
24
// CVS : $Id: formulaire_taxonomique_xhtml.php,v 1.5 2005-03-15 14:45:59 tam 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
*
Line 32... Line 32...
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.4 $ $Date: 2005-03-15 14:17:48 $
37
*@version       $Revision: 1.5 $ $Date: 2005-03-15 14:45:59 $
38
// +------------------------------------------------------------------------------------------------------+
38
// +------------------------------------------------------------------------------------------------------+
39
*/
39
*/
Line 40... Line 40...
40
 
40
 
41
// +------------------------------------------------------------------------------------------------------+
41
// +------------------------------------------------------------------------------------------------------+
Line 80... Line 80...
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">'.'Projet : '.'</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><label for="eflore_ordre">'.'afficher les taxons : '.'</label>'."\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";
86
        $retour .= '<select id="eflore_ordre" name="eflore_ordre">'."\n";
87
        $retour .= $this->leBlock->afficherPattern('FORMULAIRE_TAXONOMIQUE','afficherOrdre');
87
        $retour .= $this->leBlock->afficherPattern('FORMULAIRE_TAXONOMIQUE','afficherOrdre');
88
        $retour .= '</select></li>'."\n";
88
        $retour .= '</select></li>'."\n";
89
        $retour .= '<li><label for="eflore_rang">'.'au rang : '.'</label>'."\n";
89
        $retour .= '<li id="eflore_rang_li"><label for="eflore_rang">'.'au rang : '.'</label>'."\n";
90
        $retour .= '<select id="eflore_rang" name="eflore_rang">'."\n";
90
        $retour .= '<select id="eflore_rang" name="eflore_rang">'."\n";
91
        $retour .= $this->leBlock->afficherPattern('FORMULAIRE_TAXONOMIQUE','afficherRang');
91
        $retour .= $this->leBlock->afficherPattern('FORMULAIRE_TAXONOMIQUE','afficherRang');
92
        $retour .= '</select></li>'."\n";
92
        $retour .= '</select></li>'."\n";
93
        $retour .= '<li><input type="submit" value="'.'OK'.'" /></li>'."\n";
93
        $retour .= '<li id="eflore_projet_submit"><input type="submit" value="'.'OK'.'" /></li>'."\n";
94
        $retour .= $this->leBlock->afficherPattern('FORMULAIRE_TAXONOMIQUE>TAXON_RECHERCHE','creerAlphabetTaxon');
94
        $retour .= $this->leBlock->afficherPattern('FORMULAIRE_TAXONOMIQUE>TAXON_RECHERCHE','creerAlphabetTaxon');
95
        $retour .= afficherAlphabetTaxon();
95
        $retour .= afficherAlphabetTaxon();
96
        $retour .= '</ul>'."\n";
96
        $retour .= '</ul>'."\n";
97
        $retour .= '</fieldset>'."\n";
97
        $retour .= '</fieldset>'."\n";
98
        $retour .= '</form>'."\n";
98
        $retour .= '</form>'."\n";