Line 20... |
Line 20... |
20 |
<div id="synthese_classification" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
|
20 |
<div id="synthese_classification" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
|
21 |
<h3 class="titre ui-widget-header ui-corner-all" id="titre-2">
|
21 |
<h3 class="titre ui-widget-header ui-corner-all" id="titre-2">
|
22 |
<a class="lien-onglet-synthese" href="<?=$url;?>classification">Classification</a>
|
22 |
<a class="lien-onglet-synthese" href="<?=$url;?>classification">Classification</a>
|
23 |
</h3>
|
23 |
</h3>
|
24 |
<div id="contenu-0" class="contenu">
|
24 |
<div id="contenu-0" class="contenu">
|
- |
|
25 |
<h4>Taxons supérieurs</h4>
|
25 |
<?php if($classification['taxons_sup'] != array()) { ?>
|
26 |
<?php if($classification['taxons_sup'] != array()) { ?>
|
26 |
<h4>Taxons supérieurs</h4>
|
- |
|
27 |
<?php foreach($classification['taxons_sup'] as $taxon) : ?>
|
27 |
<?php foreach($classification['taxons_sup'] as $taxon) : ?>
|
28 |
<div><?= $taxon['rang']; ?> : <?= $taxon['nom_sci']; ?> (<?= $taxon['num_nom']; ?>)</div>
|
28 |
<div><?= $taxon['rang']; ?> : <?= $taxon['nom_sci']; ?></div>
|
29 |
<?php endforeach; ?>
|
29 |
<?php endforeach; ?>
|
30 |
<?php } else { ?>
|
30 |
<?php } else { ?>
|
31 |
<div class="aucune_info"> Aucun taxon supérieur référencé </div>
|
31 |
<div class="aucune_info"> Aucun taxon supérieur référencé </div>
|
32 |
<?php } ?>
|
32 |
<?php } ?>
|
- |
|
33 |
<h4>Taxons inférieurs</h4>
|
33 |
<?php if($classification['taxons_inf'] != array()) { ?>
|
34 |
<?php if($classification['taxons_inf'] != array()) { ?>
|
34 |
<h4>Taxons inférieurs</h4>
|
- |
|
35 |
<?php foreach($classification['taxons_inf'] as $taxon) : ?>
|
35 |
<?php foreach($classification['taxons_inf'] as $taxon) : ?>
|
36 |
<div><?= $taxon['rang']; ?> : <?= $taxon['nom_sci']; ?> (<?= $taxon['num_nom']; ?>)</div>
|
36 |
<div><?= $taxon['rang']; ?> : <?= $taxon['nom_sci']; ?></div>
|
37 |
<?php endforeach; ?>
|
37 |
<?php endforeach; ?>
|
38 |
<?php } else { ?>
|
38 |
<?php } else { ?>
|
39 |
<div class="aucune_info"> Aucun taxon inférieur référencé </div>
|
39 |
<div class="aucune_info"> Aucun taxon inférieur référencé </div>
|
40 |
<?php } ?>
|
40 |
<?php } ?>
|
41 |
</div>
|
41 |
</div>
|