Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 456 Rev 468
Line 1... Line 1...
1
<div id="classification">
1
<div id="classification">
2
	<h2>Taxons Supérieurs</h2>
2
	<h2>Place du taxon dans la classification</h2>
3
	<?php if($taxons_sup != array()) { ?>	
-
 
4
	<table class="liste_taxons_superieurs">
3
	<table class="liste_taxons_superieurs">
5
		<tr>
4
		<tr>
6
		<th>Rang</th><th>Nom Scientifique</th><th>Num Nom</th>
5
			<th>Rang</th><th>Nom Scientifique</th><th>Num Nom</th>
7
		</tr>
6
		</tr>
-
 
7
		<?php if($taxons_sup != array()) { ?>
8
	<?php foreach($taxons_sup as $taxon) : ?>
8
			<?php foreach($taxons_sup as $taxon) : ?>
9
		<tr>
9
				<tr>
10
			<td><?= $taxon['rang.libelle']  ?></td>
10
					<td><?= $taxon['rang.libelle'] ?></td>
11
			<td><a title="Voir la fiche de ce nom" href="<?= $urls->obtenirUrlFiche($taxon['num_nom'],'nom_scientifique', $taxon['nom_sci']); ?>">
11
					<td><a title="Voir la fiche de ce nom" href="<?= $urls->obtenirUrlFiche($taxon['num_nom'],'nom_scientifique', $taxon['nom_sci']); ?>">
12
					<?= $taxon['nom_sci']  ?>
12
							<?= $taxon['nom_sci'] ?>
13
				</a>
13
						</a>
14
			</td>
14
					</td>
15
			<td><?= $taxon['num_nom']  ?></td>
15
					<td><?= $taxon['num_nom'] ?></td>
16
		</tr>
16
				</tr>
17
	<?php endforeach; ?>
17
			<?php endforeach; ?>
18
	</table>
-
 
19
	<?php } else { ?>	
-
 
20
		<h3 class="aucune_info"> Aucun taxon supérieur référencé </h3>
-
 
21
	<?php } ?>	
18
		<?php } ?>
22
	
-
 
23
	<h2>Taxons Inférieurs</h2>
-
 
24
	<?php if($taxons_inf != array()) { ?>	
-
 
25
	<table class="liste_taxons_inferieurs">
19
		<tr class='surlignage'>
26
		<tr>
-
 
27
		<th>Rang</th><th>Nom Scientifique</th><th>Num Nom</th>
-
 
28
		</tr>
-
 
29
	<?php foreach($taxons_inf as $taxon) : ?>
-
 
30
		<tr>
-
 
31
			<td><?= $taxon['rang.libelle']  ?></td>
20
			<td><?= $taxon_courant['rang.libelle'] ?></td>
32
			<td>
-
 
33
				<a  title="Voir la fiche de ce nom" href="<?= $urls->obtenirUrlFiche($taxon['num_nom'],'nom_scientifique', $taxon['nom_sci']); ?>">
-
 
34
					<?= $taxon['nom_sci']  ?>
21
			<td><?= $taxon_courant['nom_sci'] ?></td>
35
				</a>
-
 
36
			</td>
-
 
37
			<td><?= $taxon['num_nom']  ?></td>
22
			<td><?= $taxon_courant['num_nom'] ?></td>
38
		</tr>
23
		</tr>
-
 
24
		<?php if($taxons_inf != array()) { ?>	
-
 
25
			<?php foreach($taxons_inf as $taxon) : ?>
-
 
26
				<tr>
-
 
27
					<td><?= $taxon['rang.libelle'] ?></td>
-
 
28
					<td>
-
 
29
						<a  title="Voir la fiche de ce nom" href="<?= $urls->obtenirUrlFiche($taxon['num_nom'],'nom_scientifique', $taxon['nom_sci']); ?>">
-
 
30
							<?= $taxon['nom_sci'] ?>
-
 
31
						</a>
-
 
32
					</td>
-
 
33
					<td><?= $taxon['num_nom'] ?></td>
-
 
34
				</tr>
39
	<?php endforeach; ?>
35
			<?php endforeach; ?>
-
 
36
		<?php } ?>
40
	</table>
37
	</table>
41
	<?php } else { ?>	
-
 
42
		<h3 class="aucune_info"> Aucun taxon inférieur référencé </h3>
-
 
43
	<?php } ?>
-
 
44
	<div class="conteneur_lien_metadonnees">
38
	<div class="conteneur_lien_metadonnees">
45
		<?= $meta['titre']?>
39
		<?= $meta['titre']?>
46
		<span class="conteneur_lien_metadonnees">
40
		<span class="conteneur_lien_metadonnees">
47
			<a class="lien_metadonnees lien_popup" href="<?= $meta['url']; ?>">Voir toutes les metadonnées</a>
41
			<a class="lien_metadonnees lien_popup" href="<?= $meta['url']; ?>">Voir toutes les metadonnées</a>
48
		</span>
42
		</span>