Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 1124 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1123 mathias 1
<? if (isset($organes) && (empty($organes) == false)) : ?>
2
<div id="galerie-organes">
3
	<ul class="liste-illustrations">
4
	<?php foreach($organes as $tag => $image) : ?>
5
		<li class="icone-organe">
6
			<a class="lien-images-organes<?php if (empty($image) == false) : ?> fourni<?php endif; ?>" data-tag="<?= $tag; ?>">
7
				<img class="icone-organe" src="presentations/images/icones_tags/<?= $tag; ?>.png" alt="<?= $tag ?>" />
8
				<?= $tag; ?>
9
			</a>
10
		</li>
11
	<?php endforeach; ?>
12
	</ul>
13
	<hr class="nettoyage" />
14
	<div id="galerie-organes-contenu" style="display: none;">
15
	<? foreach($organes as $tag => $image) : ?>
16
		<div class="onglet-organe" data-tag="<?= $tag; ?>">
17
		<?php if (empty($organes[$tag]) == false) :?>
18
			<ul class="liste-illustrations">
19
			<?php foreach($organes[$tag] as $image) : ?>
20
				<li class="miniature-organe">
21
					<?php if ($image != null) : ?>
22
						<a class="lien-grande-image-organe"
23
							data-id-image="<?= $image['id_image'] ?>" data-titre="<?= $image['observation']['determination.ns'] ?>"
24
							data-description="<?= $image['determination.libelle'] ?>" data-localisation="<?= $image['station.libelle'] ?>"
25
							data-auteur="<?= $image['auteur.libelle'] ?>" data-id-destinataire="<?= $image['auteur.id'] ?>"
26
							data-date="<?= $image['date'] ?>">
27
							<img class="miniature-organe" src="<?= $image['binaire.href']; ?>" alt="<?= $image['binaire.href']; ?>" />
28
						</a>
29
					<?php else: ?>
30
					<p class="absent absent-mini">
31
						Pas de photo
32
						<br>
33
						<a class="contribuer" onclick="window.open(this.href); return false;"
34
						  title="Ajouter une photographie au moyen du Carnet en Ligne"
35
						  href="http://localhost/widget:cel:saisie?referentiel=bdtfx&num_nom=<?= $nnr ?>&titre=Ajout d'une photo de <?= $nomComplet ?>">
36
							Contribuer
37
						</a>
38
					</p>
39
					<?php endif; ?>
40
				</li>
41
			<?php endforeach; ?>
42
			</ul>
43
			<hr class="nettoyage" />
44
		<?php else: ?>
45
			Aucune illustration pour l'organe "<?= $tag ?>"
46
		<?php endif; ?>
47
		</div>
48
	<?php endforeach; ?>
49
	<div id="grande-image-organe">
50
		<img src="" alt="Grande image" />
51
	</div>
52
	<div id="grande-image-legende">
53
		<div>
54
			<dl>
55
				<dt>Photo n°</dt><dd id="grande-image-legende-id-image"></dd>
56
				<dt>Titre</dt><dd id="grande-image-legende-titre"><br></dd>
57
				<dt>Description</dt><dd id="grande-image-legende-description"><br></dd>
58
				<dt>Localisation</dt><dd id="grande-image-legende-localisation"><br></dd>
59
				<dt>Auteur</dt>
60
				<dd>
61
					<span id="grande-image-legende-auteur"></span>
62
					<a id="grande-image-legende-id-destinataire" href="" class="mailto">(Contacter ...)</a>
63
				</dd>
64
				<dt>Date d'observation</dt><dd id="grande-image-legende-date"><br></dd>
65
				<dt>Licence</dt><dd><a href="http://www.tela-botanica.org/page:licence" class="lien-externe">CC-BY-SA</a></dd>
66
			</dl>
67
		</div>
68
	</div>
69
	</div>
70
</div>
71
<? endif ?>