1210 |
mathias |
1 |
<!-- onglet "Vignettes noms français" -->
|
161 |
jpm |
2 |
<?php if ($noms) : ?>
|
199 |
delphine |
3 |
<ul id="ef-resultats-nv-determination">
|
|
|
4 |
<? foreach ($noms as $nnTaxon => $nom) : ?>
|
|
|
5 |
<li class="zone-resultat">
|
202 |
delphine |
6 |
<table >
|
|
|
7 |
<tbody >
|
|
|
8 |
<tr><td class="nom">
|
|
|
9 |
<?php if (isset($nom['nomVerna'])) : ?>
|
|
|
10 |
<?php $nbrNomVerna = count($nom['nomVerna']) ?>
|
|
|
11 |
<ul class="synonymes" style="width:100%;">
|
|
|
12 |
<?php for ($i = 0; ($i < 3); $i++) : ?>
|
|
|
13 |
<?php if (isset($nom['nomVerna'][$i])) : ?>
|
|
|
14 |
<li><?=$nom['nomVerna'][$i]['nom_vernaculaire']?></li>
|
|
|
15 |
<?php endif; ?>
|
|
|
16 |
<? endfor; ?>
|
|
|
17 |
<?php if ($nbrNomVerna === 4) : ?>
|
|
|
18 |
<?php if (isset($nom['nomVerna'][3])) : ?>
|
|
|
19 |
<li><?=$nom['nomVerna'][3]['nom_vernaculaire']?></li>
|
|
|
20 |
<?php endif; ?>
|
199 |
delphine |
21 |
<?php endif; ?>
|
202 |
delphine |
22 |
<?php if ($nbrNomVerna > 3 && $nbrNomVerna != 4) : ?>
|
|
|
23 |
<li class="synonymes-autres">
|
|
|
24 |
<ul>
|
|
|
25 |
<?php for ($i = 3; $i < $nbrNomVerna; $i++) : ?>
|
|
|
26 |
<li><?=$nom['nomVerna'][$i]['nom_vernaculaire']?></li>
|
|
|
27 |
<? endfor; ?>
|
|
|
28 |
</ul>
|
|
|
29 |
</li>
|
|
|
30 |
<?php endif; ?>
|
|
|
31 |
</ul>
|
|
|
32 |
<?php endif; ?>
|
|
|
33 |
</td><td class="nom">
|
866 |
aurelien |
34 |
<a class="lien_fiche_eflore" href="<?=$nom['urlFiche']?>" ><?=$nom['nomSci']?></a>
|
282 |
gduche |
35 |
</td>
|
312 |
jpm |
36 |
<td>
|
619 |
mathilde |
37 |
<?php if (isset($imagesCoste[$taxons[$nom['nomSci']]][0])) : ?>
|
866 |
aurelien |
38 |
<img class="illustration_resultat_coste" src="<?=htmlentities($imagesCoste[$taxons[$nom['nomSci']]][0])?>" alt="illustration de Coste" />
|
628 |
mathilde |
39 |
<?php else : ?>
|
|
|
40 |
<div class="vide"></div>
|
|
|
41 |
<?php endif; ?>
|
619 |
mathilde |
42 |
</td>
|
|
|
43 |
<td>
|
202 |
delphine |
44 |
<?php if (isset($imagesUrls[$nnTaxon])) : ?>
|
984 |
aurelien |
45 |
<img class="illustration_resultat_cel" src="<?=htmlentities($imagesUrls[$nnTaxon][0])?>" data-num-nom="<?= $nnTaxon; ?>" title="<?= $nnTaxon; ?>" alt="Images issues du CEL" style="width:100px;height:100px;display:block;float:right;"/>
|
235 |
delphine |
46 |
<?php else : ?>
|
312 |
jpm |
47 |
<p class="absent">
|
|
|
48 |
Pas de photo<br />
|
1274 |
aurelien |
49 |
<a href="<?=$urlWidget.'&num_nom='.$nnTaxon?>"
|
312 |
jpm |
50 |
title="Ajouter une photographie au moyen du Carnet en Ligne"
|
362 |
gduche |
51 |
onclick="window.open(this.href); return false;" class="contribuer">
|
|
|
52 |
Contribuer
|
312 |
jpm |
53 |
</a>
|
|
|
54 |
</p>
|
202 |
delphine |
55 |
<?php endif; ?>
|
628 |
mathilde |
56 |
</td>
|
|
|
57 |
<td >
|
|
|
58 |
<?php if (isset($repartition['urls'][$nnTaxon])) : ?>
|
866 |
aurelien |
59 |
<img src="<?=htmlentities($repartition['urls'][$nnTaxon])?>" alt="Carte de répartition" class="repartition_vignette illustration_resultat_choro"/>
|
628 |
mathilde |
60 |
<?php else : ?>
|
|
|
61 |
<div class="absent">Pas de carte</div>
|
|
|
62 |
<?php endif; ?>
|
202 |
delphine |
63 |
</td></tr>
|
|
|
64 |
</tbody>
|
|
|
65 |
</table>
|
199 |
delphine |
66 |
</li>
|
|
|
67 |
<? endforeach; ?>
|
|
|
68 |
</ul>
|
202 |
delphine |
69 |
<?php endif; ?>
|
|
|
70 |
<script type="text/javascript">
|
|
|
71 |
//<![CDATA[
|
|
|
72 |
$(document).ready(function() {
|
|
|
73 |
ajouterToggleSynonymesAutres();
|
|
|
74 |
});
|
|
|
75 |
function ajouterToggleSynonymesAutres() {
|
|
|
76 |
$("ul#ef-resultats-nv-determination li").each(function(index) {
|
|
|
77 |
$(this).find('.synonymes-autres').prepend('<a id="bascule-'+index+'" href="#">et plus...</a>');
|
|
|
78 |
$(this).find('.synonymes-autres ul').css('display', 'none');
|
|
|
79 |
$(this).find('.synonymes-autres ul').attr('id', 'sa-'+index);
|
|
|
80 |
|
|
|
81 |
$('#bascule-'+index).on('click', function() {
|
|
|
82 |
$('#sa-'+index).toggle('blind', {}, 500);
|
|
|
83 |
return false;
|
|
|
84 |
});
|
|
|
85 |
});
|
|
|
86 |
}
|
|
|
87 |
//]]>
|
|
|
88 |
</script>
|