Subversion Repositories eFlore/Archives.eflore-consultation-v2

Compare Revisions

Ignore whitespace Rev 143 → Rev 144

/trunk/serveur/eflore_mv/vues/recherche_taxon_xhtml.php
21,7 → 21,7
// | along with Foobar; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: recherche_taxon_xhtml.php,v 1.1 2005-01-28 19:45:44 jpm Exp $
// CVS : $Id: recherche_taxon_xhtml.php,v 1.2 2005-02-14 18:11:43 jpm Exp $
/**
* Vue affichant la liste des taxons d'un projet.
*
34,7 → 34,7
//Autres auteurs :
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.1 $ $Date: 2005-01-28 19:45:44 $
*@version $Revision: 1.2 $ $Date: 2005-02-14 18:11:43 $
// +------------------------------------------------------------------------------------------------------+
*/
 
92,11 → 92,12
 
function afficherTaxon($donnees)
{
$retour = '<li><a href="{UrlFicheNom}'.$donnees['en_id_nom'].'">';
if (!empty($donnees['eni_intitule_nom'])) {
$retour .= $donnees['eni_intitule_nom'];
}
$retour .= '</a></li>'."\n";
//echo '<pre>'.print_r($donnees, true).'</pre>';
$retour = '<li><a href="func_remplacerUrlClassif('.$donnees['esn_id_taxon'].')">';
$retour .= '<img src="#" alt="+"/>';
$retour .= '</a><a id="eflore_taxon_'.$donnees['esn_id_taxon'].'" href="{UrlFicheNom}'.$donnees['en_id_nom'].'">';
$retour .= $donnees['eni_intitule_nom'];
$retour .= '</a>func_ajouterArboressenceClassif('.$donnees['esn_id_taxon'].')</li>'."\n";
return $retour;
}
 
108,7 → 109,10
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.1 2005/01/28 19:45:44 jpm
* Début recheche taxons.
*
*
* +-- Fin du code ----------------------------------------------------------------------------------------+
*/
?>