Rev 72 | Rev 125 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<!-- REF - DEBUT RESULTAT -->
<div id="ref-resultat-recherche">
<?=$fragmenteur;?>
<? if (isset($resultats)) : ?>
<table>
<thead>
<tr>
<th>Identifiant numérique du nom scientifique retenu</th>
<th>Identifiant numérique du nom scientifique</th>
<th>Nom scientifique</th>
<th>Auteur</th>
<th>Année</th>
<th>Référence bibliographique</th>
<th>Nom addendum</th>
</tr>
</thead>
<tbody>
<?if (isset($resultats['nom_retenu'])) :
foreach ($resultats['nom_retenu'] as $id => $retenu) : ?>
<tr class='nom_retenu'>
<td></td>
<td><a href="<?=Recherche::getUrlFicheTaxon($retenu)?>"><?=$retenu['num_nom']?></a></td>
<td><a href="<?=Recherche::getUrlFicheTaxon($retenu)?>"><?=$retenu['nom_complet'];?></a></td>
<td><?=$retenu['auteur'];?></td>
<td><?=$retenu['annee'];?></td>
<td><?=$retenu['biblio_origine'];?></td>
<td><?=$retenu['nom_addendum'];?></td>
</tr>
<?if (isset($resultats[$id])) :
foreach ($resultats[$id] as $synonyme) : ?>
<tr>
<td><?=$synonyme['num_nom_retenu'];?></td>
<td><a href="<?=Recherche::getUrlFicheTaxon($synonyme)?>"><?=$synonyme['num_nom']?></a></td>
<td><a href="<?=Recherche::getUrlFicheTaxon($synonyme)?>"><?=$synonyme['nom_complet'];?></a></td>
<td><?=$synonyme['auteur'];?></td>
<td><?=$synonyme['annee'];?></td>
<td><?=$synonyme['biblio_origine'];?></td>
<td><?=$synonyme['nom_addendum'];?></td>
</tr>
<? endforeach;
endif;
endforeach;
else :
foreach ($resultats as $res) :
foreach ($res as $synonyme) : ?>
<tr>
<td><?=$synonyme['num_nom_retenu'];?></td>
<td><a href="<?=Recherche::getUrlFicheTaxon($synonyme)?>"><?=$synonyme['num_nom']?></a></td>
<td><a href="<?=Recherche::getUrlFicheTaxon($synonyme)?>"><?=$synonyme['nom_complet'];?></a></td>
<td><?=$synonyme['auteur'];?></td>
<td><?=$synonyme['annee'];?></td>
<td><?=$synonyme['biblio_origine'];?></td>
<td><?=$synonyme['nom_addendum'];?></td>
</tr>
<? endforeach;
endforeach;
endif;?>
</tbody>
</table>
<? endif; ?>
</div>
<!-- REF - FIN RESULTAT -->