Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 527 | Rev 537 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 527 Rev 531
1
<!-- Fichier expert -->
1
<!-- Fichier expert -->
2
<? $url = htmlentities('index.php?referentiel=bdtfx&niveau=1&module=fiche&num_nom='.$num_nom.'&type_nom='.$type_nom.'&nom='.$nom.'&onglet=');?>
2
<? $url = htmlentities('index.php?referentiel=bdtfx&niveau=1&module=fiche&num_nom='.$num_nom.'&type_nom='.$type_nom.'&nom='.$nom.'&onglet=');?>
3
<script type="text/javascript">
3
<script type="text/javascript">
4
//<![CDATA[
4
//<![CDATA[
5
	var urlTexteBrutSectionWikiTpl = "<?= Config::get('texteBrutSectionWikiTpl'); ?>";
5
	var urlTexteBrutSectionWikiTpl = "<?= Config::get('texteBrutSectionWikiTpl'); ?>";
6
	var urlEditionSectionWikiTpl = "<?= Config::get('editionSectionWikiTpl'); ?>";
6
	var urlEditionSectionWikiTpl = "<?= Config::get('editionSectionWikiTpl'); ?>";
7
	var urlTexteFormateSectionWikiTpl = "<?= Config::get('texteFormateSectionWikiTpl'); ?>";
7
	var urlTexteFormateSectionWikiTpl = "<?= Config::get('texteFormateSectionWikiTpl'); ?>";
8
	var pageWikiTaxon = "<?= strtoupper($infos['referentiel']); ?>nt<?= $infos['num_tax']; ?>";
8
	var pageWikiTaxon = "<?= strtoupper($infos['referentiel']); ?>nt<?= $infos['num_tax']; ?>";
9
//]]>
9
//]]>
10
</script>
10
</script>
11
<div class="synthese">
11
<div class="synthese">
12
	<div class="colonne deuxtiers">
12
	<div class="colonne deuxtiers">
-
 
13
	
-
 
14
		<!-- Nomenclature -->
13
		<div id="synthese_illustrations" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
15
		<div id="synthese_nomenclature" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
14
			<h3 class="titre ui-widget-header ui-corner-all" id="titre-0">
16
			<h3 class="titre ui-widget-header ui-corner-all" id="titre-6">
15
				<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>illustrations">Illustrations</a>
17
				<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>nomenclature">Nomenclature</a>
16
			</h3>
18
			</h3>
17
			<span id="contenu-0" class="contenu">
19
			<div id="contenu-6" class="contenu">
-
 
20
				<h4>Nom retenu</h4>
-
 
21
				<div>
-
 
22
					<div class="nom retenu <?= ($nomenclature['nom_selectionne'] == $nomenclature['nom_retenu_formate']) ? 'surlignage' : '' ?>">
-
 
23
						<?= $nomenclature['nom_retenu_formate']; ?>
-
 
24
					</div>
18
				<?php if ($illustration['imageUrl'] != '') : ?>
25
					<?php if($nomenclature['basionyme_nom_retenu'] != '') { ?>	
19
					<img src="<?=$illustration['imageUrl']?>" alt="Image issue du cel ou du site photoflora" style="margin-bottom: -15px; margin-left: -2px; width: 210px;"/>
26
						<div class="nom"> Basionyme : <?= $nomenclature['basionyme_nom_retenu']; ?></div>
20
				<?php else : ?>
27
					<?php } ?>
-
 
28
				</div>
-
 
29
				
-
 
30
				<h4>Synonymes</h4>
21
					<span class="absent" style="float:none; margin-left:55px">
