2094 |
drzraf |
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">
|
|
|
8 |
<?php if ($erreurs || $informations) : ?>
|
|
|
9 |
<h1>Erreur</h1>
|
|
|
10 |
<div class="contenu_RSS">
|
|
|
11 |
<b>Impossible d'afficher le flux.</b><br />
|
|
|
12 |
|
|
|
13 |
<!-- Affichage des erreurs et messages d'information : -->
|
|
|
14 |
<?php if ($erreurs) : ?>
|
|
|
15 |
<?php foreach ($erreurs as $erreur) : ?>
|
|
|
16 |
<p class="pap_erreur"><?=$erreur;?></p>
|
|
|
17 |
<?php endforeach; ?>
|
|
|
18 |
<?php endif; ?>
|
|
|
19 |
|
|
|
20 |
<?php if ($informations) : ?>
|
|
|
21 |
<?php foreach ($informations as $information) : ?>
|
|
|
22 |
<p class="pap_info"><?=$information;?></p>
|
|
|
23 |
<?php endforeach; ?>
|
|
|
24 |
<?php endif; ?>
|
|
|
25 |
</div>
|
|
|
26 |
<?php else : ?>
|
|
|
27 |
<!-- Affichage du flux RSS -->
|
|
|
28 |
<?php $flux = array(); ?>
|
|
|
29 |
<?php foreach ($sites as $site) : ?>
|
|
|
30 |
<h1><?=$site['titre']?></h1>
|
|
|
31 |
<div class="contenu_RSS" id="<?=$site['id']?>">
|
|
|
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>
|
|
|
33 |
<?php foreach ($site['pages'] as $page) : ?>
|
|
|
34 |
<?php
|
|
|
35 |
// Formatage date
|
|
|
36 |
$timestamp = strtotime($page['date']);
|
|
|
37 |
$page['date'] = strftime('%A %d %B %Y', $timestamp);
|
|
|
38 |
|
|
|
39 |
// Formatage titre
|
|
|
40 |
$page['titre'] = preg_replace('/^\d+-\d+ :/', '', $page['titre']);
|
|
|
41 |
?>
|
|
|
42 |
<div id="actualites1">
|
|
|
43 |
<div id="texteActualites1">
|
|
|
44 |
<h3><a href="<?=$page['url']?>" class="lien_ext"><?=$page['titre']?></a></h3>
|
|
|
45 |
<p class="sous-titre"><?=$page['date']?></p>
|
|
|
46 |
</div>
|
|
|
47 |
</div>
|
|
|
48 |
<br />
|
|
|
49 |
|
|
|
50 |
|
|
|
51 |
<?php endforeach; ?>
|
|
|
52 |
<?php endforeach; ?>
|
|
|
53 |
</div>
|
|
|
54 |
<?php endif; ?>
|
|
|
55 |
</div>
|
|
|
56 |
|
|
|
57 |
|
|
|
58 |
|
|
|
59 |
<!-- SYNDICATION - FIN -->
|