Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 173 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php
/*vim: set expandtab tabstop=4 shiftwidth=4: */ 
// +------------------------------------------------------------------------------------------------------+
// | PHP version 5.0.3                                                                                    |
// +------------------------------------------------------------------------------------------------------+
// | Copyright (C) 2005 Tela Botanica (accueil@tela-botanica.org)                                         |
// +------------------------------------------------------------------------------------------------------+
// | This file is part of eRibo.                                                                          |
// |                                                                                                      |
// | Foobar is free software; you can redistribute it and/or modify                                       |
// | it under the terms of the GNU General Public License as published by                                 |
// | the Free Software Foundation; either version 2 of the License, or                                    |
// | (at your option) any later version.                                                                  |
// |                                                                                                      |
// | Foobar is distributed in the hope that it will be useful,                                            |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                        |
// | GNU General Public License for more details.                                                         |
// |                                                                                                      |
// | You should have received a copy of the GNU General Public License                                    |
// | along with Foobar; if not, write to the Free Software                                                |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: formulaire_nomenclatural_xhtml.php,v 1.3 2005-08-25 14:35:59 ddelon Exp $
/**
* Vue affichant le formulaire de recherche nomenclaturale.
*
* Permet de retourner le xhtml correspondant au formulaire de recherche nomenclaturale.
*
*@package eFlore
*@subpackage Vues
//Auteur original :
*@author        Frédéric LEGENS <flegens@free.fr>
//Autres auteurs :
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
*@copyright     Tela-Botanica 2000-2005
*@version       $Revision: 1.3 $ $Date: 2005-08-25 14:35:59 $
// +------------------------------------------------------------------------------------------------------+
*/

// +------------------------------------------------------------------------------------------------------+
// |                                            ENTETE du PROGRAMME                                       |
// +------------------------------------------------------------------------------------------------------+
require_once EFSE_CHEMIN_FONCTION.'eribo_encodage.fonct.php';

// +------------------------------------------------------------------------------------------------------+
// |                                            CLASSE de la VUE                                          |
// +------------------------------------------------------------------------------------------------------+
class formulaire_nomenclatural_xhtml implements iVue {
    
    protected $leBlock;
    
    function __construct($unBlock)
    {
        $this->leBlock = $unBlock;
    }
    
