Subversion Repositories eFlore/Applications.cel-consultation

Rev

Go to most recent revision | Details | 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">
17
            <a class="lien_voir_image" rel="galerie_image_cel" href="<?= $image['url_image_l']; ?>" title="
18
            		Taxon : <?= $image['nom_ret'] ?>,
19
	            	Localisation : <?= $image['location'].' ('.$image['id_location'].')'; ?>,
20
					Transmis le : <?= $image['date_transmission'] ?><br />" alt="
21
					Taxon : <?= $image['nom_ret'] ?>,
22
	            	Localisation : <?= $image['location'].' ('.$image['id_location'].')'; ?>,
23
					Transmis le : <?= $image['date_transmission'] ?>">
24
                <img height="<?= $image['taille']['hauteur']; ?>" width="<?= $image['taille']['largeur']; ?>" src="<?= $image['url_image_m']; ?>" />
25
            </a>
26
            <div class="pliage">
27
	            <h4 class="lien_pliage_invisible" title="voir les informations associées"> + </h4>
28
	            <dl class="image_information">
29
	            	<dt>Taxon</dt>
30
					<dd><a href="?module=Image&action=rechercherImage&image_recherche=<?= aControleur::convertirChaineTaxonPourRequeteUrl($image['nom_ret']); ?>" title="voir toutes les images de ce taxon" ><?= aControleur::formaterChaineTaxon($image['nom_ret']) ?></a></dd>
31
	            	<dt>Localisation</dt>
32
					<dd><a href="?module=Image&action=rechercherImage&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>
33
					<dt> Auteur <dt>
34
					<dd><?= aControleur::couperCourriel($image['ci_ce_utilisateur']); ?><dd>
35
 
36
					<dt>Transmis le </dt>
37
					<dd><?= $image['date_transmission'] ?></dd>
38
	            </dl>
39
	        </div>
40
    	</li>
41
    <!-- END TB_IMG -->
42
    <?php endforeach; ?>
43
    </ul>
44
    <?php endif; ?>
45
 
46
    <?php if (empty($images)) : ?>
47
    	<h2> Aucune image ne correspond à ces critères de recherche </h2>
48
    <?php endif; ?>
49
 
50
</div>
51
 
52
<hr style="clear:both;visibility:hidden;" />
53
 
54
<?php if(count($images) > 50) { ?>
55
	<?= $pagination ?>
56
<?php } ?>
57
 
58
<hr class="nettoyage" />
59
<!-- CEL_CONSULTATION - FIN RESULTAT IMAGES -->