468 |
mathias |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* PHP Version 5
|
|
|
4 |
*
|
|
|
5 |
* @category PHP
|
|
|
6 |
* @package papyrus_bp
|
|
|
7 |
* @author aurelien <aurelien@tela-botanica.org>
|
|
|
8 |
* @copyright 2010 Tela-Botanica
|
|
|
9 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
|
|
|
10 |
* @version SVN: <svn_id>
|
|
|
11 |
* @link /doc/papyrus_bp/
|
|
|
12 |
*/
|
|
|
13 |
|
|
|
14 |
Class Resume extends JRestService {
|
|
|
15 |
|
|
|
16 |
public function getElement($uid){
|
|
|
17 |
|
|
|
18 |
$id_utilisateur = $uid[0];
|
|
|
19 |
$mail_utilisateur = $uid[1];
|
|
|
20 |
|
|
|
21 |
$sql= 'SELECT bf_id_fiche, bf_titre, bf_date_maj_fiche FROM bazar_fiche'.
|
|
|
22 |
' WHERE bf_ce_utilisateur = '.$id_utilisateur.
|
|
|
23 |
' AND bf_statut_fiche = 1'.
|
|
|
24 |
' ORDER BY bf_date_maj_fiche DESC '.
|
|
|
25 |
' LIMIT 0,5';
|
|
|
26 |
|
|
|
27 |
$fiches = $projets = $this->bdd->query($sql)->fetchAll();
|
|
|
28 |
|
|
|
29 |
$resume = array();
|
|
|
30 |
|
|
|
31 |
$resume['titre'] = 'Mes derniers événements publiés';
|
|
|
32 |
$resume['lien_appli'] = '<a href="http://www.tela-botanica.org/page:evenements" > Consulter tous les évenements </a>';
|
|
|
33 |
|
|
|
34 |
if(!$fiches) {
|
|
|
35 |
$resume['message'] = 'Aucune fiche saisie pour le moment';
|
|
|
36 |
} else {
|
|
|
37 |
foreach($fiches as $fiche) {
|
|
|
38 |
$cible_lien = 'http://www.tela-botanica.org/page:evenements?vue=1&action=8&id_fiche='.$fiche['bf_id_fiche'];
|
|
|
39 |
$date_pub = ' publiée le '.$fiche['bf_date_maj_fiche'];
|
|
|
40 |
|
|
|
41 |
$resume_item = array('element' => htmlspecialchars($fiche['bf_titre']).$date_pub, 'lien' => $cible_lien);
|
|
|
42 |
$resume['elements'][] = $resume_item;
|
|
|
43 |
}
|
|
|
44 |
}
|
|
|
45 |
|
|
|
46 |
$this->envoyer($resume);
|
|
|
47 |
}
|
|
|
48 |
}
|
453 |
aurelien |
49 |
?>
|