Line 5... |
Line 5... |
5 |
- la carte des évènements : http://www.tela-botanica.org/page:carte_evenements
|
5 |
- la carte des évènements : http://www.tela-botanica.org/page:carte_evenements
|
6 |
Vous pouvez aussi en ajouter de nouveaux : http://www.tela-botanica.org/page:ajouter_modifier_evenement
|
6 |
Vous pouvez aussi en ajouter de nouveaux : http://www.tela-botanica.org/page:ajouter_modifier_evenement
|
7 |
<BOUCLE_rubriques(RUBRIQUES) {par num titre} {racine}>
|
7 |
<BOUCLE_rubriques(RUBRIQUES) {par num titre} {racine}>
|
8 |
<B_last_articles>
|
8 |
<B_last_articles>
|
9 |
[(#TITRE|supprimer_numero|majuscules|textebrut)]
|
9 |
[(#TITRE|supprimer_numero|majuscules|textebrut)]
|
10 |
<BOUCLE_last_articles(ARTICLES){id_rubrique}{age<7}{par date}{inverse}>
|
10 |
<BOUCLE_last_articles(ARTICLES){id_rubrique}{age<=6}{par date}{inverse}>
|
11 |
[(#TITRE|textebrut)]
|
11 |
[(#TITRE|textebrut)]
|
12 |
<B_auteurs>mis en ligne le [(#DATE|affdate)] <:par_auteur:><BOUCLE_auteurs(AUTEURS) {id_article} {", "}>[(#NOM|textebrut)]</BOUCLE_auteurs>
|
12 |
<B_auteurs>mis en ligne le [(#DATE|affdate)] <:par_auteur:><BOUCLE_auteurs(AUTEURS) {id_article} {", "}>[(#NOM|textebrut)]</BOUCLE_auteurs>
|
Line 13... |
Line 13... |
13 |
|
13 |
|
Line 14... |
Line 14... |
14 |
[(#INTRODUCTION|textebrut)]
|
14 |
[(#INTRODUCTION|textebrut)]
|
15 |
|
15 |
|
16 |
-> [(#URL_SITE_SPIP)]/[(#URL_ARTICLE)]
|
16 |
-> [(#URL_SITE_SPIP)]/[(#URL_ARTICLE)]
|
- |
|
17 |
</BOUCLE_last_articles>
|
- |
|
18 |
</BOUCLE_rubriques>
|
- |
|
19 |
|
- |
|
20 |
<?php
|
- |
|
21 |
|
- |
|
22 |
include_once 'authentification.php';
|
- |
|
23 |
$url_evenement = new Net_URL('http://www.tela-botanica.org/page:evenements?action=8');
|
- |
|
24 |
|
- |
|
25 |
// Note : tant que Papyrus ne permet pas d'appeler une fonction permettant de récupérer les info de Auth, on est obligé
|
- |
|
26 |
// de les rentrer à la main ci-dessous....
|
- |
|
27 |
//echo '<script type="text/javascript">';
|
- |
|
28 |
|
- |
|
29 |
/** Requete dans les tables du bazar pour présenter une liste des évènements
|
- |
|
30 |
* à venir
|
- |
|
31 |
* L'applette syndication de papyrus ne convenant pas pour ce type d'affichage
|
- |
|
32 |
*/
|
- |
|
33 |
|
- |
|
34 |
echo 'Les prochains évènements'."\n";
|
- |
|
35 |
|
- |
|
36 |
|
- |
|
37 |
$requete = 'select * from bazar_fiche where '.
|
- |
|
38 |
'bf_statut_fiche=1 and '. // La fiche doit être validée
|
- |
|
39 |
'bf_date_creation_fiche <= now() '.
|
- |
|
40 |
'and dayofyear(bf_date_creation_fiche) >= (dayofyear(now()) - 7) '.
|
- |
|
41 |
'and year(bf_date_creation_fiche) = year(now()) '.
|
- |
|
42 |
//'group by bf_titre '. // à rajouter si on doit éviter d'afficher les fiches qui ont le même titre
|
- |
|
43 |
'order by bf_date_creation_fiche ' ; // on presente les évènements les plus proches en premier'
|
- |
|
44 |
|
- |
|
45 |
$resultat = $GLOBALS['db']->query ($requete);
|
- |
|
46 |
|
- |
|
47 |
if (DB::isError($resultat)) {
|
- |
|
48 |
echo $resultat->getMessage().' '.$resultat->getDebugInfo().' '.$requete;
|
- |
|
49 |
}
|
- |
|
50 |
|
- |
|
51 |
$GLOBALS['jours'] = array (1 => 'lundi', 2 => 'mardi', 3 => 'mercredi', 4 => 'jeudi', 5 => 'vendredi',
|
- |
|
52 |
6 => 'samedi', 0 => 'dimanche') ;
|
- |
|
53 |
$GLOBALS['mois'] = array (1 => 'janvier', 2 => 'février', 3 => 'mars', 4 => 'avril', 5 => 'mai', 6 => 'juin',
|
- |
|
54 |
7 => 'juillet', 8 => 'août', 9 => 'septembre', 10 => 'octobre', 11 =>'novembre',
|
- |
|
55 |
12 => 'décembre') ;
|
- |
|
56 |
|
- |
|
57 |
function formate_date($date) {
|
- |
|
58 |
return date('d', strtotime($date)).
|
- |
|
59 |
' '.$GLOBALS['mois'][date('n', strtotime ($date))].' '.date('Y');
|
- |
|
60 |
}
|
- |
|
61 |
|
- |
|
62 |
|
- |
|
63 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_OBJECT)) { ?>
|
- |
|
64 |
<?php echo $ligne->bf_titre; ?>
|
- |
|
65 |
<?php echo 'Aura lieu ' ; ?>
|
- |
|
66 |
<?php
|
- |
|
67 |
if ($ligne->bf_date_debut_evenement != $ligne->bf_date_fin_evenement) {
|
- |
|
68 |
echo 'du '.formate_date($ligne->bf_date_debut_evenement).' au '.formate_date($ligne->bf_date_fin_evenement);
|
- |
|
69 |
} else {
|
- |
|
70 |
echo " le ".formate_date($ligne->bf_date_debut_evenement);
|
- |
|
71 |
}
|
- |
|
72 |
?>
|
- |
|
73 |
|
- |
|
74 |
<?php echo couper($ligne->bf_description, 400); ?>
|
- |
|
75 |
|
- |
|
76 |
<?php $url_evenement->addQueryString ('id_fiche', $ligne->bf_id_fiche); ?>
|
- |
|
77 |
<?php echo $url_evenement->getURL(); ?>
|
- |
|
78 |
|
- |
|
79 |
<?php }
|
- |
|
80 |
|
- |
|
81 |
$url_evenement->removeQueryString('id_fiche');
|
- |
|
82 |
$url_evenement->removeQueryString('action');
|
17 |
</BOUCLE_last_articles>
|
83 |
?>
|
Line 18... |
Line 84... |
18 |
</BOUCLE_rubriques>
|
84 |
|