448 |
ddelon |
1 |
<?php
|
|
|
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
|
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
4 |
// | PHP version 4.1 |
|
|
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
6 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
|
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
8 |
// | This library is free software; you can redistribute it and/or |
|
|
|
9 |
// | modify it under the terms of the GNU General Public |
|
|
|
10 |
// | License as published by the Free Software Foundation; either |
|
|
|
11 |
// | version 2.1 of the License, or (at your option) any later version. |
|
|
|
12 |
// | |
|
|
|
13 |
// | This library is distributed in the hope that it will be useful, |
|
|
|
14 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
15 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
16 |
// | General Public License for more details. |
|
|
|
17 |
// | |
|
|
|
18 |
// | You should have received a copy of the GNU General Public |
|
|
|
19 |
// | License along with this library; if not, write to the Free Software |
|
|
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
|
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
1555 |
alexandre_ |
22 |
// CVS : $Id: resume.php,v 1.13 2007-08-28 10:33:50 alexandre_tb Exp $
|
448 |
ddelon |
23 |
/**
|
|
|
24 |
* Application projet
|
|
|
25 |
*
|
|
|
26 |
* Action resume
|
|
|
27 |
*
|
|
|
28 |
*@package projet
|
|
|
29 |
//Auteur original :
|
|
|
30 |
*@author Alexandre Granier <alexandre@tela-botanica.org>
|
|
|
31 |
//Autres auteurs :
|
|
|
32 |
*@author Aucun
|
|
|
33 |
*@copyright Tela-Botanica 2000-2005
|
1555 |
alexandre_ |
34 |
*@version $Revision: 1.13 $
|
448 |
ddelon |
35 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
36 |
*/
|
|
|
37 |
|
|
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
39 |
// | ENTETE du PROGRAMME |
|
|
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
41 |
|
|
|
42 |
// RAPPEL IMPORTANT
|
|
|
43 |
// On se situe dans la méthode run() de la classe projetControleur
|
|
|
44 |
//
|
|
|
45 |
|
940 |
alexandre_ |
46 |
$retour = '';
|
448 |
ddelon |
47 |
|
|
|
48 |
// création de l'objet projet courant
|
1336 |
neiluj |
49 |
include_once PROJET_CHEMIN_CLASSES.'projet.class.php' ;
|
|
|
50 |
include_once PROJET_CHEMIN_CLASSES.'participe.class.php' ;
|
448 |
ddelon |
51 |
$projet = new projet ($this->_db, $this->_id_projet) ;
|
|
|
52 |
|
|
|
53 |
// récupération de la liste des documents associés
|
703 |
alexandre_ |
54 |
$liste_documents = document::getDocumentsRecents(4, $this->_db, PROJET_CHEMIN_FICHIER,
|
|
|
55 |
PROJET_CHEMIN_ICONES, $this->_id_projet) ;
|
448 |
ddelon |
56 |
|
|
|
57 |
// création de la vue liste de document, on nettoie l'url
|
|
|
58 |
//$this->_url->removeQueryString(PROJET_VARIABLE_ACTION) ;
|
|
|
59 |
include_once PROJET_CHEMIN_CLASSES.'HTML_listeDocuments.class.php' ;
|
864 |
alexandre_ |
60 |
include_once (PROJET_CHEMIN_CLASSES.'ezmlmAccessObject.class.php') ;
|
448 |
ddelon |
61 |
$vue_liste_document = new HTML_listeDocuments($this->_url, false, '', $this->_auth) ;
|
|
|
62 |
|
|
|
63 |
// réglage de paramètres de la vue
|
|
|
64 |
$vue_liste_document->setAction (array ("couper" => PROJET_ACTION_COUPER, "modifier" => PROJET_ACTION_MODIFIER, "supprimer" => PROJET_SUPPRESSION_FICHIER)) ;
|
|
|
65 |
$vue_liste_document->setCheminIcones(PROJET_CHEMIN_ICONES) ;
|
|
|
66 |
|
|
|
67 |
|
|
|
68 |
// vérification des droits de l'utilisateur
|
|
|
69 |
$entete_liste = array (PROJET_FICHIERS_NOM, PROJET_FICHIERS_TAILLE, PROJET_FICHIERS_PAR, PROJET_FICHIERS_CREE_LE) ;
|
|
|
70 |
|
|
|
71 |
if ($this->_auth->getAuth()) {
|
904 |
alexandre_ |
72 |
$droits = PROJET_DROIT_AUCUN;
|
448 |
ddelon |
73 |
$participant = new participe($this->_db) ;
|
|
|
74 |
$id_u = $this->_auth->getAuthData(PROJET_CHAMPS_ID) ;
|
|
|
75 |
$isCoord = $participant->isCoordinateur($id_u, $this->_id_projet, $this->_db) ;
|
1136 |
alexandre_ |
76 |
$isParticipant = $participant->isContributeur($id_u, $this->_id_projet, $this->_db) ;
|
|
|
77 |
if ($isParticipant) $droits = PROJET_DROIT_CONTRIBUTEUR;
|
448 |
ddelon |
78 |
if ($isCoord) $droits = PROJET_DROIT_COORDINATEUR ;
|
|
|
79 |
$isAdm = participe::isAdministrateur($this->_auth->getAuthData(PROJET_CHAMPS_ID), $this->_db) ;
|
|
|
80 |
if ($isAdm) $droits = PROJET_DROIT_ADMINISTRATEUR ;
|
|
|
81 |
if ($isAdm) $isCoord = true ;
|
|
|
82 |
|
|
|
83 |
$statut = participe::getStatutSurProjetCourant ($this->_auth->getAuthData(PROJET_CHAMPS_ID), $this->_id_projet, $this->_db) ;
|
|
|
84 |
// si participant, on ajoute le champs visibilite
|
|
|
85 |
|
|
|
86 |
if ($statut !='' || $isAdm) {
|
|
|
87 |
array_push ($entete_liste, PROJET_FICHIERS_VISIBILITE) ;
|
703 |
alexandre_ |
88 |
$visible = true ;
|
|
|
89 |
} else {
|
|
|
90 |
$visible = false ;
|
448 |
ddelon |
91 |
}
|
703 |
alexandre_ |
92 |
// récupération de la liste des documents associés
|
|
|
93 |
$liste_documents = document::getDocumentsRecents(4, $this->_db, PROJET_CHEMIN_FICHIER,
|
|
|
94 |
PROJET_CHEMIN_ICONES, $this->_id_projet, $visible) ;
|
|
|
95 |
|
|
|
96 |
|
448 |
ddelon |
97 |
// si chef de projet ou si propriétaire d'au moins 1 document
|
|
|
98 |
$proprietaire_un_document = false ;
|
|
|
99 |
|
|
|
100 |
foreach ($liste_documents as $document) {
|
|
|
101 |
if ($this->_auth->getAuthData(PROJET_CHAMPS_ID) == $document->_id_proprietaire) {
|
|
|
102 |
$proprietaire_un_document = true ;
|
|
|
103 |
$droits = PROJET_DROIT_PROPRIETAIRE ;
|
|
|
104 |
}
|
|
|
105 |
}
|
|
|
106 |
if ($droits <= PROJET_DROIT_COORDINATEUR || $proprietaire_un_document) {
|
|
|
107 |
array_push ($entete_liste, PROJET_ACTION) ;
|
|
|
108 |
}
|
|
|
109 |
} else {
|
|
|
110 |
$droits = PROJET_DROIT_AUCUN ;
|
703 |
alexandre_ |
111 |
// récupération de la liste des documents associés
|
|
|
112 |
$liste_documents = document::getDocumentsRecents(4, $this->_db, PROJET_CHEMIN_FICHIER,
|
|
|
113 |
PROJET_CHEMIN_ICONES, $this->_id_projet, false) ;
|
|
|
114 |
|
448 |
ddelon |
115 |
}
|
|
|
116 |
if (!isset($droits)) $droits = PROJET_DROIT_AUCUN ;
|
|
|
117 |
|
|
|
118 |
$vue_liste_document->construitEntete($entete_liste) ;
|
|
|
119 |
$vue_liste_document->construitListe ($liste_documents, $droits, 'ignore_repertoire', $this->_db) ;
|
|
|
120 |
|
|
|
121 |
$wiki_res = '' ;
|
|
|
122 |
// Les wikinis associés au projet
|
|
|
123 |
if ($projet->getWikini()) {
|
564 |
ddelon |
124 |
$url = $GLOBALS['_GEN_commun']['url'] ;
|
|
|
125 |
|
618 |
alexandre_ |
126 |
$this->_url->addQueryString ('act',PROJET_ACTION_VOIR_WIKINI);
|
|
|
127 |
$link=$this->_url->getURL();
|
637 |
alexandre_ |
128 |
|
663 |
alexandre_ |
129 |
$wiki_res .= '<div><a href="'.$link.'">'.PROJET_ALLER_SUR_WIKINI.'</a> ('.$projet->getWikini().')' ;
|
448 |
ddelon |
130 |
$wiki_res .= '</div>' ;
|
|
|
131 |
} else {
|
|
|
132 |
$wiki_res .= '<div>'.PROJET_WIKINI_PAS.'</div>'."\n" ;
|
|
|
133 |
}
|
|
|
134 |
// On charge les listes de discussion du projet
|
|
|
135 |
// Pour le moment seul ezmlm est supportée
|
|
|
136 |
|
|
|
137 |
$projet->getListesAssociees();
|
|
|
138 |
$sortie_liste = '' ;
|
|
|
139 |
|
|
|
140 |
$liste_ext_res = '' ;
|
|
|
141 |
if ($projet->avoirListe()) {
|
|
|
142 |
ob_start() ;
|
1336 |
neiluj |
143 |
include_once PROJET_CHEMIN_CLASSES_LISTES.'ezmlm.php' ;
|
448 |
ddelon |
144 |
foreach ($projet->_listes_associes as $info_liste) {
|
|
|
145 |
$liste = new ezmlm_php() ;
|
|
|
146 |
// Paramétrage de la liste
|
|
|
147 |
|
|
|
148 |
$liste->listdir = PROJET_CHEMIN_LISTES.$info_liste->getDomaine().'/'.$info_liste->getNom();
|
|
|
149 |
|
|
|
150 |
$liste->listname = $info_liste->getNom() ;
|
|
|
151 |
$liste->listdomain = $info_liste->getDomaine();
|
|
|
152 |
|
|
|
153 |
if (isset ($GLOBALS['action']) && $GLOBALS['action'] != '') {
|
|
|
154 |
$liste->set_action($GLOBALS['action']) ;
|
|
|
155 |
$liste->set_actionargs($GLOBALS['actionargs']) ;
|
|
|
156 |
} else {
|
|
|
157 |
$liste->set_action('list_info') ;
|
|
|
158 |
}
|
|
|
159 |
$liste->sendheaders = false;
|
|
|
160 |
$liste->sendbody = false;
|
|
|
161 |
$liste->sendfooters = false;
|
|
|
162 |
$liste->forcehref = $this->_url->getURL() ;
|
|
|
163 |
|
|
|
164 |
|
|
|
165 |
|
|
|
166 |
if ($info_liste->isPublic() || $droits <= PROJET_DROIT_CONTRIBUTEUR) {
|
|
|
167 |
$this->_url->removeQueryString(PROJET_VARIABLE_ACTION) ;
|
|
|
168 |
switch ($liste->action) {
|
|
|
169 |
case "list_info":
|
864 |
alexandre_ |
170 |
$this->_url->addQueryString('act', PROJET_ACTION_VOIR_FORUM);
|
|
|
171 |
$xml_parser = &new ezmlmAccessObject('calendrier_messages', $info_liste->getDomaine(),
|
|
|
172 |
$info_liste->getNom(), $GLOBALS['lang'],
|
|
|
173 |
$this->_url->getURL()) ;
|
|
|
174 |
|
|
|
175 |
$xml_parser->reset() ;
|
|
|
176 |
$xml_parser->setAction ('derniers_messages');
|
|
|
177 |
$xml_parser->load();
|
|
|
178 |
ob_start ();
|
|
|
179 |
$xml_parser->parse() ;
|
|
|
180 |
$derniers_messages = ob_get_contents() ;
|
|
|
181 |
ob_end_clean();
|
|
|
182 |
echo $derniers_messages ;
|
448 |
ddelon |
183 |
break;
|
|
|
184 |
}
|
|
|
185 |
} else {
|
|
|
186 |
print PROJET_MESSAGE_LISTE_PRIVEE;
|
|
|
187 |
}
|
|
|
188 |
$sortie_liste = ob_get_contents() ;
|
|
|
189 |
ob_end_clean() ;
|
|
|
190 |
}
|
|
|
191 |
}
|
|
|
192 |
|
|
|
193 |
// Site internet associé
|
|
|
194 |
$sortie_web = '<h2>'.PROJET_ESPACE_INTERNET.'</h2>'."\n" ;
|
|
|
195 |
if ($projet->getEspaceInternet() != '') {
|
|
|
196 |
$sortie_web .= '<a href="'.$projet->getEspaceInternet().'" target="_blank">'.$projet->getEspaceInternet().'</a>'."\n" ;
|
|
|
197 |
} else {
|
|
|
198 |
$sortie_web .= PROJET_PAS_DE_SITE ;
|
|
|
199 |
}
|
|
|
200 |
|
|
|
201 |
include_once PROJET_CHEMIN_CLASSES.'liste_externe.class.php' ;
|
|
|
202 |
$listes_ext = new liste_externe ($this->_db) ;
|
|
|
203 |
$tableau_liste = $listes_ext->getListesAssociees($this->_id_projet) ;
|
|
|
204 |
|
|
|
205 |
if (count ($tableau_liste) != 0) {
|
|
|
206 |
$liste_ext_res .= '<h2>'.PROJET_LISTES_ASSOCIEES.'</h2>'."\n" ;
|
|
|
207 |
for ($i = 0; $i < count ($tableau_liste); $i++) {
|
|
|
208 |
$info_liste = $listes_ext->getInfoListe($tableau_liste[$i]) ;
|
|
|
209 |
//$liste_ext_res .= '<h2>'.$info_liste->AGO_A_NOMGRPLG.'</h2>'."\n" ;
|
|
|
210 |
//$liste_ext_res .= '<p>'.$info_liste->AGO_A_RESUMLG.'</p>'."\n" ;
|
|
|
211 |
$liste_ext_res .= '<p><a href="'.$info_liste->AGO_A_URLGRP.'" target="_blank">'.$info_liste->AGO_A_URLGRP.'</a></p>'."\n" ;
|
|
|
212 |
//$liste_ext_res .= '<br />'."\n" ;
|
|
|
213 |
}
|
|
|
214 |
}
|
|
|
215 |
|
|
|
216 |
$retour .= '<h1>'.PROJET_PROJET.' : '.$projet->getTitre()."</h1>" ;
|
|
|
217 |
$retour .= '<h2>'.PROJET_RESUME.'</h2>'."\n" ;
|
|
|
218 |
$retour .= '<div>'.$projet->getResume().'</div>'."\n" ;
|
|
|
219 |
$retour .= '<h2>'.PROJET_WIKI_ASSOCIE.'</h2>' ;
|
|
|
220 |
$retour .= $wiki_res ;
|
|
|
221 |
$retour .= $sortie_web ;
|
|
|
222 |
$retour .= '<h2>'.PROJET_DERNIERS_MESSAGES.'</h2>'."\n" ;
|
|
|
223 |
$retour .= $liste_ext_res.$sortie_liste ;
|
|
|
224 |
$retour .= '<h2>'.PROJET_FICHIERS_RECENTS.'</h2>'."\n" ;
|
1555 |
alexandre_ |
225 |
$retour .= $vue_liste_document->toHTML('', '') ;
|
448 |
ddelon |
226 |
//$retour .= '<h2>'.PROJET_LISTES_ASSOCIEES.'</h2>'."\n" ;
|
|
|
227 |
//$retour .= $sortie_liste ;
|
|
|
228 |
|
|
|
229 |
|
|
|
230 |
?>
|