31
				<?php if($nomenclature['synonymes'] == array()) { ?>
-
 
32
					Aucun synonyme
22
						Pas de photo<br />
33
				<? } else { ?>
23
						<a href="http://www.tela-botanica.org/page:cel" 
34
					<?php foreach ($nomenclature['synonymes'] as $synonyme) : ?>
24
							title="Ajouter une photographie au moyen du Carnet en Ligne" 
35
						<div class="nom<?= ($nomenclature['nom_selectionne'] == $synonyme['nom_sci_complet']) ? ' surlignage' : '' ?>">
25
							onclick="window.open(this.href); return false;" class="contribuer">
36
							<?= $synonyme['nom_sci_complet']; ?>
26
							Contribuer
37
						</div>
-
 
38
					<?php endforeach; ?>
-
 
39
					<?php if($nomenclature['autresSynonymesNbre'] > 0) { ?>
-
 
40
						<a href="<?=$url;?>nomenclature" style="float:right;" class="lien_ouverture_onglet_parent" >et 
-
 
41
							<?= $nomenclature['autresSynonymesNbre'] ?>
-
 
42
							autre<?= ($nomenclature['autresSynonymesNbre'] > 1) ? 's' : '' ?>
-
 
43
							synonyme<?= ($nomenclature['autresSynonymesNbre'] > 1) ? 's' : '' ?>
27
						</a>
44
						</a>
28
					</span>
-
 
29
				<?php endif; ?>
45
				<?php }} ?>
30
			</span>
46
			</div>
31
		</div>
47
		</div>
-
 
48
		
-
 
49
		<!-- Classification -->
-
 
50
		<div id="synthese_classification" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
-
 
51
			<h3 class="titre ui-widget-header ui-corner-all" id="titre-5">
-
 
52
				<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>classification">Classification</a>
-
 
53
			</h3>
-
 
54
			<div id="contenu-5" class="contenu">
-
 
55
				<h4>Taxons supérieurs</h4>
-
 
56
				<?php if($classification['taxons_sup'] != array()) { ?>	
-
 
57
					<?php foreach($classification['taxons_sup'] as $taxon) : ?>	
-
 
58
						<div><?= $taxon['rang.libelle'];  ?> : <?= $taxon['nom_sci']; ?></div>
-
 
59
					<?php endforeach; ?>
-
 
60
				<?php } else { ?>	
-
 
61
					<div>Aucun taxon supérieur référencé </div>
-
 
62
				<?php } ?>	
-
 
63
				<h4>Taxons inférieurs</h4>
-
 
64
				<?php if($classification['taxons_inf'] != array()) { ?>
-
 
65
					<?php foreach($classification['taxons_inf'] as $taxon) : ?>	
-
 
66
						<div><?= $taxon['rang.libelle'];  ?> : <?= $taxon['nom_sci']; ?></div>
-
 
67
					<?php endforeach; ?>
-
 
68
				<?php } else { ?>	
-
 
69
					<div>Aucun taxon inférieur référencé </div>
-
 
70
				<?php } ?>	
-
 
71
			</div>
-
 
72
		</div>
-
 
73
		
32
		
74
		<!-- Description -->
33
		<div id="synthese_description" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
75
		<div id="synthese_description" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
34
			<h3 class="titre ui-widget-header ui-corner-all" id="titre-1">
76
			<h3 class="titre ui-widget-header ui-corner-all" id="titre-1">
35
				<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>description">Description</a>
77
				<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>description">Description</a>
36
			</h3>
78
			</h3>
37
			<div id="contenu-1" class="contenu">
79
			<div id="contenu-1" class="contenu">
38
				<h4><?= $description['titre']?></h4>
80
				<h4><?= $description['titre']?></h4>
39
				<? if ($description['description'] == '') {?>
81
				<? if ($description['description'] == '') {?>
40
					<a href="<?=$url;?>description" class="lien_ouverture_onglet_parent" >
82
					<a href="<?=$url;?>description" class="lien_ouverture_onglet_parent" >
41
						Participez à la rédaction collaborative de cette description
83
						Participez à la rédaction collaborative de cette description
42
					</a>
84
					</a>
43
				<? } else { echo $description['description'];?><br /><br />
85
				<? } else { echo $description['description'];?><br /><br />
44
					<a href="<?=$url;?>description" class="lien_ouverture_onglet_parent" >
86
					<a href="<?=$url;?>description" class="lien_ouverture_onglet_parent" >
45
						Complétez cette description
87
						Complétez cette description
46
					</a>
88
					</a>
47
				<? } ?>
89
				<? } ?>
48
			</div>
90
			</div>
49
		</div>	
91
		</div>
50
	</div>
-
 
