Subversion Repositories eFlore/Applications.cel-consultation

Rev

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