Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 124 | Rev 173 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 124 Rev 144
Line 19... Line 19...
19
// |                                                                                                      |
19
// |                                                                                                      |
20
// | You should have received a copy of the GNU General Public License                                    |
20
// | You should have received a copy of the GNU General Public License                                    |
21
// | along with Foobar; if not, write to the Free Software                                                |
21
// | along with Foobar; if not, write to the Free Software                                                |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
23
// +------------------------------------------------------------------------------------------------------+
23
// +------------------------------------------------------------------------------------------------------+
24
// CVS : $Id: fiche_synthese_xhtml.php,v 1.7 2005-01-28 19:46:18 jpm Exp $
24
// CVS : $Id: fiche_synthese_xhtml.php,v 1.8 2005-02-14 18:11:43 jpm Exp $
25
/**
25
/**
26
* Vue affichant la fiche de synthèse d'un nom dans le projet donné
26
* Vue affichant la fiche de synthèse d'un nom dans le projet donné
27
*
27
*
28
* Permet de retourner le html correspondant à la fiche de synthèse d'un nom
28
* Permet de retourner le html correspondant à la fiche de synthèse d'un nom
29
* dans un projet donné.
29
* dans un projet donné.
Line 33... Line 33...
33
//Auteur original :
33
//Auteur original :
34
*@author        Frédéric LEGENS <flegens@free.fr>
34
*@author        Frédéric LEGENS <flegens@free.fr>
35
//Autres auteurs :
35
//Autres auteurs :
36
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
36
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
37
*@copyright     Tela-Botanica 2000-2004
37
*@copyright     Tela-Botanica 2000-2004
38
*@version       $Revision: 1.7 $ $Date: 2005-01-28 19:46:18 $
38
*@version       $Revision: 1.8 $ $Date: 2005-02-14 18:11:43 $
39
// +------------------------------------------------------------------------------------------------------+
39
// +------------------------------------------------------------------------------------------------------+
40
*/
40
*/
Line 41... Line 41...
41
 
41
 
42
// +------------------------------------------------------------------------------------------------------+
42
// +------------------------------------------------------------------------------------------------------+
Line 370... Line 370...
370
}
370
}
Line 371... Line 371...
371
 
371
 
372
function afficherNomCorrect($donnees, $aso_param)
372
function afficherNomCorrect($donnees, $aso_param)
373
{
373
{
374
    $retour = '';
374
    $retour = '';
375
    //$retour .= '<pre>'.print_r($aso_param, true).'</pre>';
375
    //$retour .= '<pre>'.print_r($donnees, true).'</pre>';
376
    if ($donnees['TAXON_NOMS']['esns_id_statut'] == $aso_param['statut_id']) {
376
    if ($donnees['TAXON_NOMS']['esns_id_statut'] == $aso_param['statut_id']) {
377
        $retour .= '<p><strong>'.$donnees['NOM_LATIN']['eni_intitule_nom'].'</strong></p>'."\n";
377
        $retour .= '<p><strong>'.$donnees['NOM_LATIN']['eni_intitule_nom'].'</strong></p>'."\n";
378
    }
378
    }
379
    return $retour;
379
    return $retour;
Line 380... Line 380...
380
}
380
}
381
 
381
 
382
function afficherRechercheGoogle($donnees, $aso_param)
382
function afficherRechercheGoogle($donnees, $aso_param)
383
{
383
{
384
    $retour = '';
384
    $retour = '';
385
    //$retour .= '<pre>'.print_r($aso_param, true).'</pre>';
385
    //$retour .= '<pre>'.print_r($donnees, true).'</pre>';
386
    if ($donnees['TAXON_NOMS']['esns_id_statut'] == $aso_param['statut_id']) {
386
    if ($donnees['TAXON_NOMS']['esns_id_statut'] == $aso_param['statut_id']) {
387
        $retour .= '<form method="get" action="http://images.google.fr/images">'."\n";
387
        $retour .= '<form method="get" action="http://images.google.fr/images">'."\n";
388
        $retour .= '<p>'."\n";
388
        $retour .= '<p>'."\n";
Line 445... Line 445...
445
 
445
 
446
 
446
 
447
/* +--Fin du code ----------------------------------------------------------------------------------------+
447
/* +--Fin du code ----------------------------------------------------------------------------------------+
-
 
448
*
-
 
449
* $Log: not supported by cvs2svn $
-
 
450
* Revision 1.7  2005/01/28 19:46:18  jpm
448
*
451
* Amélioration de l'affichage des projets utilisant le noms sélectionné.
449
* $Log: not supported by cvs2svn $
452
*
450
* Revision 1.6  2005/01/26 10:44:57  jpm
453
* Revision 1.6  2005/01/26 10:44:57  jpm
451
* Correction de la version de PHP.
454
* Correction de la version de PHP.
452
*
455
*