51
	
-
 
52
	
92
		
53
	<div class="colonne">	
93
		<!-- Ecologie -->
54
		<div id="synthese_bibliographie" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
94
		<div id="synthese_ecologie" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
55
			<h3 class="titre ui-widget-header ui-corner-all" id="titre-2">
95
			<h3 class="titre ui-widget-header ui-corner-all" id="titre-8">
56
				<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>bibliographie">Bibliographie</a>
96
				<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>ecologie">Ecologie</a>
57
			</h3>
97
			</h3>
58
			<div id="contenu-2" class="contenu">
-
 
59
				<?php if (isset($bibliographie['wikini'])) { ?>
98
			<span id="contenu-8" class="contenu">
60
					<?= ($bibliographie['wikini']['biblio'] == '') ? 
99
				<? if ($ecologie['wikini']['ecologie'] == '') {?>
61
							'<a href="'.$url.'description" class="lien_ouverture_onglet_parent" >
100
					<a href="<?=$url;?>statut" class="lien_ouverture_onglet_parent" >
62
							Ajoutez votre bibliographie sur ce taxon</a>'
-
 
63
						: $bibliographie['wikini']['biblio'].
-
 
64
							'<br /><br /><a href="'.$url.'description" class="lien_ouverture_onglet_parent" >
-
 
65
								Compléter cette  bibliographie</a>'; ?>
-
 
66
				<?php } else { ?>
-
 
67
				
-
 
68
					<h4>Flores</h4>
-
 
69
					<?php if ($bibliographie['flores'] == array()) { ?>
-
 
70
						Aucune flore indiquée
-
 
71
					<?php } else { ?>
-
 
72
						<?php foreach ($bibliographie['flores'] as $flore) : ?>
-
 
73
							<div> - <?= $flore; ?> </div>
-
 
74
						<?php endforeach; ?>
-
 
75
						<?php if($bibliographie['autresFlores'] > 0) { ?>	
-
 
76
							<a href="<?=$url;?>nomenclature" style="float:right;" class="lien_ouverture_onglet_parent" >et 
-
 
77
								<?= htmlentities($bibliographie['autresFlores']) ?>
-
 
78
								autre<?= ($bibliographie['autresFlores'] > 1) ? 's' : '' ?>
-
 
79
								flore<?= ($bibliographie['autresFlores'] > 1) ? 's' : '' ?>
101
						Participez à la rédaction collaborative de l'écologie
80
							</a>
-
 
81
					<?php } } ?><br />
-
 
82
					
-
 
83
					<h4>Références</h4>
-
 
84
					<?php if ($bibliographie['references'] == array()) { ?>
-
 
85
						Aucune référence bibliographique
-
 
86
					<?php } else { ?>
-
 
87
						<?php foreach ($bibliographie['references'] as $reference) : ?>
102
					</a>
88
							<div> - <?= $reference['reference_html']; ?> </div>
-
 
89
						<?php endforeach; ?>
-
 
90
						<?php if($bibliographie['autresReferences'] > 0) { ?>
103
				<? } else { echo $ecologie['wikini']['ecologie'];?><br /><br />
91
							<a href="<?=$url;?>nomenclature" style="float:right;" class="lien_ouverture_onglet_parent" >et 
104
					<a href="<?=$url;?>ecologie" class="lien_ouverture_onglet_parent" >
92
								<?= $bibliographie['autresReferences'] ?>
-
 
93
								autre<?= ($bibliographie['autresReferences'] > 1) ? 's' : '' ?>
-
 
94
								référence<?= ($bibliographie['autresReferences'] > 1) ? 's' : '' ?>
105
						Compléter ces informations
95
							</a>
-
 
96
					<?php } } ?>
106
					</a>
97
				<?php }?>
-
 
98
			</div>
-
 
99
		</div>
-
 
100
		
-
 
101
		<div id="synthese_repartition" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
-
 
102
			<h3 class="titre ui-widget-header ui-corner-all" id="titre-3">
-
 
103
				<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>repartition">Répartition</a>
-
 
104
			</h3>
-
 
105
			<span id="contenu-3" class="contenu">
-
 
106
				<img src="<?=htmlentities($repartition['chorodep'])?>" alt="Carte de répartition"/>
-
 
107
				<img src="<?=htmlentities($repartition['eflore'])?>" alt="Carte des observations" style="margin-left: 11px; width: 190px;" />
107
				<? } ?>
