Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev Author Line No. Line
641 mathilde 1
<!-- NOMENCLATURE -->
671 mathilde 2
<div class="bloc <?if ($premier == 'nomenclature') : echo 'allow-break'; else : echo 'no-break'; endif; ?>">
641 mathilde 3
	<div class="categorie"> Nomenclature </div>
4
	<!-- NOM RETENU -->
5
	<?php if(!empty($nomenclature['basionyme_nom_retenu']) || !empty($nomenclature['nom_selectionne'])
6
	 || !empty($nomenclature['nom_retenu'])   || !empty($nomenclature['nom_retenu_formate'])) :?>
7
	 	<div class="no-break">
8
			<h2>Nom retenu</h2>
1130 aurelien 9
			<span class="citation"><?= $nomenclature['synonymes']['meta']['citation']?></span>
641 mathilde 10
			<div style="float:right">
11
				<div class="legende">
12
					<b>Légende</b><br />
13
					<span class="legende_nom_retenu couleur_legende" style="margin:8px 5px 0 0"></span><span>Nom sélectionné</span>
14
				</div>
15
			</div>
16
			<div class="onglet_marge_gauche">
17
				<span class="nom retenu <?= ($nomenclature['nom_selectionne'] == $nomenclature['nom_retenu']) ? 'surlignage' : '' ?>">
18
					<?= $nomenclature['nom_retenu_formate'] ?>
19
				</span>
20
			</div>
21
			<div class="nom onglet_marge_gauche basionyme_complet">
22
				Basionyme :
23
					<?= $nomenclature['basionyme_nom_retenu'] ?>
24
			</div>
1022 raphael 25
 
26
		<?php if($nomenclature['referentiel'] != 'bdtxa'): // cf http://referentiels.tela-botanica.org/referentiel/index.php?ref=bdtxa&module=FicheTaxon&num_nom=14610  ?>
641 mathilde 27
		<div class="onglet_marge_gauche"> Dernière date de modification du nom : <?= $nomenclature['date_maj'] ?> </div>
1022 raphael 28
		<? endif; ?>
641 mathilde 29
		</div>
30
		<hr class="nettoyage" />
31
	<?php endif; ?>
32
 
33
	<!-- WIKI -->
34
	<? if (!empty($nomenclature['wikini']['nomenclature'])) :?>
35
		<div class="no-break">
36
			<span> Données collaboratives sur ce nom. </span>
669 mathilde 37
			<div  title="statuts de protection" class="wiki allow-break">
641 mathilde 38
				<?=$nomenclature['wikini']['nomenclature']?>
39
			</div>
40
		</div>
41
	<? endif; ?>
42
 
43
	<!-- SYNONYMES -->
44
	<?php if(is_array($nomenclature['synonymes']['noms']) && count($nomenclature['synonymes']['noms']) > 0) { ?>
45
		<div class="no-break">
46
			<h2>Synonymes</h2>
1130 aurelien 47
			<span class="citation"><?= $nomenclature['synonymes']['meta']['citation']?></span>
641 mathilde 48
			<?php foreach ($nomenclature['synonymes']['noms'] as $id => $synonyme) : ?>
49
				<ul class="allow-break">
50
					<li class="item_nomenclature">
51
						<span class="nom <?= ($nomenclature['nom_selectionne'] == $synonyme['nom_sci']) ? 'surlignage' : '' ?>">
52
							<?= $synonyme['nom_sci_complet']  ?>
53
						</span>
54
						<span class="nom basionyme_complet">
55
							<?= ($synonyme['basionyme_html_complet']) ? "Basionyme : ".$synonyme['basionyme_html_complet'] : ''; ?>
56
						</span>
57
					</li>
58
				</ul>
59
			<?php endforeach; ?>
60
		<hr class="nettoyage" />
61
		</div>
62
	<?php } ?>
845 delphine 63
 
64
	<div class="no-break">
1022 raphael 65
		<?php if (!empty($nomenclature['taxons_sup'])) : ?>
845 delphine 66
		<h2> Place du taxon dans la classification </h2>
