Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 1130 | Rev 1146 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
230 delphine 1
<div id="illustrations">
955 delphine 2
	<? if (isset($coste)) : ?>
1123 mathias 3
		<h2>Illustration de la flore de Coste</h2>
955 delphine 4
 
5
		<div id="illustrations-coste">
6
		<?php if (empty($coste['images']) == false) :?>
7
			<ul class="liste-illustrations">
8
			<?php foreach($coste['images'] as $url) : ?>
9
				<li>
10
					<a class="lien-image-coste" href="<?= $url; ?>" >
11
						<img src="<?= $url; ?>" alt="illustration de la flore de coste" />
12
					</a>
13
				</li>
14
			<?php endforeach; ?>
15
			</ul>
16
		<hr class="nettoyage" />
17
		<div class="conteneur_lien_metadonnees">
1130 aurelien 18
			<?= $coste['meta']['citation']?>
955 delphine 19
			<a class="lien_metadonnees lien_popup" href="<?= $coste['meta']['url']; ?>">Voir toutes les metadonnées</a>
20
		</div>
21
		<?php else : echo ' <br/> Aucune illustration. <br/> <br/>'; endif;?>
22
		</div>
23
	<? endif; ?>
1123 mathias 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); ?>
1124 mathias 35
					<a class="lien-image-cel" href="popup.php?module=popup-illustrations&action=fiche&referentiel=bdtfx&id=<?= $image['id_image'] ?>">
1123 mathias 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"
1124 mathias 47
		  href="http://www.tela-botanica.org/widget:cel:saisie?referentiel=bdtfx&num_nom=<?= $nnr ?>&titre=Ajout d'une photo de <?= $nomComplet ?>"
1123 mathias 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) : ?>
1124 mathias 75
					<a class="lien-image-cel" href="popup.php?module=popup-illustrations&action=fiche&referentiel=bdtfx&id=<?= $image['id_image'] ?>">
1123 mathias 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>
1124 mathias 84
							<a class="contribuer" onclick="window.open(this.href); return false;" title="Ajouter une photographie au moyen du Carnet en Ligne" href="http://www.tela-botanica.org/widget:cel:saisie?referentiel=bdtfx"> Contribuer </a>
1123 mathias 85
						</p> -->
86
					<? endif ?>
87
				</li>
88
			<? endforeach ?>
89
			</ul>
90
		<? endif ?>
91
		<hr class="nettoyage" />
92
		<a class="acceder-outil-vert lien-externe"
1124 mathias 93
		  href="http://www.tela-botanica.org/widget:cel:saisie?referentiel=bdtfx&num_nom=<?= $nnr ?>&titre=Ajout d'une photo de <?= $nomComplet ?>"
1123 mathias 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 ?>
108
 
955 delphine 109
	<? if (isset($cel)) : ?>
1123 mathias 110
		<h2>Flora Data - Tout</h2>
111
 
955 delphine 112
		<div id="illustrations-cel">
113
			<?php if (isset($cel['images'])) : ?>
114
				<ul class="liste-illustrations">
115
				<?php foreach($cel['images'] as $id => $image) : ?>
116
					<li><div>
117
						<a class="lien-image-cel" href="<?=$image['urlDetailImg'];?>">
984 aurelien 118
							<img src="<?= $image['src']; ?>" alt="Photographie n°<?=$id;?> du taxon <?=$image['nomSci']?>" data-num-nom="<?=$id;?>" title="<?=$id;?>" />
475 delphine 119
						</a>
955 delphine 120
						<p>
1114 aurelien 121
							<strong class="localisation"><?= $image['station']; ?></strong> - <strong class="date-creation"><?= $image['date']; ?></strong><br />
1135 mathias 122
							par
123
							<? if ($image['auteur.id']) : ?>
124
								<a target="_blank" title="Voir le profil de cet utilisateur (nécessite d'être identifié)" href="<?= $image['urlProfil']; ?>">
125
									<strong class="auteur"><?= $image['auteur'] ?></strong>
1114 aurelien 126
								</a>&nbsp;&nbsp;