    function serialiser()
    {
        $retour = '<?xml version="1.0" encoding="iso-8859-15" ?>'."\n";
        $retour .= '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "../../../commun/generique/dtd/xhtml1-strict.dtd">'."\n";
        $retour .= '<html xmlns="http://w ww.w3.org/1999/xhtml" lang="fr" >'."\n";
        
        $retour .= '<head>'."\n";
        $retour .= '<!-- BEGIN entete -->'."\n";
        $retour .= '<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />'."\n";
        $retour .= '<meta http-equiv="Content-style-type" content="text/css" />'."\n";
        $retour .= '<meta http-equiv="Content-script-type" content="text/javascript />'."\n";
        $retour .= '<meta http-equiv="Content-language" content="fr" />'."\n";
        $retour .= '<title>Formulaire de recherche nomenclaturale</title>'."\n";
        $retour .= '<!-- END entete -->'."\n";
        $retour .= '</head>'."\n";
        
        $retour .= '<body>'."\n";
        $retour .= '<!-- BEGIN corps -->'."\n";
        $retour .= '<h2>'.'Rechercher une plante par son nom'.'</h2>'."\n";
        $retour .= '<form id="eflore_form_nomenclature" name="eflore_form_nomenclature" action="{UrlProjetNom}" method="post">'."\n";
        $retour .= '<fieldset>'."\n".'<legend>'.'Recherche par nom'.'</legend>'."\n";
        $retour .= '<ul>'."\n";
        $retour .= '<li><label for="eflore_nom">'.'Nom : '.'</label>'."\n";
        $retour .= '<input id="eflore_nom" name="eflore_nom" class="champ" tabindex="1000" size="45" maxlength="255" onclick="javascript: this.value=\'\';" type="text" value="{eflore_nom}" /></li>'."\n";
        $retour .= '<li><label for="eflore_referenciel">'.'Référentiel : '.'</label>'."\n";
        $retour .= '<select id="eflore_referenciel" name="eflore_referenciel" tabindex="1001">'."\n";
        $retour .= '  <option value="0" func_selectionnerEfloreRef(0)>'.'Tous'.'</option>'."\n";
        $retour .= $this->leBlock->afficherPattern('FORMULAIRE_NOMENCLATURAL>PROJET_VERSION_TOUS','afficherReferenciels', null, TRUE);
        $retour .= '</select></li>'."\n";
        $retour .= '<li>'."\n".'<ul>'."\n";
        $retour .= '<li><input id="eflore_type_nom_scientifique" tabindex="1002" name="eflore_type_nom" value="nom_scientifique" type="radio" {eflore_type_nom_scientifique} />';
        $retour .= '<label for="eflore_type_nom_scientifique">nom scientifique</label></li>'."\n";
        $retour .= '<li><input id="eflore_type_nom_vernaculaire" tabindex="1003" name="eflore_type_nom" value="nom_vernaculaire" type="radio" {eflore_type_nom_vernaculaire} />';
        $retour .= '<label for="eflore_type_nom_vernaculaire">nom vernaculaire</label></li>'."\n";
        $retour .= '</ul>'."\n".'</li>'."\n";
        $retour .= '<li><input id="eflore_nomenclature_submit" type="submit" value="'.'OK'.'" /></li>'."\n";
        $retour .= '</ul>'."\n";
        $retour .= '</fieldset>'."\n";
        $retour .= '</form>'."\n";
        $retour .= '<!-- END corps -->'."\n";
        $retour .= '</body>'."\n";
        $retour .= '</html>'."\n";
        
        // Envoi au navigateur après encodage en entité des caractères posant problème
        echo remplaceEntiteHTLM($retour);
    }
}

// +------------------------------------------------------------------------------------------------------+
// |                                            LISTE des FONCTIONS                                       |
// +------------------------------------------------------------------------------------------------------+
function afficherReferenciels($donnees)
{
    //$retour .= '<pre>'.print_r($donnees, true).'</pre>';
    $retour .= '  <option value="'.$donnees['PROJET_VERSION_TOUS']['eprv_id_version'].'" func_selectionnerEfloreRef('.$donnees['PROJET_VERSION_TOUS']['eprv_id_version'].')>';
    $retour .= $donnees['PROJET_VERSION_TOUS']['eprv_nom'].' ('.$donnees['PROJET_VERSION_TOUS']['eprv_code_version'].') - '.$donnees['PROJET_VERSION_TOUS']['epr_intitule_projet'];
    $retour .= '</option>'."\n";
    return $retour;
}

// +------------------------------------------------------------------------------------------------------+
// |                                            PIED du PROGRAMME                                         |
// +------------------------------------------------------------------------------------------------------+


/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.2  2005/06/30 15:25:07  jpm
* Début des modifications pour ajout de l'arborescence de la classif.
*
* Revision 1.1  2005/06/09 18:09:52  jpm
* Début gestion des référenciels dans la recherche nomenclaturale.
*
* Revision 1.6  2005/03/15 15:11:07  jpm
* Ajout d'une sélection par défaut pour le choix de l'ordre.
*
* Revision 1.5  2005/03/15 14:45:59  tam
* modifs labels
*
* Revision 1.2  2005/02/09 13:06:52  jpm
* Modification pour utiliser le macro-élément PROJET_VERSION_TOUS.
*
* Revision 1.1  2005/01/28 19:45:44  jpm
* Début recheche taxons.
*
* Revision 1.1  2005/01/26 10:45:33  jpm
* Ajout des résultats de recherche par noms vernaculaires.
*
*
* +-- Fin du code ----------------------------------------------------------------------------------------+
*/
?>