Rev 127 | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php/*vim: set expandtab tabstop=4 shiftwidth=4: */// +------------------------------------------------------------------------------------------------------+// | PHP version 4.3 |// +------------------------------------------------------------------------------------------------------+// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |// +------------------------------------------------------------------------------------------------------+// | This file is part of eFlore-consultation. |// | |// | 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: eflore_recherche.inc.php,v 1.4 2005-06-30 15:24:26 jpm Exp $/*** Affichage des moteurs de recherches d'eFlore.** Ce script fournit le code html correspondant aux moteurs de recherches permettant d'accéder aux données* de la base de données eFlore.**@package eFlore//Auteur original :*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>//Autres auteurs :*@author Aucun*@copyright Tela-Botanica 2000-2004*@version $Revision: 1.4 $ $Date: 2005-06-30 15:24:26 $// +------------------------------------------------------------------------------------------------------+*/// +------------------------------------------------------------------------------------------------------+// | ENTÊTE du PROGRAMME |// +------------------------------------------------------------------------------------------------------+/** Inclusion des fonctions pour les moteurs de recherche. */require_once EFLORE_CHEMIN_BIBLIO.'eflore_recherche.fonct.php';// +------------------------------------------------------------------------------------------------------+// | CORPS du PROGRAMME |// +------------------------------------------------------------------------------------------------------+// Recherche nomenclaturale ou taxonomique$sortie .= '<h1>'.EFLORE_LG_RECH_TITRE.'</h1>'."\n";include_once EFLORE_CHEMIN_APPLI.'eflore_recherche_nomenclature.inc.php';//include_once EFLORE_CHEMIN_APPLI.'eflore_recherche_taxonomie.inc.php';$sortie .= '<div id="eflore_exemples">'."\n";$sortie .= '<h2>'.EFLORE_LG_EXPLE_TITRE.'</h2>'."\n";$sortie .= '<div id="eflore_exemple_nomenc">'."\n";$sortie .= '<h3>'.EFLORE_LG_EXPLE_TITRE_NOMENC.'</h3>'."\n";$sortie .= '<p>'.EFLORE_LG_EXPLE_NOMENC.'</p>'."\n";$sortie .= '<p>'.EFLORE_LG_EXPLE_ASTUCE.'</p>'."\n";$sortie .= '<ul id="eflore_liste_astuces">'."\n";$sortie .= ' <li>'.sprintf(EFLORE_LG_EXPLE_ASTUCE_DEMO_01, '<tt>', '</tt>', '<tt>', '</tt>').'</li>'."\n";$sortie .= ' <li>'.sprintf(EFLORE_LG_EXPLE_ASTUCE_DEMO_02, '<tt>', '</tt>').'</li>'."\n";$sortie .= '</ul>'."\n";$sortie .= '<p>'.EFLORE_LG_EXPLE_LANGUE.'</p>'."\n";$sortie .= '<ul id="eflore_liste_langues">'."\n";$sortie .= ' <li>'.EFLORE_LG_EXPLE_FR.'</li>'."\n";$sortie .= ' <li>'.EFLORE_LG_EXPLE_ES.'</li>'."\n";$sortie .= ' <li>'.EFLORE_LG_EXPLE_CA.'</li>'."\n";$sortie .= ' <li>'.EFLORE_LG_EXPLE_DE.'</li>'."\n";$sortie .= ' <li>'.EFLORE_LG_EXPLE_EN.'</li>'."\n";$sortie .= ' <li>'.EFLORE_LG_EXPLE_NL.'</li>'."\n";$sortie .= ' <li>'.EFLORE_LG_EXPLE_IT.'</li>'."\n";$sortie .= ' <li>'.EFLORE_LG_ETC.'</li>'."\n";$sortie .= '</ul>'."\n";$sortie .= '</div>'."\n";/*$sortie .= '<div id="eflore_exemple_taxo">'."\n";$sortie .= '<h3>'.EFLORE_LG_EXPLE_TITRE_TAXO.'</h3>'."\n";$sortie .= '<p>'.EFLORE_LG_EXPLE_TAXO.'</p>'."\n";$sortie .= '</div>'."\n";*/$sortie .= '</div>'."\n";/* +--Fin du code ----------------------------------------------------------------------------------------+** $Log: not supported by cvs2svn $* Revision 1.3 2005/01/28 19:47:55 jpm* Ajout de la recherche pour les taxons.** Revision 1.2 2005/01/03 19:44:40 jpm* Ajout de la gestion de l'action "fiche".** Revision 1.1 2004/12/23 20:05:17 jpm* Début prise en maine eflore-consultation.*** +-- Fin du code ----------------------------------------------------------------------------------------+*/?>