Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

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

Rev Author Line No. Line
59 jpm 1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.3                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
8
// | This file is part of eFlore-consultation.                                                            |
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
// +------------------------------------------------------------------------------------------------------+
60 jpm 24
// CVS : $Id: eflore_recherche.inc.php,v 1.2 2005-01-03 19:44:40 jpm Exp $
59 jpm 25
/**
26
* Affichage des moteurs de recherches d'eFlore.
27
*
28
* Ce script fournit le code html correspondant aux moteurs de recherches permettant d'accéder aux données
29
* de la base de données eFlore.
30
*
31
*@package eFlore
32
//Auteur original :
33
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
34
//Autres auteurs :
35
*@author        Aucun
36
*@copyright     Tela-Botanica 2000-2004
60 jpm 37
*@version       $Revision: 1.2 $ $Date: 2005-01-03 19:44:40 $
59 jpm 38
// +------------------------------------------------------------------------------------------------------+
39
*/
40
 
41
// +------------------------------------------------------------------------------------------------------+
42
// |                                            ENTÊTE du PROGRAMME                                       |
43
// +------------------------------------------------------------------------------------------------------+
44
/** Inclusion des fonctions pour les moteurs de recherche. */
45
require_once EFLORE_CHEMIN_BIBLIO.'eflore_recherche.fonct.php';
46
 
47
// +------------------------------------------------------------------------------------------------------+
48
// |                                            CORPS du PROGRAMME                                        |
49
// +------------------------------------------------------------------------------------------------------+
60 jpm 50
 
51
// Recherche nomenclaturale ou taxonomique
59 jpm 52
$sortie .= '<h1>'.EFLORE_LG_RECH_TITRE.'</h1>';
60 jpm 53
include_once EFLORE_CHEMIN_APPLI.'eflore_recherche_nomenclature.inc.php';
54
include_once EFLORE_CHEMIN_APPLI.'eflore_recherche_taxonomie.inc.php';
59 jpm 55
$sortie .= '<h2>'.EFLORE_LG_EXPLE_TITRE.'</h2>'."\n";
56
 
57
$sortie .= '<h3>'.EFLORE_LG_EXPLE_TITRE_NOMENC.'</h3>'."\n";
58
$sortie .= '<p>'.EFLORE_LG_EXPLE_NOMENC.'</p>'."\n";
59
$sortie .= '<p>'.EFLORE_LG_EXPLE_ASTUCE.'</p>'."\n";
60
$sortie .= '<ul>'."\n";
61
$sortie .= '  <li>'.sprintf(EFLORE_LG_EXPLE_ASTUCE_DEMO_01, '<tt>', '</tt>', '<tt>', '</tt>').'</li>';
62
$sortie .= '  <li>'.sprintf(EFLORE_LG_EXPLE_ASTUCE_DEMO_02, '<tt>', '</tt>').'</li>';
63
$sortie .= '</ul>'."\n";
64
$sortie .= '<p>'.EFLORE_LG_EXPLE_LANGUE.'</p>'."\n";
65
$sortie .= '<ul>'."\n";
66
$sortie .= '  <li>'.EFLORE_LG_EXPLE_FR.'</li>';
67
$sortie .= '  <li>'.EFLORE_LG_EXPLE_ES.'</li>';
68
$sortie .= '  <li>'.EFLORE_LG_EXPLE_CA.'</li>';
69
$sortie .= '  <li>'.EFLORE_LG_EXPLE_DE.'</li>';
70
$sortie .= '  <li>'.EFLORE_LG_EXPLE_EN.'</li>';
71
$sortie .= '  <li>'.EFLORE_LG_EXPLE_NL.'</li>';
72
$sortie .= '  <li>'.EFLORE_LG_EXPLE_IT.'</li>';
73
$sortie .= '  <li>'.EFLORE_LG_EXPLE_ETC.'</li>';
74
$sortie .= '</ul>'."\n";
75
 
76
$sortie .= '<h3>'.EFLORE_LG_EXPLE_TITRE_TAXO.'</h3>'."\n";
77
$sortie .= '<p>'.EFLORE_LG_EXPLE_TAXO.'</p>'."\n";
78
 
79
/* +--Fin du code ----------------------------------------------------------------------------------------+
80
*
81
* $Log: not supported by cvs2svn $
60 jpm 82
* Revision 1.1  2004/12/23 20:05:17  jpm
83
* Début prise en maine eflore-consultation.
59 jpm 84
*
60 jpm 85
*
59 jpm 86
* +-- Fin du code ----------------------------------------------------------------------------------------+
87
*/
88
?>