Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 919 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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