Subversion Repositories eFlore/Applications.cel

Rev

Rev 739 | Rev 1451 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 739 Rev 745
Line 1... Line -...
1
<?php 
-
 
2
// Réglages de PHP
-
 
3
setlocale(LC_ALL, 'fr_FR');
-
 
4
date_default_timezone_set('Europe/Paris');
-
 
5
?>
-
 
6
<!-- SYNDICATION - DEBUT -->
-
 
7
	<div class="flux_simple">
1
<div id="cel-observation-contenu">
8
		<?php if ($erreurs || $informations) : ?>
2
 <?php if (isset($erreurs) || isset($informations)) : ?>
9
			<h1>Erreur</h1>
3
	<h1>Erreur &amp; informations</h1>
10
			<div class="contenu_RSS">
-
 
11
				<b>Impossible d'afficher le flux.</b><br />
4
	<p>Impossible d'afficher le flux.</p>
12
				
-
 
13
				<!-- Affichage des erreurs et messages d'information : -->
5
	<!-- Affichage des erreurs et messages d'information : -->
14
				<?php if ($erreurs) : ?>
6
	<?php if ($erreurs) : ?>
15
					<?php foreach ($erreurs as $erreur) : ?>
7
		<?php foreach ($erreurs as $erreur) : ?>
16
						<p class="pap_erreur"><?=$erreur;?></p>
8
			<p class="erreur"><?=$erreur;?></p>
17
					<?php endforeach; ?>
9
		<?php endforeach; ?>
18
				<?php endif; ?>
10
	<?php endif; ?>
19
				
11
	
20
				<?php if ($informations) : ?>
12
	<?php if ($informations) : ?>
21
					<?php foreach ($informations as $information) : ?>
13
		<?php foreach ($informations as $information) : ?>
22
						<p class="pap_info"><?=$information;?></p>
14
			<p class="info"><?=$information;?></p>
23
					<?php endforeach; ?>
15
		<?php endforeach; ?>
24
				<?php endif; ?>
16
	<?php endif; ?>
25
			</div>
-
 
26
		<?php else : ?>
17
	<?php else : ?>
27
			<!-- Affichage du flux RSS -->
18
		<h1>
28
			<?php $flux = array(); ?>
19
			Dernières observations du 
29
  				<?php foreach ($sites as $site) : ?>
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>
30
  					<h1><?=$site['titre']?></h1>
23
			<a href="<?=$flux_rss_url?>" id="cel-observation-flux" title="Suivre les observations" 
31
  					<div class="contenu_RSS" id="<?=$site['id']?>">
24
				onclick="window.open(this.href);return false;">
32
  					<a href="http://www.tela-botanica.org/eflore/cel2/jrest/CelSyndicationObservation/par-defaut/atom" class="suivre-observations" title="Suivre les observations"  onclick="window.open(this.href);return false;">Suivre les observations</a>
25
				<img src="http://www.tela-botanica.org/sites/commun/generique/images/rss.png" alt="Suivre les observations" />
33
    				<?php foreach ($site['pages'] as $page) : ?>
26
			</a>
34
    					<?php 
27
		</h1>
35
							// Formatage date
28
		<div id="cel-liste-observation">
36
							$timestamp = strtotime($page['date']);
29
			<?php foreach ($items as $item) : ?>
-
 
30
				<div id="cel-observation-<?=$item['guid']?>" class="cel-observation" rel="<?=$item['guid']?>" >
37
							$page['date'] = strftime('%A %d %B %Y', $timestamp);
31
					<img id="imPlus-<?=$item['guid']?>" width="10" height="10" 
38
							
-
 
39
							// Formatage titre 
32
							name="imPlus-<?=$item['guid']?>" title="Voir les informations complémentaires" alt="+" 
40
    						$page['titre'] = preg_replace('/^\d+-\d+&nbsp;:/', '', $page['titre']); 
33
							src="http://www.tela-botanica.org/sites/commun/generique/images/plus.png" />
41
    					?>
-
 
42
    					<div id="actualites1">
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" />	
43
							<div id="texteActualites1">
37
					<strong>
44
								<h3><a href="<?=$page['url']?>" class="lien_ext"><?=$page['titre']?></a></h3>
38
						<a  href="<?=$item['eflore_url']?>"	onclick="window.open(this.href);return false;"  
45
								<p class="sous-titre"><?=$page['date']?></p>
39
							title="Cliquez pour accéder à la fiche eFlore">
46
							</div>
40
								<?=$item['titre']?>
47
						</div>
41
						</a>
48
  						<br />
42
					</strong><br />
49
  						
-
 
-
 
43
					<span class="cel-img-date">Publiée le <?=$item['date']?></span><br />
50
  						
44
					
-
 
45
					<div id="cel-info-<?=$item['guid']?>" class="cel-infos">
51
    				<?php endforeach; ?>
46
						<?=$item['description']?>
52
  				<?php endforeach; ?>
47
					</div>
53
				</div>
48
				</div>
54
		<?php endif; ?>
49
			<?php endforeach; ?>
55
	</div>
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() {
Line -... Line 55...
-
 
55
 
-
 
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
						
Line 56... Line -...
56
 
-
 
57
 
-
 
58
 
70
					});
-
 
71
 
-
 
72
				});
-
 
73
		</script>
-
 
74
	<?php endif; ?>
59
<!-- SYNDICATION - FIN -->
75
</div>