127
								<a title="Envoyer un message à l'auteur à propos de cette image (nécessite d'être identifié)" class="mailto" href="<?= $image['urlContact']; ?>">
955 delphine 128
									(Contacter ...)
1135 mathias 129
								</a>
130
							<? else : ?>
131
								<strong class="auteur"><?= $image['auteur'] ?></strong>
132
								&nbsp;&nbsp;(profil indisponible)
133
							<? endif ?><br />
1114 aurelien 134
							<a title="Proposer une autre détermination via l'outil identiplante" target="_blank" class="signaler-mauvaise-identification" href="<?= $image['urlMauvaiseIdentification']; ?>">
135
								Mauvaise identification ?
136
							</a>
955 delphine 137
						</p>
138
						</div>
139
					</li>
140
				<?php endforeach; ?>
141
 
142
				</ul>
143
			<?php endif; ?>
515 jpm 144
		<hr class="nettoyage" />
955 delphine 145
		</div>
146
		<div class="conteneur_lien_metadonnees">
1130 aurelien 147
			<?= $cel['meta']['citation']?>
955 delphine 148
			<a class="lien_metadonnees lien_popup" href="<?= $cel['meta']['url']; ?>">Voir toutes les metadonnées</a>
149
		</div>
1123 mathias 150
		<a class="acceder-outil-vert lien-externe"
1124 mathias 151
		  href="http://www.tela-botanica.org/widget:cel:saisie?referentiel=bdtfx&num_nom=<?= $nnr ?>&titre=Ajout d'une photo de <?= $nomComplet ?>"
1123 mathias 152
		  title="Ajouter une photographie au moyen du Carnet en Ligne">
153
			Ajouter une photo
154
		</a>
155
		<br/><br/><br/>
156
	<? endif ?>
515 jpm 157
 
955 delphine 158
	<? if (isset($photoflora)) : ?>
159
		<h2>Photoflora </h2>
160
		<p id="intro-photoflora">
161
			Ces images sont fournies par le site <a href="http://photoflora.free.fr/" class="lien-externe">Photoflora</a>.<br>
162
			Des informations complémentaires sur l'auteur, la localité... sont diponibles sur la
163
			<a href="http://photoflora.free.fr/FiTax.php?NumTaxon=<?= $nt ?>" class="lien-externe">
164
				page du taxon <span class="nom-sci"><?= $nomSciRetenu ?></span>
629 mathilde 165
			</a>.
166
		</p>
955 delphine 167
		<div id="illustrations-photoflora">
168
		<?php if (isset($photoflora['images'])) : ?>
169
			<ul class="liste-illustrations">
170
			<?php foreach($photoflora['images'] as $id => $image) : ?>
171
				<li>
172
					<a class="lien-externe img-cadre" href="http://photoflora.free.fr/UneFoto.php?NumTaxon=<?= $nt ?>&NumPhoto=<?= $id ?>.jpg">
173
						<div class="img-cadre-fond">
174
							<img src="<?= $image['src'] ?>" alt="Photographie n°<?=$id;?> du taxon <?= $image['nomSci']; ?>" />
175
						</div>
176
					</a>
177
					<p>
178
						à <strong class="localisation"><?= $image['station']; ?></strong><br />
179
						le <strong class="date-creation"><?= $image['date']; ?></strong><br />
180
						par <strong class="auteur"><?= $image['auteur']; ?></strong>
181
					</p>
182
				</li>
183
			<?php endforeach; ?>
184
			</ul>
185
			<hr class="nettoyage" />
186
		<? endif; ?>
187
		</div>
188
 
189
		<div class="conteneur_lien_metadonnees">
1130 aurelien 190
			<?= $photoflora['meta']['citation']?>
955 delphine 191
			<a class="lien_metadonnees lien_popup" href="<?= $photoflora['meta']['url']; ?>">Voir toutes les metadonnées</a>
192
		</div>
629 mathilde 193
	<?php endif; ?>
1123 mathias 194
 
195
	<script type="text/javascript">
196
		$.event.trigger('ongletIllustrationsCharge');
197
	</script>
1055 raphael 198
</div>