Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 60 | Go to most recent revision | Details | 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
// +------------------------------------------------------------------------------------------------------+
24
// CVS : $Id: eflore_recherche.inc.php,v 1.1 2004-12-23 20:05:17 jpm Exp $
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
37
*@version       $Revision: 1.1 $ $Date: 2004-12-23 20:05:17 $
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
// +------------------------------------------------------------------------------------------------------+
50
$sortie .= '<h1>'.EFLORE_LG_RECH_TITRE.'</h1>';
51
 
52
require_once EFLORE_CHEMIN_APPLI.'eflore_recherche_nomenclature.inc.php';
53
 
54
require_once EFLORE_CHEMIN_APPLI.'eflore_recherche_taxonomie.inc.php';
55
 
56
$sortie .= '<h2>'.EFLORE_LG_EXPLE_TITRE.'</h2>'."\n";
57
 
58
$sortie .= '<h3>'.EFLORE_LG_EXPLE_TITRE_NOMENC.'</h3>'."\n";
59
$sortie .= '<p>'.EFLORE_LG_EXPLE_NOMENC.'</p>'."\n";
60
$sortie .= '<p>'.EFLORE_LG_EXPLE_ASTUCE.'</p>'."\n";
61
$sortie .= '<ul>'."\n";
62
$sortie .= '  <li>'.sprintf(EFLORE_LG_EXPLE_ASTUCE_DEMO_01, '<tt>', '</tt>', '<tt>', '</tt>').'</li>';
63
$sortie .= '  <li>'.sprintf(EFLORE_LG_EXPLE_ASTUCE_DEMO_02, '<tt>', '</tt>').'</li>';
64
$sortie .= '</ul>'."\n";
65
$sortie .= '<p>'.EFLORE_LG_EXPLE_LANGUE.'</p>'."\n";
66
$sortie .= '<ul>'."\n";
67
$sortie .= '  <li>'.EFLORE_LG_EXPLE_FR.'</li>';
68
$sortie .= '  <li>'.EFLORE_LG_EXPLE_ES.'</li>';
69
$sortie .= '  <li>'.EFLORE_LG_EXPLE_CA.'</li>';
70
$sortie .= '  <li>'.EFLORE_LG_EXPLE_DE.'</li>';
71
$sortie .= '  <li>'.EFLORE_LG_EXPLE_EN.'</li>';
72
$sortie .= '  <li>'.EFLORE_LG_EXPLE_NL.'</li>';
73
$sortie .= '  <li>'.EFLORE_LG_EXPLE_IT.'</li>';
74
$sortie .= '  <li>'.EFLORE_LG_EXPLE_ETC.'</li>';
75
$sortie .= '</ul>'."\n";
76
 
77
$sortie .= '<h3>'.EFLORE_LG_EXPLE_TITRE_TAXO.'</h3>'."\n";
78
$sortie .= '<p>'.EFLORE_LG_EXPLE_TAXO.'</p>'."\n";
79
 
80
/* +--Fin du code ----------------------------------------------------------------------------------------+
81
*
82
* $Log: not supported by cvs2svn $
83
*
84
* +-- Fin du code ----------------------------------------------------------------------------------------+
85
*/
86
?>