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