Subversion Repositories Applications.projet

Rev

Rev 399 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 399 Rev 431
Line 1... Line 1...
1
<?php
1
<?php
2
/**
2
/**
3
* PHP Version 5
3
* PHP Version 5
4
*
4
*
5
* @category  PHP
5
* @category  PHP
6
* @package   papyrus_bp
6
* @package   papyrus_bp
7
* @author    aurelien <aurelien@tela-botanica.org>
7
* @author    aurelien <aurelien@tela-botanica.org>
8
* @copyright 2010 Tela-Botanica
8
* @copyright 2010 Tela-Botanica
9
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
9
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
10
* @version   SVN: <svn_id>
10
* @version   SVN: <svn_id>
11
* @link      /doc/papyrus_bp/
11
* @link      /doc/papyrus_bp/
12
*/
12
*/
13
 
13
 
14
Class Documents extends ProjetService {
14
Class Documents extends ProjetService {
15
	
15
	
16
	public function __construct($config, $demarrer_session= true) {
16
	public function __construct($config, $demarrer_session= true) {
17
		parent::__construct($config, $demarrer_session);
17
		parent::__construct($config, $demarrer_session);
18
	}
18
	}
19
 
19
 
20
	public function getElement($uid){
20
	public function getElement($uid){
21
		
21
		
22
	    $id_utilisateur = $uid[1];
22
	    $id_utilisateur = $uid[1];
23
	    $mail_utilisateur = $uid[2];
23
	    $mail_utilisateur = $uid[2];
24
	    
24
	    
25
	    if($id_utilisateur == "") {
25
	    if($id_utilisateur == "") {
26
	    	return;
26
	    	return;
27
	    }
27
	    }
28
 
28
 
29
		// on selectionne les projets les plus actifs
29
		// on selectionne les projets les plus actifs
30
		$requete_docs_projets = 'SELECT * FROM projet_documents WHERE pd_ce_utilisateur = '.$this->bdd->quote($id_utilisateur).' '.
30
		$requete_docs_projets = 'SELECT * FROM projet_documents WHERE pd_ce_utilisateur = '.$this->bdd->quote($id_utilisateur).' '.
31
 								'AND pd_ce_type != 0 AND pd_visibilite = "public" '.
31
 								'AND pd_ce_type != 0 AND pd_visibilite = "public" '.
32
 								'ORDER BY pd_date_de_mise_a_jour DESC '.
32
 								'ORDER BY pd_date_de_mise_a_jour DESC '.
33
 								'LIMIT 0,5';
33
 								'LIMIT 0,5';
34
		
34
		
35
		$resume = array();
35
		$resume = array();
36
 
36
 
37
		$resume['titre'] = 'Vos derniers documents déposés';
37
		$resume['titre'] = 'Mes derniers documents déposés';
38
		//$resume['lien_appli'] = '<a href="http://www.tela-botanica.org/page:liste_projets"> Voir tous les projets </a>';
38
		//$resume['lien_appli'] = '<a href="http://www.tela-botanica.org/page:liste_projets"> Voir tous les projets </a>';
39
 
39
 
40
		$docs = $this->bdd->query($requete_docs_projets)->fetchAll();
40
		$docs = $this->bdd->query($requete_docs_projets)->fetchAll();
41
 
41
 
42
	    if(!$docs) {
42
	    if(!$docs) {
43
	    	$resume['message'] = 'Vous n\'avez déposé aucun document';
43
	    	$resume['message'] = 'Vous n\'avez déposé aucun document';
44
	    } else {
44
	    } else {
45
		    foreach($docs as $doc) {
45
		    foreach($docs as $doc) {
46
		    	
46
		    	
47
		    	$infos_projet = $this->obtenirInformationsProjet($doc['pd_ce_projet']);
47
		    	$infos_projet = $this->obtenirInformationsProjet($doc['pd_ce_projet']);
-
 
48
		    	
-
 
49
		    	//print_r($infos_projet);
48
		    			    	
50
		    			    	
49
		    	$nom_projet = $infos_projet[0]['p_titre'];
51
		    	$nom_projet = $infos_projet[0]['p_titre'];
50
		    	
52
		    	
51
		    	$date_formatee = strftime( "%d/%m/%Y" , strtotime( $doc['pd_date_de_mise_a_jour'] ) );
53
		    	$date_formatee = strftime( "%d/%m/%Y" , strtotime( $doc['pd_date_de_mise_a_jour'] ) );
52
 
54
 
53
				$infos_messages = ' ('.$nom_projet.' le '.$date_formatee.') ';
55
				$infos_messages = ' ('.$nom_projet.' le '.$date_formatee.') ';
54
				$cible_lien = 'http://www.tela-botanica.org/projets/'.$doc['pd_ce_projet'].'/telechargement/'.$doc['pd_id'];
56
				$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);
57
				$resume_item = array('element' => $doc['pd_nom'].$infos_messages, 'lien' => $cible_lien);
56
				$resume['elements'][] = $resume_item;
58
				$resume['elements'][] = $resume_item;
57
		    }
59
		    }
58
	    }
60
	    }
59
 
61
 
60
		$this->envoyer($resume);
62
		$this->envoyer($resume);
61
	}
63
	}
62
}
64
}
63
?>
65
?>
64
66