Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 161 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 161 Rev 199
Line 1... Line 1...
1
<?php if ($noms) : ?>
1
<?php if ($noms) : ?>
2
<ul id="ef-resultats-nv-determination">
-
 
3
	
-
 
4
</ul>
-
 
5
<?php endif; ?>
-
 
6
<p>À implémenter</p>
-
 
7
2
	<ul id="ef-resultats-nv-determination">
-
 
3
		<? foreach ($noms as $nnTaxon => $nom) : ?>
-
 
4
			<li class="zone-resultat">
-
 
5
				
-
 
6
				
-
 
7
				
-
 
8
				<?php if (isset($imagesUrls[$nnTaxon])) : ?>
-
 
9
					<img src="<?=$imagesUrls[$nnTaxon][0]?>" style="width:100px;height:100px;display:block;float:right;"/>
-
 
10
				<?php endif; ?>
-
 
11
				
-
 
12
				
-
 
13
				<?php if (isset($nom['nomVerna'])) : ?>
-
 
14
					<?php $nbrNomVerna = count($nom['nomVerna']) ?>
-
 
15
					<ul class="synonymes" style="width:100%;">
-
 
16
						<li><span><?=$nom['nomVerna'][0]['nom_vernaculaire']?></span>
-
 
17
							<span class="nom-sci-gauche" >
-
 
18
								<a href="<?=$nom['urlFiche']?>" ><?=$nom['nomSci']?></a>
-
 
19
							</span>
-
 
20
						</li>
-
 
21
						<?php for ($i = 1; ($i < 3); $i++) : ?>
-
 
22
							<?php if (isset($nom['nomVerna'][$i])) : ?>
-
 
23
								<li><?=$nom['nomVerna'][$i]['nom_vernaculaire']?></li>
-
 
24
							<?php endif; ?>
-
 
25
						<? endfor; ?>
-
 
26
						<?php if ($nbrNomVerna > 3) : ?>
-
 
27
							<li class="synonymes-autres">
-
 
28
								<ul>
-
 
29
									<?php for ($i = 3; $i < $nbrNomVerna; $i++) : ?>
-
 
30
										<li><?=$nom['nomVerna'][$i]['nom_vernaculaire']?></li>
-
 
31
									<? endfor; ?>
-
 
32
								</ul>
-
 
33
							</li>
-
 
34
						<?php endif; ?>
-
 
35
					</ul>
-
 
36
				<?php endif; ?>
-
 
37
				
-
 
38
				
-
 
39
				
-
 
40
				
-
 
41
			</li>
-
 
42
		<? endforeach; ?>
-
 
43
	</ul>
-
 
44
<?php endif; ?>
-
 
45
8
46