745 |
delphine |
1 |
<div id="cel-observation-contenu">
|
|
|
2 |
<?php if (isset($erreurs) || isset($informations)) : ?>
|
|
|
3 |
<h1>Erreur & informations</h1>
|
|
|
4 |
<p>Impossible d'afficher le flux.</p>
|
|
|
5 |
<!-- Affichage des erreurs et messages d'information : -->
|
|
|
6 |
<?php if ($erreurs) : ?>
|
|
|
7 |
<?php foreach ($erreurs as $erreur) : ?>
|
|
|
8 |
<p class="erreur"><?=$erreur;?></p>
|
|
|
9 |
<?php endforeach; ?>
|
|
|
10 |
<?php endif; ?>
|
|
|
11 |
|
|
|
12 |
<?php if ($informations) : ?>
|
|
|
13 |
<?php foreach ($informations as $information) : ?>
|
|
|
14 |
<p class="info"><?=$information;?></p>
|
|
|
15 |
<?php endforeach; ?>
|
|
|
16 |
<?php endif; ?>
|
|
|
17 |
<?php else : ?>
|
|
|
18 |
<h1>
|
|
|
19 |
Dernières observations du
|
|
|
20 |
<a href="http://www.tela-botanica.org/appli:cel" title="Carnet en Ligne" onclick="window.open(this.href);return false;">
|
|
|
21 |
CEL
|
|
|
22 |
</a>
|
|
|
23 |
<a href="<?=$flux_rss_url?>" id="cel-observation-flux" title="Suivre les observations"
|
|
|
24 |
onclick="window.open(this.href);return false;">
|
|
|
25 |
<img src="http://www.tela-botanica.org/sites/commun/generique/images/rss.png" alt="Suivre les observations" />
|
|
|
26 |
</a>
|
|
|
27 |
</h1>
|
|
|
28 |
<div id="cel-liste-observation">
|
|
|
29 |
<?php foreach ($items as $item) : ?>
|
|
|
30 |
<div id="cel-observation-<?=$item['guid']?>" class="cel-observation" rel="<?=$item['guid']?>" >
|
|
|
31 |
<img id="imPlus-<?=$item['guid']?>" width="10" height="10"
|
|
|
32 |
name="imPlus-<?=$item['guid']?>" title="Voir les informations complémentaires" alt="+"
|
|
|
33 |
src="http://www.tela-botanica.org/sites/commun/generique/images/plus.png" />
|
|
|
34 |
<img id="imMoins-<?=$item['guid']?>" width="10" height="10" class="imMoins"
|
|
|
35 |
name="imMoins-<?=$item['guid']?>" title="Cacher les informations complémentaires" alt="+"
|
|
|
36 |
src="http://www.tela-botanica.org/sites/commun/generique/images/moins.png" />
|
|
|
37 |
<strong>
|
|
|
38 |
<a href="<?=$item['eflore_url']?>" onclick="window.open(this.href);return false;"
|
|
|
39 |
title="Cliquez pour accéder à la fiche eFlore">
|
|
|
40 |
<?=$item['titre']?>
|
|
|
41 |
</a>
|
|
|
42 |
</strong><br />
|
|
|
43 |
<span class="cel-img-date">Publiée le <?=$item['date']?></span><br />
|
|
|
44 |
|
|
|
45 |
<div id="cel-info-<?=$item['guid']?>" class="cel-infos">
|
|
|
46 |
<?=$item['description']?>
|
|
|
47 |
</div>
|
739 |
delphine |
48 |
</div>
|
745 |
delphine |
49 |
<?php endforeach; ?>
|
|
|
50 |
</div>
|
|
|
51 |
<p id="cel-observation-date-generation" class="discretion nettoyage">Au <?=strftime('%A %d %B %Y à %H:%M:%S')?></p>
|
|
|
52 |
<script type="text/Javascript">
|
|
|
53 |
// Function pour cacher / afficher le détail des observations
|
|
|
54 |
$(document).ready(function() {
|
739 |
delphine |
55 |
|
745 |
delphine |
56 |
$('.cel-infos').hide();
|
|
|
57 |
$('.imMoins').hide();
|
|
|
58 |
$('.cel-observation').hover(function() {
|
|
|
59 |
var id_obs = $(this).attr("rel");
|
|
|
60 |
$('#cel-info-'+id_obs).show();
|
|
|
61 |
$('#imPlus-'+id_obs).hide();
|
|
|
62 |
$('#imMoins-'+id_obs).show();
|
|
|
63 |
},
|
|
|
64 |
function() {
|
|
|
65 |
var id_obs = $(this).attr("rel");
|
|
|
66 |
$('#cel-info-'+id_obs).hide();
|
|
|
67 |
$('#imPlus-'+id_obs).show();
|
|
|
68 |
$('#imMoins-'+id_obs).hide();
|
|
|
69 |
|
|
|
70 |
});
|
739 |
delphine |
71 |
|
745 |
delphine |
72 |
});
|
|
|
73 |
</script>
|
|
|
74 |
<?php endif; ?>
|
|
|
75 |
</div>
|