108
			</span>
108
			</span>
109
		</div>
109
		</div>
-
 
110
		
110
		
111
		<!-- Ethnobotanique -->
111
		<div id="synthese_ethnobotanique" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
112
		<div id="synthese_ethnobotanique" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
112
			<h3 class="titre ui-widget-header ui-corner-all" id="titre-4">
113
			<h3 class="titre ui-widget-header ui-corner-all" id="titre-4">
113
				<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>ethnobotanique">Ethnobotanique</a>
114
				<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>ethnobotanique">Ethnobotanique</a>
114
			</h3>
115
			</h3>
115
			<div id="contenu-4" class="contenu">
116
			<div id="contenu-4" class="contenu">
116
				<h4>Noms communs</h4>
117
				<h4>Noms communs</h4>
117
				<?php if ($ethnobotanique['nomsVerna'] == array()) { ?>
118
				<?php if ($ethnobotanique['nomsVerna'] == array()) { ?>
118
					Aucun nom vernaculaire<br /><br />
119
					Aucun nom vernaculaire<br /><br />
119
					<? if ($ethnobotanique['wikini']['noms_communs'] == '') {?>
120
					<? if ($ethnobotanique['wikini']['noms_communs'] == '') {?>
120
					<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
121
					<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
121
						Participez à la rédaction collaborative de la liste des noms communs
122
						Participez à la rédaction collaborative de la liste des noms communs
122
					</a>
123
					</a>
123
				<? } else { echo $ethnobotanique['wikini']['noms_communs'];?><br /><br />
124
				<? } else { echo $ethnobotanique['wikini']['noms_communs'];?><br /><br />
124
						<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
125
						<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
125
							Compléter cette liste
126
							Compléter cette liste
126
						</a>
127
						</a>
127
					<? } ?>
128
					<? } ?>
128
				<?php } else { ?>
129
				<?php } else { ?>
129
					<?php foreach ($ethnobotanique['nomsVerna'] as $nom_verna) : ?>
130
					<?php foreach ($ethnobotanique['nomsVerna'] as $nom_verna) : ?>
130
						<div> - <?= $nom_verna['nom_vernaculaire'].' ('.$nom_verna['code_langue'].')'; ?> </div>
131
						<div> - <?= $nom_verna['nom_vernaculaire'].' ('.$nom_verna['code_langue'].')'; ?> </div>
131
					<?php endforeach; ?>
132
					<?php endforeach; ?>
132
					<?php if($ethnobotanique['autresNomsVerna'] > 0) { ?>
133
					<?php if($ethnobotanique['autresNomsVerna'] > 0) { ?>
133
						<a href="<?=$url;?>ethnobotanique" style="float:right;" class="lien_ouverture_onglet_parent" >et 
134
						<a href="<?=$url;?>ethnobotanique" style="float:right;" class="lien_ouverture_onglet_parent" >et 
134
							<?= $ethnobotanique['autresNomsVerna'] ?>
135
							<?= $ethnobotanique['autresNomsVerna'] ?>
135
							autre<?= ($ethnobotanique['autresNomsVerna'] > 1) ? 's' : '' ?>
136
							autre<?= ($ethnobotanique['autresNomsVerna'] > 1) ? 's' : '' ?>
136
							nom<?= ($ethnobotanique['autresNomsVerna'] > 1) ? 's' : '' ?>
137
							nom<?= ($ethnobotanique['autresNomsVerna'] > 1) ? 's' : '' ?>
137
						</a><br />
138
						</a><br />
138
					<?php }?>
139
					<?php }?>
139
				<?php }?>
140
				<?php }?>
140
				<h4>Usages</h4>
141
				<h4>Usages</h4>