1130 aurelien 67
		<span class="citation"><?= $nomenclature['meta']['citation']?></span>
845 delphine 68
		<table class="allow-break">
69
			<tr>
70
				<th>Rang</th><th>Nom Scientifique</th><th>Num Nom</th>
71
			</tr>
72
 
847 delphine 73
				<?php foreach ($nomenclature['taxons_sup']  as $taxon) : ?>
845 delphine 74
					<tr>
75
						<td><?= $taxon['rang.libelle'] ?></td>
76
						<td><?= $taxon['nom_sci'] ?></td>
77
						<td><?= $taxon['num_nom'] ?></td>
78
					</tr>
79
				<?php endforeach; ?>
80
 
81
			<tr class="surlignage">
82
				<td><?= $nomenclature['taxon_courant']['rang.libelle'] ?></td>
83
				<td><?= $nomenclature['taxon_courant']['nom_sci'] ?></td>
84
				<td><?= $nomenclature['taxon_courant']['num_nom'] ?></td>
85
			</tr>
86
 
1022 raphael 87
			<?php if (!empty($nomenclature['taxons_inf'])) : ?>
845 delphine 88
				<?php foreach($nomenclature['taxons_inf'] as $taxon) : ?>
89
					<tr>
90
						<td><?= $taxon['rang.libelle'] ?></td>
91
						<td><?= $taxon['nom_sci'] ?></td>
92
						<td><?= $taxon['num_nom'] ?></td>
93
					</tr>
94
				<?php endforeach; ?>
95
			<?php endif; ?>
96
		</table>
97
		<?php endif; ?>
98
		</div>
641 mathilde 99
 
845 delphine 100
		<!-- VIDE DE DONNEES -->
852 mathilde 101
	<?php if ( empty($nomenclature['taxons_sup']) && empty($nomenclature['taxon_inf'] ) ) : ?>
845 delphine 102
	Aucune donnée.
103
	<?php endif; ?>
104
	<br/>
641 mathilde 105
 
106
	<!-- FLORES -->
107
	<?php if(is_array($nomenclature['flores_synonymes']) && count($nomenclature['flores_synonymes']) > 0) { ?>
108
	<div class="no-break">
109
		<h2>Flores</h2>
1130 aurelien 110
		<span class="citation"><?= $nomenclature['synonymes']['meta']['citation']?></span>
641 mathilde 111
 
112
		<?php foreach ($nomenclature['flores_synonymes'] as $num_nom_syn => $infos_flore) : ?>
113
			<?php foreach ($infos_flore as $code => $flore) : ?>
114
				<ul class="allow-break">
115
					<li class="item_nomenclature">
116
						<div class="nom">
117
							Dans la flore <em><?= $flore['nom_flore'] ?></em>,
118
							ce taxon porte le nom de <em><?= $flore['nom_sci']  ?></em>
119
							et le code <b><?= $flore['id'] ?></b><br />
120
						</div>
121
					</li>
122
				</ul>
123
			<?php endforeach; ?>
124
		<?php endforeach; ?>
125
	</div>
126
	<hr class="nettoyage" />
127
	<?php } ?>
128
 
129
	<!-- num type -->
130
	<?php if($nomenclature['num_type'] != null) { ?>
131
		<h3> Autres </h3>
132
		<ul>
133
			<li class="item_nomenclature">
134
				<span class="nom">Numéro du type : <?= $nomenclature['num_type'] ?></span>
135
			</li>
136
		</ul>
137
	<?php } ?>
138
 
139
	<!-- VIDE DE DONNEES -->
140
	<?php if ( empty($nomenclature['basionyme_nom_retenu']) && empty($nomenclature['nom_retenu_formate'] )
141
	&& empty($nomenclature['nom_selectionne'] ) && empty($nomenclature['synonymes']['noms'] )
142
	&& empty($nomenclature['nom_retenu']) && empty($nomenclature['flores_synonymes'])
143
	&& empty($nomenclature['num_type'])) : ?>
144
	Aucune donnée.
145
	<?php endif; ?>
146
</div>
147
<br/>
1022 raphael 148
<br/>