389 |
aurelien |
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 Documents extends ProjetService {
|
|
|
15 |
|
|
|
16 |
public function __construct($config, $demarrer_session= true) {
|
|
|
17 |
parent::__construct($config, $demarrer_session);
|
|
|
18 |
}
|
|
|
19 |
|
|
|
20 |
public function getElement($uid){
|
|
|
21 |
|
|
|
22 |
$id_utilisateur = $uid[1];
|
|
|
23 |
$mail_utilisateur = $uid[2];
|
|
|
24 |
|
|
|
25 |
if($id_utilisateur == "") {
|
|
|
26 |
return;
|
|
|
27 |
}
|
|
|
28 |
|
|
|
29 |
// on selectionne les projets les plus actifs
|
399 |
aurelien |
30 |
$requete_docs_projets = 'SELECT * FROM projet_documents WHERE pd_ce_utilisateur = '.$this->bdd->quote($id_utilisateur).' '.
|
389 |
aurelien |
31 |
'AND pd_ce_type != 0 AND pd_visibilite = "public" '.
|
|
|
32 |
'ORDER BY pd_date_de_mise_a_jour DESC '.
|
|
|
33 |
'LIMIT 0,5';
|
|
|
34 |
|
|
|
35 |
$resume = array();
|
|
|
36 |
|
|
|
37 |
$resume['titre'] = 'Vos derniers documents déposés';
|
|
|
38 |
//$resume['lien_appli'] = '<a href="http://www.tela-botanica.org/page:liste_projets"> Voir tous les projets </a>';
|
|
|
39 |
|
|
|
40 |
$docs = $this->bdd->query($requete_docs_projets)->fetchAll();
|
|
|
41 |
|
|
|
42 |
if(!$docs) {
|
|
|
43 |
$resume['message'] = 'Vous n\'avez déposé aucun document';
|
|
|
44 |
} else {
|
|
|
45 |
foreach($docs as $doc) {
|
|
|
46 |
|
|
|
47 |
$infos_projet = $this->obtenirInformationsProjet($doc['pd_ce_projet']);
|
|
|
48 |
|
|
|
49 |
$nom_projet = $infos_projet[0]['p_titre'];
|
|
|
50 |
|
|
|
51 |
$date_formatee = strftime( "%d/%m/%Y" , strtotime( $doc['pd_date_de_mise_a_jour'] ) );
|
|
|
52 |
|
|
|
53 |
$infos_messages = ' ('.$nom_projet.' le '.$date_formatee.') ';
|
|
|
54 |
$cible_lien = 'http://www.tela-botanica.org/projets/'.$doc['pd_ce_projet'].'/telechargement/'.$doc['pd_id'];
|
|
|
55 |
$resume_item = array('element' => $doc['pd_nom'].$infos_messages, 'lien' => $cible_lien);
|
|
|
56 |
$resume['elements'][] = $resume_item;
|
|
|
57 |
}
|
|
|
58 |
}
|
|
|
59 |
|
|
|
60 |
$this->envoyer($resume);
|
|
|
61 |
}
|
|
|
62 |
}
|
|
|
63 |
?>
|