527 |
gduche |
1 |
<!-- Fichier expert -->
|
525 |
gduche |
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">
|
|
|
4 |
//<![CDATA[
|
|
|
5 |
var urlTexteBrutSectionWikiTpl = "<?= Config::get('texteBrutSectionWikiTpl'); ?>";
|
|
|
6 |
var urlEditionSectionWikiTpl = "<?= Config::get('editionSectionWikiTpl'); ?>";
|
|
|
7 |
var urlTexteFormateSectionWikiTpl = "<?= Config::get('texteFormateSectionWikiTpl'); ?>";
|
|
|
8 |
var pageWikiTaxon = "<?= strtoupper($infos['referentiel']); ?>nt<?= $infos['num_tax']; ?>";
|
|
|
9 |
//]]>
|
|
|
10 |
</script>
|
|
|
11 |
<div class="synthese">
|
|
|
12 |
<div class="colonne deuxtiers">
|
531 |
gduche |
13 |
|
|
|
14 |
<!-- Nomenclature -->
|
|
|
15 |
<div id="synthese_nomenclature" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
|
|
|
16 |
<h3 class="titre ui-widget-header ui-corner-all" id="titre-6">
|
|
|
17 |
<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>nomenclature">Nomenclature</a>
|
525 |
gduche |
18 |
</h3>
|
531 |
gduche |
19 |
<div id="contenu-6" class="contenu">
|
829 |
delphine |
20 |
<h4>Taxons supérieurs</h4>
|
846 |
delphine |
21 |
<?php if($nomenclature['taxons_sup'] != array()) { ?>
|
|
|
22 |
<?php foreach($nomenclature['taxons_sup'] as $taxon) : ?>
|
829 |
delphine |
23 |
<div><?= $taxon['rang.libelle']; ?> : <?= $taxon['nom_sci']; ?></div>
|
|
|
24 |
<?php endforeach; ?>
|
|
|
25 |
<?php } else { ?>
|
|
|
26 |
<div>Aucun taxon supérieur référencé </div>
|
|
|
27 |
<?php } ?>
|
|
|
28 |
|
531 |
gduche |
29 |
<h4>Nom retenu</h4>
|
|
|
30 |
<div>
|
|
|
31 |
<div class="nom retenu <?= ($nomenclature['nom_selectionne'] == $nomenclature['nom_retenu_formate']) ? 'surlignage' : '' ?>">
|
|
|
32 |
<?= $nomenclature['nom_retenu_formate']; ?>
|
|
|
33 |
</div>
|
|
|
34 |
<?php if($nomenclature['basionyme_nom_retenu'] != '') { ?>
|
|
|
35 |
<div class="nom"> Basionyme : <?= $nomenclature['basionyme_nom_retenu']; ?></div>
|
|
|
36 |
<?php } ?>
|
|
|
37 |
</div>
|
|
|
38 |
<h4>Synonymes</h4>
|
|
|
39 |
<?php if($nomenclature['synonymes'] == array()) { ?>
|
|
|
40 |
Aucun synonyme
|
|
|
41 |
<? } else { ?>
|
|
|
42 |
<?php foreach ($nomenclature['synonymes'] as $synonyme) : ?>
|
|
|
43 |
<div class="nom<?= ($nomenclature['nom_selectionne'] == $synonyme['nom_sci_complet']) ? ' surlignage' : '' ?>">
|
|
|
44 |
<?= $synonyme['nom_sci_complet']; ?>
|
|
|
45 |
</div>
|
|
|
46 |
<?php endforeach; ?>
|
|
|
47 |
<?php if($nomenclature['autresSynonymesNbre'] > 0) { ?>
|
|
|
48 |
<a href="<?=$url;?>nomenclature" style="float:right;" class="lien_ouverture_onglet_parent" >et
|
|
|
49 |
<?= $nomenclature['autresSynonymesNbre'] ?>
|
|
|
50 |
autre<?= ($nomenclature['autresSynonymesNbre'] > 1) ? 's' : '' ?>
|
|
|
51 |
synonyme<?= ($nomenclature['autresSynonymesNbre'] > 1) ? 's' : '' ?>
|
525 |
gduche |
52 |
</a>
|
531 |
gduche |
53 |
<?php }} ?>
|
829 |
delphine |
54 |
|
531 |
gduche |
55 |
<h4>Taxons inférieurs</h4>
|
846 |
delphine |
56 |
<?php if($nomenclature['taxons_inf'] != array()) { ?>
|
|
|
57 |
<?php foreach($nomenclature['taxons_inf'] as $taxon) : ?>
|
531 |
gduche |
58 |
<div><?= $taxon['rang.libelle']; ?> : <?= $taxon['nom_sci']; ?></div>
|
|
|
59 |
<?php endforeach; ?>
|
|
|
60 |
<?php } else { ?>
|
|
|
61 |
<div>Aucun taxon inférieur référencé </div>
|
|
|
62 |
<?php } ?>
|
|
|
63 |
</div>
|
|
|
64 |
</div>
|
|
|
65 |
|
|
|
66 |
<!-- Description -->
|
525 |
gduche |
67 |
<div id="synthese_description" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
|
|
|
68 |
<h3 class="titre ui-widget-header ui-corner-all" id="titre-1">
|
|
|
69 |
<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>description">Description</a>
|
|
|
70 |
</h3>
|
|
|
71 |
<div id="contenu-1" class="contenu">
|
|
|
72 |
<h4><?= $description['titre']?></h4>
|
609 |
mathilde |
73 |
<? if ($description['description'] != '') : ?>
|
608 |
mathilde |
74 |
<? if($description['titre'] == 'Description Baseflor') : ?>
|
|
|
75 |
<table class="desc">
|
579 |
mathilde |
76 |
<tr>
|
608 |
mathilde |
77 |
<td colspan="2">
|
|
|
78 |
<?if ($description['description']['type_bio'] != '') : ?>
|
|
|
79 |
<span class="titre">Type Biologique :</span> <?=$description['description']['type_bio']; ?><br/>
|
|
|
80 |
<? endif; ?>
|
579 |
mathilde |
81 |
</td>
|
|
|
82 |
</tr>
|
608 |
mathilde |
83 |
<tr>
|
|
|
84 |
<td colspan="2">
|
|
|
85 |
<? if ($description['description']['form_vegetale'] != '') : ?>
|
|
|
86 |
<span class="titre">Forme végétale :</span> <?=$description['description']['form_vegetale']; ?><br/>
|
|
|
87 |
<? endif; ?>
|
|
|
88 |
</td>
|
|
|
89 |
</tr>
|
|
|
90 |
<tr>
|
|
|
91 |
<td colspan="2">
|
|
|
92 |
<? if ($description['description']['chorologie'] != ''): ?>
|
|
|
93 |
<span class="titre">Chorologie : </span> <?=$description['description']['chorologie']; ?><br/>
|
|
|
94 |
<? endif; ?>
|
571 |
mathilde |
95 |
</td>
|
|
|
96 |
</tr>
|
|
|
97 |
<tr>
|
608 |
mathilde |
98 |
<td >
|
|
|
99 |
<? if ($description['description']['inflorescence'] != '') : ?>
|
|
|
100 |
<span class="titre">Inflorescence :</span> <?=$description['description']['inflorescence']; ?><br/>
|
|
|
101 |
<? endif; ?>
|
|
|
102 |
<? if ($description['description']['fruit'] != '') : ?>
|
|
|
103 |
<span class="titre">Fruit :</span> <?=$description['description']['fruit']; ?><br/>
|
|
|
104 |
<? endif; ?>
|
|
|
105 |
<? if ($description['description']['couleur_fleur'] != '') : ?>
|
|
|
106 |
<span class="titre">Couleur de la fleur : </span> <?=$description['description']['couleur_fleur']; ?><br/>
|
|
|
107 |
<? endif; ?>
|
|
|
108 |
<? if ($description['description']['macule'] != '') : ?>
|
|
|
109 |
<span class="titre">Macule :</span> <?=$description['description']['macule']; ?><br/>
|
|
|
110 |
<? endif; ?>
|
|
|
111 |
<? if ($description['description']['floraison'] != '') : ?>
|
|
|
112 |
<span class="titre">Floraison :</span> <?=$description['description']['floraison']; ?><br/>
|
|
|
113 |
<? endif; ?>
|
571 |
mathilde |
114 |
</td>
|
608 |
mathilde |
115 |
<td>
|
|
|
116 |
<? if ($description['description']['sexualite'] != '') : ?>
|
|
|
117 |
<span class="titre">Sexualité : </span> <?=$description['description']['sexualite']; ?><br/>
|
|
|
118 |
<? endif; ?>
|
|
|
119 |
<?if ($description['description']['ordre_maturation'] != '') : ?>
|
|
|
120 |
<span class="titre">Ordre de maturation : </span> <?=$description['description']['ordre_maturation']; ?><br/>
|
|
|
121 |
<? endif; ?>
|
|
|
122 |
<? if ($description['description']['pollinisation'] != '') : ?>
|
|
|
123 |
<span class="titre">Pollinisation : </span> <?=$description['description']['pollinisation']; ?><br/>
|
|
|
124 |
<? endif; ?>
|
|
|
125 |
<? if ($description['description']['dissemination'] != '') : ?>
|
|
|
126 |
<span class="titre">Dissémination : </span><?=$description['description']['dissemination']; ?><br/>
|
|
|
127 |
<? endif; ?>
|
|
|
128 |
</td>
|
571 |
mathilde |
129 |
</tr>
|
608 |
mathilde |
130 |
</table>
|
|
|
131 |
<? elseif($description['titre'] == 'Description de Coste') : ?>
|
|
|
132 |
<table class="desc">
|
571 |
mathilde |
133 |
<tr>
|
608 |
mathilde |
134 |
<td>
|
|
|
135 |
<?if ($description['description']['nom_scientifique'] != '') : ?>
|
|
|
136 |
<span class="gras">
|
|
|
137 |
<?=$description['description']['nom_scientifique']; ?>
|
|
|
138 |
</span>
|
579 |
mathilde |
139 |
<? endif; ?>
|
608 |
mathilde |
140 |
<?if ($description['description']['nom_commun'] != '') : ?>
|
|
|
141 |
<span class="italique">
|
|
|
142 |
<?=$description['description']['nom_commun']; ?>
|
|
|
143 |
</span>
|
|
|
144 |
<? endif; ?>
|
571 |
mathilde |
145 |
</td>
|
608 |
mathilde |
146 |
</tr>
|
|
|
147 |
<?if ($description['description']['synonymes'] != '') : ?>
|
|
|
148 |
<tr>
|
|
|
149 |
<td>
|
|
|
150 |
<span class="titre">Synonymes </span>
|
|
|
151 |
<?=$description['description']['synonymes']; ?>
|
|
|
152 |
</td>
|
|
|
153 |
</tr>
|
|
|
154 |
<? endif; ?>
|
|
|
155 |
<tr>
|
|
|
156 |
<td>
|
|
|
157 |
<?if ($description['description']['texte'] != '') : ?>
|
|
|
158 |
<?=$description['description']['texte']; ?>
|
|
|
159 |
<br/>
|
|
|
160 |
<? endif; ?>
|
594 |
delphine |
161 |
</td>
|
|
|
162 |
</tr>
|
608 |
mathilde |
163 |
<?if ($description['description']['ecologie'] != '') : ?>
|
|
|
164 |
<tr>
|
|
|
165 |
<td>
|
|
|
166 |
<span class="titre">Écologie </span>
|
|
|
167 |
<?=$description['description']['ecologie']; ?>
|
|
|
168 |
</td>
|
|
|
169 |
</tr>
|
|
|
170 |
<? endif; ?>
|
|
|
171 |
<?if ($description['description']['repartition'] != '') : ?>
|
|
|
172 |
<tr>
|
|
|
173 |
<td>
|
|
|
174 |
<span class="titre">Répartition </span>
|
|
|
175 |
<?=$description['description']['repartition']; ?>
|
|
|
176 |
</td>
|
|
|
177 |
</tr>
|
|
|
178 |
<? endif; ?>
|
|
|
179 |
<?if ($description['description']['floraison'] != '') : ?>
|
|
|
180 |
<tr>
|
|
|
181 |
<td>
|
|
|
182 |
<span class="titre">Floraison </span>
|
|
|
183 |
<?=$description['description']['floraison']; ?>
|
|
|
184 |
<?if ($description['description']['fructification'] != '') : ?>
|
|
|
185 |
<span class="titre">Fructification </span>
|
|
|
186 |
<?=$description['description']['fructification']; ?>
|
|
|
187 |
<? endif; ?>
|
|
|
188 |
</td>
|
|
|
189 |
</tr>
|
|
|
190 |
<? endif; ?>
|
|
|
191 |
<?if ($description['description']['usages'] != '') : ?>
|
|
|
192 |
<tr>
|
|
|
193 |
<td>
|
|
|
194 |
<span class="titre">Usages</span>
|
|
|
195 |
<?=$description['description']['usages']; ?>
|
|
|
196 |
</td>
|
|
|
197 |
</tr>
|
|
|
198 |
<? endif; ?>
|
|
|
199 |
</table>
|
|
|
200 |
<? else : ?>
|
|
|
201 |
<?=$description['description'];?>
|
|
|
202 |
<? endif;?>
|
|
|
203 |
|
571 |
mathilde |
204 |
<? endif;?>
|
537 |
mathilde |
205 |
<a href="<?=$url;?>description" class="lien_ouverture_onglet_parent" >
|
|
|
206 |
Complétez cette description
|
|
|
207 |
</a>
|
525 |
gduche |
208 |
</div>
|
|
|
209 |
</div>
|
|
|
210 |
|
531 |
gduche |
211 |
<!-- Ecologie -->
|
|
|
212 |
<div id="synthese_ecologie" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
|
|
|
213 |
<h3 class="titre ui-widget-header ui-corner-all" id="titre-8">
|
|
|
214 |
<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>ecologie">Ecologie</a>
|
525 |
gduche |
215 |
</h3>
|
594 |
delphine |
216 |
<div id="contenu-8" class="contenu">
|
823 |
mathilde |
217 |
<h4><?=$ecologie['graph']['titre']?></h4>
|
|
|
218 |
<? if (empty($ecologie['graph']['description'])) : ?>
|
|
|
219 |
<? if ($ecologie['graph']['wikini']['ecologie'] == '') :?>
|
556 |
mathilde |
220 |
<a href="<?=$url;?>statut" class="lien_ouverture_onglet_parent" >
|
|
|
221 |
Participez à la rédaction collaborative de l'écologie
|
|
|
222 |
</a>
|
823 |
mathilde |
223 |
<? else : echo $ecologie['graph']['wikini']['ecologie'];?><br /><br />
|
556 |
mathilde |
224 |
<a href="<?=$url;?>ecologie" class="lien_ouverture_onglet_parent" >
|
608 |
mathilde |
225 |
Complétez ces informations.
|
556 |
mathilde |
226 |
</a>
|
|
|
227 |
<? endif; ?>
|
|
|
228 |
<? else : ?>
|
839 |
mathilde |
229 |
<? if (isset($ecologie['graph']['description']['climat_url'])) :?>
|
556 |
mathilde |
230 |
<div class="fond_graphique">
|
|
|
231 |
<span class="titre">caractéristiques climatiques</span>
|
|
|
232 |
<div class="graphique">
|
823 |
mathilde |
233 |
<object type="image/svg+xml" data="<?=$ecologie['graph']['description']['climat_url']?>"
|
|
|
234 |
class="svg" alt="<?=$ecologie['graph']['description']['climat_url_png']?>" >
|
556 |
mathilde |
235 |
</object>
|
|
|
236 |
</div>
|
839 |
mathilde |
237 |
<?endif;?>
|
|
|
238 |
<? if (isset($ecologie['graph']['description']['sol_url'])) :?>
|
556 |
mathilde |
239 |
<span class="titre">caractéristiques du sol</span>
|
|
|
240 |
<div class="graphique">
|
823 |
mathilde |
241 |
<object type="image/svg+xml" data="<?=$ecologie['graph']['description']['sol_url']?>"
|
|
|
242 |
class="svg" alt="<?=$ecologie['graph']['description']['sol_url_png']?>" >
|
556 |
mathilde |
243 |
</object>
|
|
|
244 |
</div>
|
839 |
mathilde |
245 |
<?endif;?>
|
608 |
mathilde |
246 |
<a href="<?=$url;?>ecologie" class="lien_ouverture_onglet_parent">
|
|
|
247 |
Voir les références
|
|
|
248 |
</a>
|
823 |
mathilde |
249 |
</div>
|
|
|
250 |
|
|
|
251 |
<? endif; ?>
|
|
|
252 |
<? if (!empty($ecologie['phytosocio']['description'])) : ?>
|
|
|
253 |
<h4>Phytosociologie</h4>
|
|
|
254 |
<span class="gras">
|
|
|
255 |
<?=$ecologie['phytosocio']['description'][0]['niveau.libelle']?> -
|
|
|
256 |
<?=$ecologie['phytosocio']['description'][0]['code_catminat']?>
|
|
|
257 |
</span> <br/>
|
|
|
258 |
<?=$ecologie['phytosocio']['description'][0]['syntaxon']?> -
|
|
|
259 |
<span class="italique">
|
|
|
260 |
<?=$ecologie['phytosocio']['description'][0]['physio_biotype']?>
|
|
|
261 |
</span>
|
|
|
262 |
<? endif; ?>
|
|
|
263 |
<br/>
|
608 |
mathilde |
264 |
<br/>
|
823 |
mathilde |
265 |
<a href="<?=$url;?>ecologie" class="lien_ouverture_onglet_parent">
|
608 |
mathilde |
266 |
Complétez nos données sur l'écologie.
|
823 |
mathilde |
267 |
</a>
|
608 |
mathilde |
268 |
|
594 |
delphine |
269 |
</div>
|
525 |
gduche |
270 |
</div>
|
|
|
271 |
|
531 |
gduche |
272 |
<!-- Ethnobotanique -->
|
525 |
gduche |
273 |
<div id="synthese_ethnobotanique" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
|
|
|
274 |
<h3 class="titre ui-widget-header ui-corner-all" id="titre-4">
|
|
|
275 |
<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>ethnobotanique">Ethnobotanique</a>
|
|
|
276 |
</h3>
|
|
|
277 |
<div id="contenu-4" class="contenu">
|
|
|
278 |
<h4>Noms communs</h4>
|
|
|
279 |
<?php if ($ethnobotanique['nomsVerna'] == array()) { ?>
|
|
|
280 |
Aucun nom vernaculaire<br /><br />
|
|
|
281 |
<? if ($ethnobotanique['wikini']['noms_communs'] == '') {?>
|
|
|
282 |
<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
|
|
|
283 |
Participez à la rédaction collaborative de la liste des noms communs
|
|
|
284 |
</a>
|
|
|
285 |
<? } else { echo $ethnobotanique['wikini']['noms_communs'];?><br /><br />
|
|
|
286 |
<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
|
|
|
287 |
Compléter cette liste
|
|
|
288 |
</a>
|
|
|
289 |
<? } ?>
|
|
|
290 |
<?php } else { ?>
|
|
|
291 |
<?php foreach ($ethnobotanique['nomsVerna'] as $nom_verna) : ?>
|
|
|
292 |
<div> - <?= $nom_verna['nom_vernaculaire'].' ('.$nom_verna['code_langue'].')'; ?> </div>
|
|
|
293 |
<?php endforeach; ?>
|
|
|
294 |
<?php if($ethnobotanique['autresNomsVerna'] > 0) { ?>
|
|
|
295 |
<a href="<?=$url;?>ethnobotanique" style="float:right;" class="lien_ouverture_onglet_parent" >et
|
|
|
296 |
<?= $ethnobotanique['autresNomsVerna'] ?>
|
|
|
297 |
autre<?= ($ethnobotanique['autresNomsVerna'] > 1) ? 's' : '' ?>
|
|
|
298 |
nom<?= ($ethnobotanique['autresNomsVerna'] > 1) ? 's' : '' ?>
|
|
|
299 |
</a><br />
|
|
|
300 |
<?php }?>
|
|
|
301 |
<?php }?>
|
|
|
302 |
<h4>Usages</h4>
|
|
|
303 |
<? if ($ethnobotanique['wikini']['usage'] == '') {?>
|
|
|
304 |
<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
|
|
|
305 |
Participez à la rédaction collaborative des usages
|
|
|
306 |
</a>
|
|
|
307 |
<? } else { echo $ethnobotanique['wikini']['usage'];?><br /><br />
|
|
|
308 |
<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
|
|
|
309 |
Compléter ces informations
|
|
|
310 |
</a>
|
|
|
311 |
<? } ?>
|
|
|
312 |
<h4>Culture et arts</h4>
|
|
|
313 |
<? if ($ethnobotanique['wikini']['culture_et_arts'] == '') {?>
|
|
|
314 |
<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
|
|
|
315 |
Participez à la rédaction collaborative sur la culture et les arts
|
|
|
316 |
</a>
|
|
|
317 |
<? } else { echo $ethnobotanique['wikini']['culture_et_arts'];?><br /><br />
|
|
|
318 |
<a href="<?=$url;?>ethnobotanique" class="lien_ouverture_onglet_parent" >
|
609 |
mathilde |
319 |
Compléter ces informations.
|
525 |
gduche |
320 |
</a>
|
|
|
321 |
<? } ?>
|
|
|
322 |
</div>
|
|
|
323 |
</div>
|
531 |
gduche |
324 |
|
|
|
325 |
<!-- Bibliographie -->
|
|
|
326 |
<div id="synthese_bibliographie" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
|
|
|
327 |
<h3 class="titre ui-widget-header ui-corner-all" id="titre-2">
|
|
|
328 |
<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>bibliographie">Bibliographie</a>
|
|
|
329 |
</h3>
|
|
|
330 |
<div id="contenu-2" class="contenu">
|
|
|
331 |
<?php if (isset($bibliographie['wikini'])) { ?>
|
|
|
332 |
<?= ($bibliographie['wikini']['biblio'] == '') ?
|
|
|
333 |
'<a href="'.$url.'description" class="lien_ouverture_onglet_parent" >
|
|
|
334 |
Ajoutez votre bibliographie sur ce taxon</a>'
|
|
|
335 |
: $bibliographie['wikini']['biblio'].
|
|
|
336 |
'<br /><br /><a href="'.$url.'description" class="lien_ouverture_onglet_parent" >
|
|
|
337 |
Compléter cette bibliographie</a>'; ?>
|
|
|
338 |
<?php } else { ?>
|
|
|
339 |
|
|
|
340 |
<h4>Flores</h4>
|
|
|
341 |
<?php if ($bibliographie['flores'] == array()) { ?>
|
|
|
342 |
Aucune flore indiquée
|
|
|
343 |
<?php } else { ?>
|
|
|
344 |
<?php foreach ($bibliographie['flores'] as $flore) : ?>
|
|
|
345 |
<div> - <?= $flore; ?> </div>
|
|
|
346 |
<?php endforeach; ?>
|
|
|
347 |
<?php if($bibliographie['autresFlores'] > 0) { ?>
|
|
|
348 |
<a href="<?=$url;?>nomenclature" style="float:right;" class="lien_ouverture_onglet_parent" >et
|
|
|
349 |
<?= htmlentities($bibliographie['autresFlores']) ?>
|
|
|
350 |
autre<?= ($bibliographie['autresFlores'] > 1) ? 's' : '' ?>
|
|
|
351 |
flore<?= ($bibliographie['autresFlores'] > 1) ? 's' : '' ?>
|
|
|
352 |
</a>
|
|
|
353 |
<?php } } ?><br />
|
|
|
354 |
|
|
|
355 |
<h4>Références</h4>
|
|
|
356 |
<?php if ($bibliographie['references'] == array()) { ?>
|
|
|
357 |
Aucune référence bibliographique
|
|
|
358 |
<?php } else { ?>
|
|
|
359 |
<?php foreach ($bibliographie['references'] as $reference) : ?>
|
|
|
360 |
<div> - <?= $reference['reference_html']; ?> </div>
|
|
|
361 |
<?php endforeach; ?>
|
|
|
362 |
<?php if($bibliographie['autresReferences'] > 0) { ?>
|
|
|
363 |
<a href="<?=$url;?>nomenclature" style="float:right;" class="lien_ouverture_onglet_parent" >et
|
|
|
364 |
<?= $bibliographie['autresReferences'] ?>
|
|
|
365 |
autre<?= ($bibliographie['autresReferences'] > 1) ? 's' : '' ?>
|
|
|
366 |
référence<?= ($bibliographie['autresReferences'] > 1) ? 's' : '' ?>
|
|
|
367 |
</a>
|
|
|
368 |
<?php } } ?>
|
|
|
369 |
<?php }?>
|
|
|
370 |
</div>
|
|
|
371 |
</div>
|
|
|
372 |
</div>
|
525 |
gduche |
373 |
|
531 |
gduche |
374 |
|
|
|
375 |
<div class="colonne">
|
|
|
376 |
|
|
|
377 |
<!-- Illustrations -->
|
|
|
378 |
<div id="synthese_illustrations" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
|
|
|
379 |
<h3 class="titre ui-widget-header ui-corner-all" id="titre-0">
|
|
|
380 |
<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>illustrations">Illustrations</a>
|
525 |
gduche |
381 |
</h3>
|
531 |
gduche |
382 |
<span id="contenu-0" class="contenu">
|
|
|
383 |
<?php if ($illustration['imageUrl'] != '') : ?>
|
|
|
384 |
<img src="<?=$illustration['imageUrl']?>" alt="Image issue du cel ou du site photoflora" style="margin-bottom: -15px; margin-left: -2px; width: 210px;"/>
|
|
|
385 |
<?php else : ?>
|
|
|
386 |
<span class="absent" style="float:none; margin-left:55px">
|
|
|
387 |
Pas de photo<br />
|
|
|
388 |
<a href="http://www.tela-botanica.org/page:cel"
|
|
|
389 |
title="Ajouter une photographie au moyen du Carnet en Ligne"
|
|
|
390 |
onclick="window.open(this.href); return false;" class="contribuer">
|
|
|
391 |
Contribuer
|
|
|
392 |
</a>
|
|
|
393 |
</span>
|
|
|
394 |
<?php endif; ?>
|
|
|
395 |
</span>
|
525 |
gduche |
396 |
</div>
|
|
|
397 |
|
531 |
gduche |
398 |
<!-- Répartition -->
|
|
|
399 |
<div id="synthese_repartition" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
|
|
|
400 |
<h3 class="titre ui-widget-header ui-corner-all" id="titre-3">
|
|
|
401 |
<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>repartition">Répartition</a>
|
525 |
gduche |
402 |
</h3>
|
531 |
gduche |
403 |
<span id="contenu-3" class="contenu">
|
|
|
404 |
<img src="<?=htmlentities($repartition['chorodep'])?>" alt="Carte de répartition"/>
|
|
|
405 |
<img src="<?=htmlentities($repartition['eflore'])?>" alt="Carte des observations" style="margin-left: 11px; width: 190px;" />
|
|
|
406 |
</span>
|
525 |
gduche |
407 |
</div>
|
|
|
408 |
|
531 |
gduche |
409 |
<!-- Statut de protection -->
|
525 |
gduche |
410 |
<div id="synthese_statut" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
|
|
|
411 |
<h3 class="titre ui-widget-header ui-corner-all" id="titre-7">
|
874 |
aurelien |
412 |
<a class="titreOnglet lien-onglet-synthese" href="<?=$url;?>statut">Protection</a>
|
525 |
gduche |
413 |
</h3>
|
810 |
aurelien |
414 |
<span id="contenu-7" class="contenu <?= (!empty($statut['statuts'])) ? 'attention' : ''; ?>">
|
|
|
415 |
<? if (!empty($statut['statuts'])) { ?>
|
767 |
aurelien |
416 |
<span>Attention ce taxon est protégé dans les zones suivantes : <br />
|
|
|
417 |
<?php foreach($statut['statuts'] as $statut_zone) : ?>
|
|
|
418 |
<a href="<?=$url;?>statut" class="lien_ouverture_onglet_parent" >
|
|
|
419 |
<?= $statut_zone['zone_application']; ?><br />
|
|
|
420 |
</a>
|
|
|
421 |
<?php endforeach; ?>
|
|
|
422 |
</span>
|
|
|
423 |
<? } else if ($statut['wikini']['statuts_de_protection'] == '') {?>
|
|
|
424 |
<span class="pas_de_protection">Pas de protection connue</span>
|
525 |
gduche |
425 |
<? } else { echo $statut['wikini']['statuts_de_protection'];?><br /><br />
|
|
|
426 |
<? } ?>
|
767 |
aurelien |
427 |
<a href="<?=$url;?>statut" class="lien_ouverture_onglet_parent completer_statut" >
|
|
|
428 |
Compléter
|
|
|
429 |
</a>
|
525 |
gduche |
430 |
</span>
|
|
|
431 |
</div>
|
531 |
gduche |
432 |
|
525 |
gduche |
433 |
</div>
|
|
|
434 |
<hr class="nettoyage" />
|
|
|
435 |
</div>
|