Subversion Repositories eFlore/Archives.eflore-consultation-v2

Compare Revisions

Ignore whitespace Rev 58 → Rev 59

/trunk/eflore_recherche.inc.php
New file
0,0 → 1,86
<?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.1 2004-12-23 20:05:17 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.1 $ $Date: 2004-12-23 20:05:17 $
// +------------------------------------------------------------------------------------------------------+
*/
 
// +------------------------------------------------------------------------------------------------------+
// | ENTÊTE du PROGRAMME |
// +------------------------------------------------------------------------------------------------------+
/** Inclusion des fonctions pour les moteurs de recherche. */
require_once EFLORE_CHEMIN_BIBLIO.'eflore_recherche.fonct.php';
 
// +------------------------------------------------------------------------------------------------------+
// | CORPS du PROGRAMME |
// +------------------------------------------------------------------------------------------------------+
$sortie .= '<h1>'.EFLORE_LG_RECH_TITRE.'</h1>';
 
require_once EFLORE_CHEMIN_APPLI.'eflore_recherche_nomenclature.inc.php';
 
require_once EFLORE_CHEMIN_APPLI.'eflore_recherche_taxonomie.inc.php';
 
$sortie .= '<h2>'.EFLORE_LG_EXPLE_TITRE.'</h2>'."\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>'."\n";
$sortie .= ' <li>'.sprintf(EFLORE_LG_EXPLE_ASTUCE_DEMO_01, '<tt>', '</tt>', '<tt>', '</tt>').'</li>';
$sortie .= ' <li>'.sprintf(EFLORE_LG_EXPLE_ASTUCE_DEMO_02, '<tt>', '</tt>').'</li>';
$sortie .= '</ul>'."\n";
$sortie .= '<p>'.EFLORE_LG_EXPLE_LANGUE.'</p>'."\n";
$sortie .= '<ul>'."\n";
$sortie .= ' <li>'.EFLORE_LG_EXPLE_FR.'</li>';
$sortie .= ' <li>'.EFLORE_LG_EXPLE_ES.'</li>';
$sortie .= ' <li>'.EFLORE_LG_EXPLE_CA.'</li>';
$sortie .= ' <li>'.EFLORE_LG_EXPLE_DE.'</li>';
$sortie .= ' <li>'.EFLORE_LG_EXPLE_EN.'</li>';
$sortie .= ' <li>'.EFLORE_LG_EXPLE_NL.'</li>';
$sortie .= ' <li>'.EFLORE_LG_EXPLE_IT.'</li>';
$sortie .= ' <li>'.EFLORE_LG_EXPLE_ETC.'</li>';
$sortie .= '</ul>'."\n";
 
$sortie .= '<h3>'.EFLORE_LG_EXPLE_TITRE_TAXO.'</h3>'."\n";
$sortie .= '<p>'.EFLORE_LG_EXPLE_TAXO.'</p>'."\n";
 
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
*
* +-- Fin du code ----------------------------------------------------------------------------------------+
*/
?>