Subversion Repositories eFlore/Applications.cel-consultation

Rev

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

Rev Author Line No. Line
2 aurelien 1
<!-- CEL_CONSULTATION - DEBUT RESULTAT IMAGES -->
2
<div id="abonnement_rss">
3
	<a href="<?= aControleur::construireUrlFluxRssResultatsRecherche($criteres) ?>" title="Flux de cette recherche">
4
		S'abonner au flux rss des <?= aControleur::construireIntituleResultatRecherche($criteres); ?>
5
	</a>
6
</div>
7
 
8
<br /><br />
9
<?= $pagination ?>
10
 
11
<div id="consultation_liste_images">
12
    <?php if (isset($images)) : ?>
13
    <ul class="images_liste">
14
    <?php foreach ($images as $image) : ?>
15
    <!-- BEGIN TB_IMG -->
16
        <li class="conteneur_image_deplie">
12 aurelien 17
            <a class="lien_voir_image" rel="galerie_image_cel" href="<?= $image['url_image_format_zoom']; ?>" title="
18
            		Id : <?= $image['coi_ce_image'] ?>,
19
            		Taxon : <?= aControleur::convertirChaineTaxonPourAffichageSimple($image['nom_ret']) ?>,
2 aurelien 20
	            	Localisation : <?= $image['location'].' ('.$image['id_location'].')'; ?>,
12 aurelien 21
					Auteur : <?= aControleur::couperCourriel($image['ci_ce_utilisateur']); ?>
13 aurelien 22
					Observé le : <?= date('d/m/Y', strtotime($image['date_observation'])); ?>">
12 aurelien 23
                <img height="<?= $image['taille']['hauteur']; ?>" width="<?= $image['taille']['largeur']; ?>" src="<?= $image['url_image_format_galerie']; ?>" alt="Taxon : <?= aControleur::convertirChaineTaxonPourAffichage($image['nom_ret']) ?>,
2 aurelien 24
	            	Localisation : <?= $image['location'].' ('.$image['id_location'].')'; ?>,
13 aurelien 25
					Observé le : <?= date('d/m/Y', strtotime($image['date_observation'])); ?>" />
2 aurelien 26
            </a>
27
            <div class="pliage">
28
	            <h4 class="lien_pliage_invisible" title="voir les informations associées"> + </h4>
29
	            <dl class="image_information">
12 aurelien 30
	            	<dt>Id </dt>
31
	            	<dd><?= $image['coi_ce_image'] ?></dd>
2 aurelien 32
	            	<dt>Taxon</dt>
12 aurelien 33
					<dd>
34
						<a href="?module=Image&amp;action=rechercherImage&amp;image_recherche=<?= aControleur::convertirChaineTaxonPourRequeteUrl($image['nom_ret']); ?>" title="voir toutes les images de ce taxon" ><?= aControleur::convertirChaineTaxonPourAffichage($image['nom_ret']) ?></a>
35
						<a title="voir la fiche du taxon sur eflore" class="acceder-outil lien_fiche_eflore" href="<?= $image['url_fiche_eflore'] ?>"></a><br />
36
					</dd>
2 aurelien 37
	            	<dt>Localisation</dt>
3 aurelien 38
					<dd><a href="?module=Image&amp;action=rechercherImage&amp;image_recherche=<?= aControleur::convertirChainelocaliteDepartementPourRequeteUrl($image['location'],$image['id_location']); ?>" title="voir toutes les images de cette commune" ><?= aControleur::formaterChaineLocaliteDepartement($image['location'],$image['id_location']); ?> </a></dd>
39
					<dt> Auteur </dt>
12 aurelien 40
					<dd><?= aControleur::couperCourriel($image['ci_ce_utilisateur']); ?></dd>
13 aurelien 41
					<dt> Observé le </dt>
42
					<dd><?= date('d/m/Y', strtotime($image['date_observation'])); ?></dd>
2 aurelien 43
	            </dl>
44
	        </div>
45
    	</li>
46
    <!-- END TB_IMG -->
47
    <?php endforeach; ?>
48
    </ul>
49
    <?php endif; ?>
50
 
51
    <?php if (empty($images)) : ?>
52
    	<h2> Aucune image ne correspond à ces critères de recherche </h2>
53
    <?php endif; ?>
54
 
55
</div>
56
 
57
<hr style="clear:both;visibility:hidden;" />
58
 
59
<?php if(count($images) > 50) { ?>
60
	<?= $pagination ?>
61
<?php } ?>
62
 
63
<hr class="nettoyage" />
64
<!-- CEL_CONSULTATION - FIN RESULTAT IMAGES -->