141
				<? if ($ethnobotanique['wikini']['usage'] == '') {?>
142
				<? if ($ethnobotanique['wikini']['usage'] == '') {?>
142
					<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
143
					<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
143
						Participez à la rédaction collaborative des usages
144
						Participez à la rédaction collaborative des usages
144
					</a>
145
					</a>
145
				<? } else { echo $ethnobotanique['wikini']['usage'];?><br /><br />
146
				<? } else { echo $ethnobotanique['wikini']['usage'];?><br /><br />
146
					<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
147
					<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
147
						Compléter ces informations
148
						Compléter ces informations
148
					</a>
149
					</a>
149
				<? } ?>
150
				<? } ?>
150
				<h4>Culture et arts</h4>
151
				<h4>Culture et arts</h4>
151
				<? if ($ethnobotanique['wikini']['culture_et_arts'] == '') {?>
152
				<? if ($ethnobotanique['wikini']['culture_et_arts'] == '') {?>
152
					<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
153
					<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
153
						Participez à la rédaction collaborative sur la culture et les arts
154
						Participez à la rédaction collaborative sur la culture et les arts
154
					</a>
155
					</a>
155
				<? } else { echo $ethnobotanique['wikini']['culture_et_arts'];?><br /><br />
156
				<? } else { echo $ethnobotanique['wikini']['culture_et_arts'];?><br /><br />
156
					<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
157
					<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
157
						Compléter ces informations
158
						Compléter ces informations
158
					</a>
159
					</a>
159
				<? } ?>
160
				<? } ?>
160
			</div>
161
			</div>
161
		</div>
162
		</div>
-
 
163
		
162
	
164
		<!-- Bibliographie -->	
163
		<div id="synthese_classification" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
165
		<div id="synthese_bibliographie" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
164
			<h3 class="titre ui-widget-header ui-corner-all" id="titre-5">
166
				<h3 class="titre ui-widget-header ui-corner-all" id="titre-2">
165
				<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>classification">Classification</a>
167
					<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>bibliographie">Bibliographie</a>
166
			</h3>
168
				</h3>
167
			<div id="contenu-5" class="contenu">
169
				<div id="contenu-2" class="contenu">
168
				<h4>Taxons supérieurs</h4>
170
					<?php if (isset($bibliographie['wikini'])) { ?>
-
 
171
						<?= ($bibliographie['wikini']['biblio'] == '') ? 
169
				<?php if($classification['taxons_sup'] != array()) { ?>	
172
							'<a href="'.$url.'description" class="lien_ouverture_onglet_parent" >
-
 
173
							Ajoutez votre bibliographie sur ce taxon</a>'
170
					<?php foreach($classification['taxons_sup'] as $taxon) : ?>	
174
						: $bibliographie['wikini']['biblio'].
171
						<div><?= $taxon['rang.libelle'];  ?> : <?= $taxon['nom_sci']; ?></div>
175
							'<br /><br /><a href="'.$url.'description" class="lien_ouverture_onglet_parent" >
172
					<?php endforeach; ?>
176
								Compléter cette  bibliographie</a>'; ?>
-
 
177
					<?php } else { ?>
173
				<?php } else { ?>	
178
					
174
					<div>Aucun taxon supérieur référencé </div>
179
						<h4>Flores</h4>
175
				<?php } ?>	
180
						<?php if ($bibliographie['flores'] == array()) { ?>
176
				<h4>Taxons inférieurs</h4>
181
							Aucune flore indiquée
177
				<?php if($classification['taxons_inf'] != array()) { ?>
182
						<?php } else { ?>
178
					<?php foreach($classification['taxons_inf'] as $taxon) : ?>	
183
							<?php foreach ($bibliographie['flores'] as $flore) : ?>
179
						<div><?= $taxon['rang.libelle'];  ?> : <?= $taxon['nom_sci']; ?></div>
184
								<div> - <?= $flore; ?> </div>
-
 
185
							<?php endforeach; ?>
-
 
186
							<?php if($bibliographie['autresFlores'] > 0) { ?>	
-
 
187
								<a href="<?=$url;?>nomenclature" style="float:right;" class="lien_ouverture_onglet_parent" >et 
-
 
188
									<?= htmlentities($bibliographie['autresFlores']) ?>
-
 
189
									autre<?= ($bibliographie['autresFlores'] > 1) ? 's' : '' ?>
-
 
190
									flore<?= ($bibliographie['autresFlores'] > 1) ? 's' : '' ?>
-
 
191
								</a>
-
 
192
						<?php } } ?><br />
-
 
193
						
-
 
194
						<h4>Références</h4>
-
 
195
						<?php if ($bibliographie['references'] == array()) { ?>
180
					<?php endforeach; ?>
196
							Aucune référence bibliographique
-
 
197
						<?php } else { ?>
181
				<?php } else { ?>	
198
							<?php foreach ($bibliographie['references'] as $reference) : ?>
-
 
199
								<div> - <?= $reference['reference_html']; ?> </div>
-
 
200
							<?php endforeach; ?>
-
 
201
							<?php if($bibliographie['autresReferences'] > 0) { ?>
-
 
202
								<a href="<?=$url;?>nomenclature" style="float:right;" class="lien_ouverture_onglet_parent" >et 
-
 
203
									<?= $bibliographie['autresReferences'] ?>
-
 
204
									autre<?= ($bibliographie['autresReferences'] > 1) ? 's' : '' ?>
-
 
205
									référence<?= ($bibliographie['autresReferences'] > 1) ? 's' : '' ?>
-
 
206
								</a>
182
					<div>Aucun taxon inférieur référencé </div>
207
						<?php } } ?>
183
				<?php } ?>	
208
					<?php }?>
