Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 1428 | 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
 
1461 mathias 106
	<!-- FLORES -->
107
		<?php if(is_array($nomenclature['flores_synonymes']) && count($nomenclature['flores_synonymes']) > 0) { ?>
108
		<h2>Dénomination dans les flores usuelles</h2>
109
			<ul>
110
			<?php foreach ($nomenclature['flores_synonymes'] as $infos_flore) : ?>
111
				<li class="item_nomenclature">
112
					<div>
113
						Ce taxon est noté dans la flore <em><?= $infos_flore['nom_flore'] ?></em>
114
						<?php if(isset($infos_flore['num'])) { ?>
115
							sous :<br /><ul>
116
							<?php foreach ($infos_flore['num'] as $code => $flore) : ?>
117
									<li>le nom de <em><?= $flore['nom_sci']  ?></em>
118
									et <?=$infos_flore['type']?> <b><?= $flore['id'] ?></b><?=($flore['statut']) ? ' en tant que '.$flore['statut'] : ''?><br /></li>
119
 
120
							<?php endforeach; ?>
121
							</ul>
122
						<?php } else { ?>
123
 
124
						<?php } ?>
125
				</div>
126
			</li>
641 mathilde 127
			<?php endforeach; ?>
1461 mathias 128
			</ul><hr class="nettoyage" />
129
		<?php } ?>
641 mathilde 130
 
1461 mathias 131
 
641 mathilde 132
	<!-- num type -->
133
	<?php if($nomenclature['num_type'] != null) { ?>
134
		<h3> Autres </h3>
135
		<ul>
136
			<li class="item_nomenclature">
137
				<span class="nom">Numéro du type : <?= $nomenclature['num_type'] ?></span>
138
			</li>
139
		</ul>
140
	<?php } ?>
141
 
142
	<!-- VIDE DE DONNEES -->
143
	<?php if ( empty($nomenclature['basionyme_nom_retenu']) && empty($nomenclature['nom_retenu_formate'] )
144
	&& empty($nomenclature['nom_selectionne'] ) && empty($nomenclature['synonymes']['noms'] )
145
	&& empty($nomenclature['nom_retenu']) && empty($nomenclature['flores_synonymes'])
146
	&& empty($nomenclature['num_type'])) : ?>
147
	Aucune donnée.
148
	<?php endif; ?>
149
</div>
150
<br/>
1022 raphael 151
<br/>