| Line 1... |
Line 1... |
| 1 |
<div id="illustrations">
|
1 |
<div id="illustrations">
|
| 2 |
<? if (isset($coste)) : ?>
|
2 |
<? if (isset($coste)) : ?>
|
| 3 |
<h2>Illustration de la flore de Coste</h2>
|
3 |
<h2>Illustration de la flore de Coste</h2>
|
| Line 4... |
Line 4... |
| 4 |
|
4 |
|
| 5 |
<div id="illustrations-coste">
|
5 |
<div id="illustrations-coste">
|
| 6 |
<?php if (empty($coste['images']) == false) :?>
|
6 |
<?php if (empty($coste['images']) == false) :?>
|
| 7 |
<ul class="liste-illustrations">
|
7 |
<ul class="liste-illustrations">
|
| Line 19... |
Line 19... |
| 19 |
<a class="lien_metadonnees lien_popup" href="<?= $coste['meta']['url']; ?>">Voir toutes les metadonnées</a>
|
19 |
<a class="lien_metadonnees lien_popup" href="<?= $coste['meta']['url']; ?>">Voir toutes les metadonnées</a>
|
| 20 |
</div>
|
20 |
</div>
|
| 21 |
<?php else : echo ' <br/> Aucune illustration. <br/> <br/>'; endif;?>
|
21 |
<?php else : echo ' <br/> Aucune illustration. <br/> <br/>'; endif;?>
|
| 22 |
</div>
|
22 |
</div>
|
| 23 |
<? endif; ?>
|
23 |
<? endif; ?>
|
| - |
|
24 |
|
| - |
|
25 |
<? if (isset($organes)) : ?>
|
| - |
|
26 |
<h2>Flora Data - Organes</h2>
|
| - |
|
27 |
|
| - |
|
28 |
<div id="illustrations-organes">
|
| - |
|
29 |
<? if (empty($organes) == false) :?>
|
| - |
|
30 |
<ul class="liste-illustrations">
|
| - |
|
31 |
<? foreach($organes as $tag => $image) : ?>
|
| - |
|
32 |
<? if ($image != null) : ?>
|
| - |
|
33 |
<li class="organe-moyen">
|
| - |
|
34 |
<?= ucfirst($tag); ?>
|
| - |
|
35 |
<a class="lien-image-cel" href="http://localhost/eflore/applications/eflore-consultation/popup.php?module=popup-illustrations&action=fiche&referentiel=bdtfx&id=<?= $image['id_image'] ?>">
|
| - |
|
36 |
<img title="<?= $image['id_image'] ?>" data-num-nom="<?= $image['id_image'] ?>"
|
| - |
|
37 |
alt="Photographie n°<?= $image['id_image'] ?> du taxon <?= $image['observation']['determination.ns'] ?>"
|
| - |
|
38 |
src="<?= $image['binaire.href'] ?>" />
|
| - |
|
39 |
</a>
|
| - |
|
40 |
</li>
|
| - |
|
41 |
<? endif ?>
|
| - |
|
42 |
<? endforeach ?>
|
| - |
|
43 |
</ul>
|
| - |
|
44 |
<? endif ?>
|
| - |
|
45 |
<hr class="nettoyage" />
|
| - |
|
46 |
<a class="acceder-outil-vert lien-externe"
|
| - |
|
47 |
href="http://localhost/widget:cel:saisie?referentiel=bdtfx&num_nom=<?= $nnr ?>&titre=Ajout d'une photo de <?= $nomComplet ?>"
|
| - |
|
48 |
title="Ajouter une photographie au moyen du Carnet en Ligne">
|
| - |
|
49 |
Ajouter une photo
|
| - |
|
50 |
</a>
|
| - |
|
51 |
<? if (empty($organes) == false) : ?>
|
| - |
|
52 |
<span class="separator"></span>
|
| - |
|
53 |
<a class="acceder-outil-vert lien-externe" href="http://www.tela-botanica.org/eflore/del/del.html?masque.ns=<?= $nomComplet ?>#page_recherche_images~3"
|
| - |
|
54 |
title="Participer au choix des photos d'organes">
|
| - |
|
55 |
Participer au choix
|
| - |
|
56 |
</a>
|
| - |
|
57 |
<? endif ?>
|
| - |
|
58 |
<br/><br/>
|
| - |
|
59 |
</div>
|
| - |
|
60 |
<? endif ?>
|
| - |
|
61 |
|
| - |
|
62 |
<!-- sous-squelette -->
|
| - |
|
63 |
<?= $illustrationsOrganes ?>
|
| - |
|
64 |
<br/>
|
| - |
|
65 |
|
| - |
|
66 |
<? if (isset($caracteres)) : ?>
|
| - |
|
67 |
<h2>Flora Data - Aide à la détermination</h2>
|
| - |
|
68 |
|
| - |
|
69 |
<div id="illustrations-caracteres">
|
| - |
|
70 |
<? if (empty($caracteres) == false) : ?>
|
| - |
|
71 |
<ul class="liste-illustrations">
|
| - |
|
72 |
<? foreach($caracteres as $image) : ?>
|
| - |
|
73 |
<li class="caractere-moyen">
|
| - |
|
74 |
<? if ($image != null) : ?>
|
| - |
|
75 |
<a class="lien-image-cel" href="http://localhost/eflore/applications/eflore-consultation/popup.php?module=popup-illustrations&action=fiche&referentiel=bdtfx&id=<?= $image['id_image'] ?>">
|
| - |
|
76 |
<img title="<?= $image['id_image'] ?>" data-num-nom="<?= $image['id_image'] ?>"
|
| - |
|
77 |
alt="Photographie n°<?= $image['id_image'] ?> du taxon <?= $image['observation']['determination.ns'] ?>"
|
| - |
|
78 |
src="<?= $image['binaire.href'] ?>" />
|
| - |
|
79 |
</a>
|
| - |
|
80 |
<? else : ?>
|
| - |
|
81 |
<!-- <p class="absent absent-organes">
|
| - |
|
82 |
Pas de photo
|
| - |
|
83 |
<br>
|
| - |
|
84 |
<a class="contribuer" onclick="window.open(this.href); return false;" title="Ajouter une photographie au moyen du Carnet en Ligne" href="http://localhost/widget:cel:saisie?referentiel=bdtfx"> Contribuer </a>
|
| - |
|
85 |
</p> -->
|
| - |
|
86 |
<? endif ?>
|
| - |
|
87 |
</li>
|
| - |
|
88 |
<? endforeach ?>
|
| - |
|
89 |
</ul>
|
| - |
|
90 |
<? endif ?>
|
| - |
|
91 |
<hr class="nettoyage" />
|
| - |
|
92 |
<a class="acceder-outil-vert lien-externe"
|
| - |
|
93 |
href="http://localhost/widget:cel:saisie?referentiel=bdtfx&num_nom=<?= $nnr ?>&titre=Ajout d'une photo de <?= $nomComplet ?>"
|
| - |
|
94 |
title="Ajouter une photographie au moyen du Carnet en Ligne">
|
| - |
|
95 |
Ajouter une photo
|
| - |
|
96 |
</a>
|
| - |
|
97 |
<? if (empty($caracteres) == false) : ?>
|
| - |
|
98 |
<span class="separator"></span>
|
| - |
|
99 |
<a class="acceder-outil-vert lien-externe" href="http://www.tela-botanica.org/eflore/del/del.html?masque.ns=<?= $nomComplet ?>#page_recherche_images~1"
|
| - |
|
100 |
title="Participer au choix des photos d'organes">
|
| - |
|
101 |
Participer au choix
|
| - |
|
102 |
</a>
|
| - |
|
103 |
<? endif ?>
|
| - |
|
104 |
<br/><br/>
|
| - |
|
105 |
</div>
|
| - |
|
106 |
<br/>
|
| - |
|
107 |
<? endif ?>
|
| 24 |
|
108 |
|
| 25 |
<? if (isset($cel)) : ?>
|
109 |
<? if (isset($cel)) : ?>
|
| 26 |
<h2>Flora Data</h2>
|
110 |
<h2>Flora Data - Tout</h2>
|
| - |
|
111 |
|
| 27 |
<div id="illustrations-cel">
|
112 |
<div id="illustrations-cel">
|
| 28 |
<?php if (isset($cel['images'])) : ?>
|
113 |
<?php if (isset($cel['images'])) : ?>
|
| 29 |
<ul class="liste-illustrations">
|
114 |
<ul class="liste-illustrations">
|
| 30 |
<?php foreach($cel['images'] as $id => $image) : ?>
|
115 |
<?php foreach($cel['images'] as $id => $image) : ?>
|
| 31 |
<li><div>
|
116 |
<li><div>
|
| Line 54... |
Line 139... |
| 54 |
</div>
|
139 |
</div>
|
| 55 |
<div class="conteneur_lien_metadonnees">
|
140 |
<div class="conteneur_lien_metadonnees">
|
| 56 |
<?= $cel['meta']['titre']?>
|
141 |
<?= $cel['meta']['titre']?>
|
| 57 |
<a class="lien_metadonnees lien_popup" href="<?= $cel['meta']['url']; ?>">Voir toutes les metadonnées</a>
|
142 |
<a class="lien_metadonnees lien_popup" href="<?= $cel['meta']['url']; ?>">Voir toutes les metadonnées</a>
|
| 58 |
</div>
|
143 |
</div>
|
| 59 |
<div class="importance2">
|
- |
|
| 60 |
<h3 class="rejoindre">Contribuer</h3>
|
144 |
<a class="acceder-outil-vert lien-externe"
|
| 61 |
<p>
|
- |
|
| 62 |
Si vous souhaitez contribuer avec vos photographies personnelles, en acceptant de les mettre à disposition de
|
- |
|
| 63 |
la communauté sous une licence <a href="http://www.tela-botanica.org/page:licence">Creative Commons</a>, vous pouvez utiliser le
|
- |
|
| 64 |
<a href="http://www.tela-botanica.org/appli:cel" title="CEL" class="lien-externe">Carnet en Ligne</a>
|
- |
|
| 65 |
pour importer vos images dans eFlore.
|
- |
|
| 66 |
</p>
|
- |
|
| 67 |
<p>
|
- |
|
| 68 |
Pour vous aidez dans cette démarche,
|
- |
|
| 69 |
<a href="http://www.tela-botanica.org/wikini/eflore/wakka.php?wiki=AideCELVueGeneraleImages" class="lien-externe">
|
145 |
href="http://localhost/widget:cel:saisie?referentiel=bdtfx&num_nom=<?= $nnr ?>&titre=Ajout d'une photo de <?= $nomComplet ?>"
|
| 70 |
un mode d'emploi concernant l'ajout d'image est à votre disposition
|
- |
|
| 71 |
</a>.
|
- |
|
| 72 |
</p>
|
- |
|
| 73 |
<p>
|
- |
|
| 74 |
<a class="acceder-outil lien-externe" href="http://www.tela-botanica.org/page:cel"
|
- |
|
| 75 |
title="Ajouter une photographie au moyen du Carnet en Ligne">
|
146 |
title="Ajouter une photographie au moyen du Carnet en Ligne">
|
| 76 |
Ajouter une photo
|
147 |
Ajouter une photo
|
| 77 |
</a>
|
148 |
</a>
|
| 78 |
</p>
|
- |
|
| 79 |
</div>
|
149 |
<br/><br/><br/>
|
| 80 |
<? endif; ?>
|
150 |
<? endif ?>
|
| Line 81... |
Line 151... |
| 81 |
|
151 |
|
| 82 |
<? if (isset($photoflora)) : ?>
|
152 |
<? if (isset($photoflora)) : ?>
|
| 83 |
<h2>Photoflora </h2>
|
153 |
<h2>Photoflora </h2>
|
| 84 |
<p id="intro-photoflora">
|
154 |
<p id="intro-photoflora">
|
| Line 113... |
Line 183... |
| 113 |
<div class="conteneur_lien_metadonnees">
|
183 |
<div class="conteneur_lien_metadonnees">
|
| 114 |
<?= $photoflora['meta']['titre']?>
|
184 |
<?= $photoflora['meta']['titre']?>
|
| 115 |
<a class="lien_metadonnees lien_popup" href="<?= $photoflora['meta']['url']; ?>">Voir toutes les metadonnées</a>
|
185 |
<a class="lien_metadonnees lien_popup" href="<?= $photoflora['meta']['url']; ?>">Voir toutes les metadonnées</a>
|
| 116 |
</div>
|
186 |
</div>
|
| 117 |
<?php endif; ?>
|
187 |
<?php endif; ?>
|
| 118 |
|
188 |
|
| - |
|
189 |
<script type="text/javascript">
|
| - |
|
190 |
$.event.trigger('ongletIllustrationsCharge');
|
| - |
|
191 |
</script>
|
| 119 |
</div>
|
192 |
</div>
|