184
			</div>
209
				</div>
185
		</div>
210
			</div>
186
		
-
 
187
		<div id="synthese_nomenclature" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
-
 
188
			<h3 class="titre ui-widget-header ui-corner-all" id="titre-6">
-
 
189
				<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>nomenclature">Nomenclature</a>
-
 
190
			</h3>
-
 
191
			<div id="contenu-6" class="contenu">
-
 
192
				<h4>Nom retenu</h4>
-
 
193
				<div>
-
 
194
					<div class="nom retenu <?= ($nomenclature['nom_selectionne'] == $nomenclature['nom_retenu_formate']) ? 'surlignage' : '' ?>">
-
 
195
						<?= $nomenclature['nom_retenu_formate']; ?>
-
 
196
					</div>
-
 
197
					<?php if($nomenclature['basionyme_nom_retenu'] != '') { ?>	
-
 
198
						<div class="nom"> Basionyme : <?= $nomenclature['basionyme_nom_retenu']; ?></div>
-
 
199
					<?php } ?>
-
 
200
				</div>
211
	</div>
201
				
-
 
202
				<h4>Synonymes</h4>
-
 
-
 
212
	
203
				<?php if($nomenclature['synonymes'] == array()) { ?>
213
	
-
 
214
	<div class="colonne">	
204
					Aucun synonyme
215
	
205
				<? } else { ?>
216
		<!-- Illustrations -->
206
					<?php foreach ($nomenclature['synonymes'] as $synonyme) : ?>
217
		<div id="synthese_illustrations" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
207
						<div class="nom<?= ($nomenclature['nom_selectionne'] == $synonyme['nom_sci_complet']) ? ' surlignage' : '' ?>">
218
			<h3 class="titre ui-widget-header ui-corner-all" id="titre-0">
208
							<?= $synonyme['nom_sci_complet']; ?>
219
				<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>illustrations">Illustrations</a>
209
						</div>
220
			</h3>
210
					<?php endforeach; ?>
221
			<span id="contenu-0" class="contenu">
-
 
222
				<?php if ($illustration['imageUrl'] != '') : ?>
-
 
223
					<img src="<?=$illustration['imageUrl']?>" alt="Image issue du cel ou du site photoflora" style="margin-bottom: -15px; margin-left: -2px; width: 210px;"/>
211
					<?php if($nomenclature['autresSynonymesNbre'] > 0) { ?>
224
				<?php else : ?>
-
 
225
					<span class="absent" style="float:none; margin-left:55px">
212
						<a href="<?=$url;?>nomenclature" style="float:right;" class="lien_ouverture_onglet_parent" >et 
226
						Pas de photo<br />
213
							<?= $nomenclature['autresSynonymesNbre'] ?>
227
						<a href="http://www.tela-botanica.org/page:cel" 
214
							autre<?= ($nomenclature['autresSynonymesNbre'] > 1) ? 's' : '' ?>
228
							title="Ajouter une photographie au moyen du Carnet en Ligne" 
-
 
229
							onclick="window.open(this.href); return false;" class="contribuer">
215
							synonyme<?= ($nomenclature['autresSynonymesNbre'] > 1) ? 's' : '' ?>
230
							Contribuer
-
 
231
						</a>
216
						</a>
232
					</span>
-
 
233
				<?php endif; ?>
217
				<?php }} ?>
234
			</span>
-
 
235
		</div>
-
 
236
		
-
 
237
		<!-- Répartition -->
-
 
238
		<div id="synthese_repartition" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
-
 
239
			<h3 class="titre ui-widget-header ui-corner-all" id="titre-3">
-
 
240
				<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>repartition">Répartition</a>
-
 
241
			</h3>
-
 
242
			<span id="contenu-3" class="contenu">
-
 
243
				<img src="<?=htmlentities($repartition['chorodep'])?>" alt="Carte de répartition"/>
-
 
244
				<img src="<?=htmlentities($repartition['eflore'])?>" alt="Carte des observations" style="margin-left: 11px; width: 190px;" />
218
			</div>
245
			</span>
-
 
246
		</div>
219
		</div>
247
		
220
		
248
		<!-- Statut de protection -->
221
		<div id="synthese_statut" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
249
		<div id="synthese_statut" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
222
			<h3 class="titre ui-widget-header ui-corner-all" id="titre-7">
250
			<h3 class="titre ui-widget-header ui-corner-all" id="titre-7">
223
				<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>statut">Statut de protection</a>
251
				<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>statut">Statut de protection</a>
224
			</h3>
252
			</h3>
225
			<span id="contenu-7" class="contenu">
253
			<span id="contenu-7" class="contenu">
226
				<? if ($statut['wikini']['statuts_de_protection'] == '') {?>
254
				<? if ($statut['wikini']['statuts_de_protection'] == '') {?>
227
					<a href="<?=$url;?>statut" class="lien_ouverture_onglet_parent" >
255
					<a href="<?=$url;?>statut" class="lien_ouverture_onglet_parent" >
228
						Participez à la rédaction collaborative des statuts de protection
256
						Participez à la rédaction collaborative des statuts de protection
229
					</a>
257
					</a>
230
				<? } else { echo $statut['wikini']['statuts_de_protection'];?><br /><br />
258
				<? } else { echo $statut['wikini']['statuts_de_protection'];?><br /><br />
231
					<a href="<?=$url;?>statut" class="lien_ouverture_onglet_parent" >
259
					<a href="<?=$url;?>statut" class="lien_ouverture_onglet_parent" >
232
						Compléter cette liste
260
						Compléter cette liste
233
					</a>
261
					</a>
234
				<? } ?>
262
				<? } ?>
235
			</span>
263
			</span>
236
		</div>
264
		</div>
237
		<div id="synthese_ecologie" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
-
 
238
			<h3 class="titre ui-widget-header ui-corner-all" id="titre-8">
-
 
239
				<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>ecologie">Ecologie</a>
-
 
240
			</h3>
265
		
241
			<span id="contenu-8" class="contenu">
-
 
242
				<? if ($ecologie['wikini']['ecologie'] == '') {?>
-
 
243
					<a href="<?=$url;?>statut" class="lien_ouverture_onglet_parent" >
-
 
244
						Participez à la rédaction collaborative de l'écologie
-
 
245
					</a>
-
 
246
				<? } else { echo $ecologie['wikini']['ecologie'];?><br /><br />
-
 
247
					<a href="<?=$url;?>ecologie" class="lien_ouverture_onglet_parent" >
-
 
248
						Compléter ces informations
-
 
249
					</a>
-
 
250
				<? } ?>
-
 
251
			</span>
-
 
252
		</div>
-
 
253
	</div>
266
	</div>
254
	<hr class="nettoyage" />	
267
	<hr class="nettoyage" />	
255
</div>
268
</div>