1858 |
alexandre_ |
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 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
22 |
// CVS : $Id: tela_ergo.php,v 1.1 2008-08-25 15:00:28 alexandre_tb Exp $
|
|
|
23 |
/**
|
|
|
24 |
* Application projet
|
|
|
25 |
*
|
|
|
26 |
* Fichier de presentation de la liste des projets pour Tela Botanica nouvelle version
|
|
|
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-2004
|
|
|
34 |
*@version $Revision: 1.1 $
|
|
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
36 |
*/
|
|
|
37 |
|
|
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
39 |
// | ENTETE du PROGRAMME |
|
|
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
41 |
|
|
|
42 |
|
|
|
43 |
define ('PROJET_VARIABLE_MODE_AFFICHAGE', 'projet_affichage');
|
|
|
44 |
define ('PROJET_VARIABLE_TRI', 'projet_tri');
|
|
|
45 |
define ('PROJET_VARIABLE_ORDRE_TRI', 'projet_ordre_tri');
|
|
|
46 |
define ('PROJET_VARIABLE_THEME', 'theme');
|
|
|
47 |
|
|
|
48 |
if (PROJET_UTILISE_TYPE && $this->_type != '') {
|
|
|
49 |
$projetListe = projet::getProjetDuType($this->_type, $this->_db) ;
|
|
|
50 |
if ($this->_presentation == 'arbre')array_push ($projetListe, projet::getProjetRacine($this->_db)) ;
|
|
|
51 |
} else {
|
|
|
52 |
// Un tableau de tous les projets dans $projetListe
|
|
|
53 |
//$projetListe = projet::getTousLesProjets($this->_db, $this->_projet_exclu) ;
|
|
|
54 |
}
|
|
|
55 |
|
|
|
56 |
$_SESSION['_PROJET_']['motif_recherche'] = '';
|
|
|
57 |
|
|
|
58 |
$url = $this->_url->getURL();
|
|
|
59 |
$loggue = $this->_auth->getAuth();
|
|
|
60 |
|
|
|
61 |
// Verification sur l ordre de tri et mise en place
|
|
|
62 |
// du tri par defaut sur le titre
|
|
|
63 |
|
|
|
64 |
$valeur_acceptable_tri = array ('p_titre', 'ps_pourcent', 'ps_nombre_inscrit', 'ps_doc_derniere_semaine', 'psu_id_statut'); // Securite
|
|
|
65 |
|
|
|
66 |
if (isset($_GET[PROJET_VARIABLE_TRI]) && $_GET[PROJET_VARIABLE_TRI] != '' && in_array($_GET[PROJET_VARIABLE_TRI], $valeur_acceptable_tri)) {
|
|
|
67 |
$tri = $_GET[PROJET_VARIABLE_TRI];
|
|
|
68 |
|
|
|
69 |
} else {
|
|
|
70 |
$tri = 'p_titre';
|
|
|
71 |
}
|
|
|
72 |
|
|
|
73 |
$valeur_acceptable_ordre_tri = array ('asc', 'desc'); // securite
|
|
|
74 |
|
|
|
75 |
if (isset($_GET[PROJET_VARIABLE_ORDRE_TRI]) && $_GET[PROJET_VARIABLE_ORDRE_TRI] != ''
|
|
|
76 |
&& in_array ($_GET[PROJET_VARIABLE_ORDRE_TRI], $valeur_acceptable_ordre_tri)) {
|
|
|
77 |
$ordre_tri = $_GET[PROJET_VARIABLE_ORDRE_TRI];
|
|
|
78 |
|
|
|
79 |
} else {
|
|
|
80 |
$ordre_tri = 'asc';
|
|
|
81 |
}
|
|
|
82 |
|
|
|
83 |
// variable de session pour se rappeler des choix du visiteur
|
|
|
84 |
if (!isset ($_GET[PROJET_VARIABLE_MODE_AFFICHAGE]) && isset($_SESSION['_PROJET_']['projet_affichage']) && ($_SESSION['_PROJET_']['projet_affichage'] == 'simple' || $_SESSION['_PROJET_']['projet_affichage'] == 'expert')) {
|
|
|
85 |
$_GET[PROJET_VARIABLE_MODE_AFFICHAGE] = $_SESSION['_PROJET_']['projet_affichage'];
|
|
|
86 |
}
|
|
|
87 |
|
|
|
88 |
if (isset($_GET[PROJET_VARIABLE_MODE_AFFICHAGE]) && $_GET[PROJET_VARIABLE_MODE_AFFICHAGE] != '') {
|
|
|
89 |
$_SESSION['_PROJET_']['projet_affichage'] = $_GET[PROJET_VARIABLE_MODE_AFFICHAGE];
|
|
|
90 |
if ($_SESSION['_PROJET_']['projet_affichage'] == 'expert') {
|
|
|
91 |
$this->_url->addQueryString (PROJET_VARIABLE_MODE_AFFICHAGE, 'simple');
|
|
|
92 |
$lien_interface_simple = '[<a href="'.$this->_url->getURL().'">Affichage simple</a>]';
|
|
|
93 |
$this->_url->addQueryString (PROJET_VARIABLE_MODE_AFFICHAGE, 'expert');
|
|
|
94 |
$lien_interface_expert = '';
|
|
|
95 |
} else {
|
|
|
96 |
$_SESSION['_PROJET_']['projet_affichage'] = 'simple';
|
|
|
97 |
$this->_url->addQueryString (PROJET_VARIABLE_MODE_AFFICHAGE, 'expert');
|
|
|
98 |
$lien_interface_simple = '';
|
|
|
99 |
$lien_interface_expert = '[<a href="'.$this->_url->getURL().'">Affichage expert</a>]';
|
|
|
100 |
}
|
|
|
101 |
} else {
|
|
|
102 |
$_SESSION['_PROJET_']['projet_affichage'] = 'simple';
|
|
|
103 |
$this->_url->addQueryString (PROJET_VARIABLE_MODE_AFFICHAGE, 'expert');
|
|
|
104 |
$lien_interface_simple = '';
|
|
|
105 |
$lien_interface_expert = '[<a href="'.$this->_url->getURL().'">Affichage expert</a>]';
|
|
|
106 |
}
|
|
|
107 |
|
|
|
108 |
if ($_SESSION['_PROJET_']['projet_affichage'] != 'expert') {
|
|
|
109 |
$ordre_tri = 'desc';
|
|
|
110 |
$tri = 'ps_pourcent';
|
|
|
111 |
}
|
|
|
112 |
/** Affichage des themes de projets */
|
|
|
113 |
$requete_type = 'SELECT count( p_id ) AS nbe, pt_label_theme,pt_id_theme
|
|
|
114 |
FROM projet, projet_avoir_theme, projet_theme
|
|
|
115 |
WHERE p_id = pat_id_projet
|
|
|
116 |
AND pat_id_theme = pt_id_theme and p_en_dormance=0
|
|
|
117 |
GROUP BY pt_id_theme';
|
|
|
118 |
|
|
|
119 |
$resultat_type = $GLOBALS['projet_db']->query($requete_type);
|
|
|
120 |
|
|
|
121 |
if (DB::isError($resultat_type)) return $resultat_type->getMessage();
|
|
|
122 |
|
|
|
123 |
$tableau_theme = array();
|
|
|
124 |
|
|
|
125 |
$requete_nb_pj = 'select count(*) as nb from projet';
|
|
|
126 |
$nombre_total_projet = $GLOBALS['projet_db']->getOne($requete_nb_pj);
|
|
|
127 |
|
|
|
128 |
// On ajoute le theme tous
|
|
|
129 |
$tableau_theme[0]['label'] = 'Tous les projets';
|
|
|
130 |
$tableau_theme[0]['id'] = 0;
|
|
|
131 |
$tableau_theme[0]['nombre_projet'] = $nombre_total_projet;
|
|
|
132 |
$this->_url->removeQueryString(PROJET_VARIABLE_MODE_AFFICHAGE);
|
|
|
133 |
$tableau_theme[0]['lien'] = $this->_url->getURL();
|
|
|
134 |
|
|
|
135 |
// Et le theme en dormance
|
|
|
136 |
$requete_dormance = 'select count(p_id) as nb_p_dorman from projet where p_en_dormance=1';
|
|
|
137 |
$nb_p_dormant = $GLOBALS['projet_db']->getOne($requete_dormance);
|
|
|
138 |
|
|
|
139 |
|
|
|
140 |
|
|
|
141 |
while ($ligne_type = $resultat_type->fetchRow(DB_FETCHMODE_OBJECT)) {
|
|
|
142 |
$tableau_theme[$ligne_type->pt_id_theme]['label'] = $ligne_type->pt_label_theme;
|
|
|
143 |
$tableau_theme[$ligne_type->pt_id_theme]['id'] = $ligne_type->pt_id_theme;
|
|
|
144 |
$tableau_theme[$ligne_type->pt_id_theme]['nombre_projet'] = $ligne_type->nbe;
|
|
|
145 |
$this->_url->addQueryString(PROJET_VARIABLE_THEME, $ligne_type->pt_id_theme);
|
|
|
146 |
$tableau_theme[$ligne_type->pt_id_theme]['lien'] = $this->_url->getURL();
|
|
|
147 |
}
|
|
|
148 |
$tableau_theme[9]['label'] = 'En dormance';
|
|
|
149 |
$tableau_theme[9]['id'] = 9;
|
|
|
150 |
$tableau_theme[9]['nombre_projet'] = $nb_p_dormant;
|
|
|
151 |
$this->_url->addQueryString(PROJET_VARIABLE_THEME, 9);
|
|
|
152 |
$tableau_theme[9]['lien'] = $this->_url->getURL();
|
|
|
153 |
|
|
|
154 |
|
|
|
155 |
$this->_url->removeQueryString(PROJET_VARIABLE_THEME);
|
|
|
156 |
|
|
|
157 |
// Contruction de la requete, soit avec le moteur de recherche
|
|
|
158 |
// soit la liste des projets
|
|
|
159 |
if (isset($_GET['projet_recherche']) && $_GET['projet_recherche'] != '') {
|
|
|
160 |
$_SESSION['_PROJET_']['motif_recherche'] = $_GET['projet_recherche'];
|
|
|
161 |
include_once 'papyrus/applettes/moteur_recherche/bibliotheque/more_recherche.class.php';
|
|
|
162 |
include_once 'papyrus/applettes/moteur_recherche/bibliotheque/more_recherche_projet.class.php';
|
|
|
163 |
|
|
|
164 |
$moteur = new More_Recherche($_SESSION['_PROJET_']['motif_recherche']);
|
|
|
165 |
$recherche_projet = new More_Recherche_Projet($_SESSION['_PROJET_']['motif_recherche']);
|
|
|
166 |
$moteur->ajouterRecherche($recherche_projet);
|
|
|
167 |
$resultats = $moteur->rechercherMotif();
|
|
|
168 |
|
|
|
169 |
// $chaine_id_projet contient une liste d identifiant separer par une virgule
|
|
|
170 |
if (!empty($resultats)) {
|
|
|
171 |
$chaine_id_projet = '';
|
|
|
172 |
foreach ($resultats as $projet) {
|
|
|
173 |
$chaine_id_projet .= $projet['id'].',';
|
|
|
174 |
}
|
|
|
175 |
$chaine_id_projet = substr($chaine_id_projet, 0, -1);
|
|
|
176 |
$where_recherche = ' where p_id in ('.$chaine_id_projet.')';
|
|
|
177 |
|
|
|
178 |
$valeur_projet_recherche = $_GET['projet_recherche'];
|
|
|
179 |
}
|
|
|
180 |
} else {
|
|
|
181 |
$where_recherche = '';
|
|
|
182 |
$valeur_projet_recherche = '';
|
|
|
183 |
}
|
|
|
184 |
$select = '';
|
|
|
185 |
$from_recherche = '';
|
|
|
186 |
if (isset($_GET[PROJET_VARIABLE_THEME])) {
|
|
|
187 |
$from_recherche = ' left join projet_avoir_theme on pat_id_projet=p_id left join projet_theme on pat_id_theme=pt_id_theme';
|
|
|
188 |
$where_recherche = ' where pat_id_theme='.$_GET[PROJET_VARIABLE_THEME];
|
|
|
189 |
$theme_selectionne = $_GET[PROJET_VARIABLE_THEME];
|
|
|
190 |
} else {
|
|
|
191 |
$theme_selectionne = 0;
|
|
|
192 |
}
|
|
|
193 |
|
|
|
194 |
if ($this->_auth->getAuth()) {
|
|
|
195 |
/** on recherche egalement le statut si l utilisateur est loggue */
|
|
|
196 |
|
|
|
197 |
$from_recherche .= ' left join projet_statut_utilisateurs on psu_id_projet=p_id and psu_id_utilisateur='.$this->_auth->getAuthData(PROJET_CHAMPS_ID).
|
|
|
198 |
' left join projet_statut on psu_id_statut=ps_id_statut';
|
|
|
199 |
$select = 'psu_id_statut, ps_statut_nom,';
|
|
|
200 |
}
|
|
|
201 |
$requete = 'select '.$select.'p_id, p_titre, p_resume, pl_id_liste, plle_id_liste, p_avoir_document, ps_nombre_inscrit, ps_pourcent,'.
|
|
|
202 |
' p_wikini, ps_doc_derniere_semaine, p_avoir_document, ps_nombre_inscrit_derniere_semaine, '.
|
|
|
203 |
' ps_nombre_membre_yahoo, ps_msg_derniere_semaine, ps_modifwiki_derniere_semaine, p_en_dormance from'.
|
|
|
204 |
' projet left join projet_lien_liste on p_id=pl_id_projet'.
|
|
|
205 |
' left join projet_lien_liste_externe on p_id=plle_id_projet'.
|
|
|
206 |
' left join projet_statistiques on p_id=ps_ce_projet and ps_dernier=1'.
|
|
|
207 |
$from_recherche.
|
|
|
208 |
$where_recherche.
|
|
|
209 |
' group by p_id order by '.$tri.' '.$ordre_tri ;
|
|
|
210 |
|
|
|
211 |
$resultat = $this->_db->query($requete) ;
|
|
|
212 |
if (DB::isError($resultat)) {
|
|
|
213 |
return ("Echec de la requete<br />".$resultat->getMessage()."<br />".$resultat->getDebugInfo()) ;
|
|
|
214 |
}
|
|
|
215 |
|
|
|
216 |
$nombre_resultat = $resultat->numRows();
|
|
|
217 |
|
|
|
218 |
/* Si l utilisateur est loggue, on recherche son statut par rapport aux projets */
|
|
|
219 |
if ($this->_auth->getAuth()) {
|
|
|
220 |
$requete_statut = 'select psu_id_projet, psu_id_statut, ps_statut_nom from projet_statut_utilisateurs, projet_statut'.
|
|
|
221 |
' where ps_id_statut=psu_id_statut and psu_id_utilisateur='.$this->_auth->getAuthData(PROJET_CHAMPS_ID);
|
|
|
222 |
$resultat_statut = $GLOBALS['projet_db']->query($requete_statut);
|
|
|
223 |
while ($ligne_statut = $resultat_statut->fetchRow(DB_FETCHMODE_OBJECT)) {
|
|
|
224 |
$tableau_statut[$ligne_statut->psu_id_projet]['id_statut'] = $ligne_statut->psu_id_statut;
|
|
|
225 |
$tableau_statut[$ligne_statut->psu_id_projet]['nom_statut'] = $ligne_statut->ps_statut_nom;
|
|
|
226 |
}
|
|
|
227 |
}
|
|
|
228 |
|
|
|
229 |
include_once PROJET_CHEMIN_BIBLIOTHEQUE_API.'pear/Pager/Pager.php';
|
|
|
230 |
|
|
|
231 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_OBJECT)) {
|
|
|
232 |
|
|
|
233 |
// Si le projet est en dormance, on ne l affiche pas dans le mode normal
|
|
|
234 |
// Sauf si le theme choisit est "en dormance"
|
|
|
235 |
if ($_SESSION['_PROJET_']['projet_affichage'] != 'expert' && $ligne->p_en_dormance == 1 && $theme_selectionne != 9) {
|
|
|
236 |
|
|
|
237 |
} else {
|
|
|
238 |
$donnees[] = $ligne;
|
|
|
239 |
}
|
|
|
240 |
|
|
|
241 |
}
|
|
|
242 |
|
|
|
243 |
if ($_SESSION['_PROJET_']['projet_affichage'] == 'expert') $perpage = $nombre_resultat; else $perpage = 20;
|
|
|
244 |
// Parametre du pager
|
|
|
245 |
$params = array (
|
|
|
246 |
'mode' => 'Sliding',
|
|
|
247 |
'perPage' => $perpage,
|
|
|
248 |
'delta' => '5',
|
|
|
249 |
'linkClass' => 'num_page',
|
|
|
250 |
'curPageLinkClassName' => 'page_courante',
|
|
|
251 |
'spacesBeforeSeparator' => 0,
|
|
|
252 |
'spacesAfterSeparator' => 0,
|
|
|
253 |
'separator' => '',
|
|
|
254 |
'prevImg' => '<< Page précédente',
|
|
|
255 |
'nextImg' => 'Page suivante >>',
|
|
|
256 |
'extraVars' => array ('projet_recherche' => $_SESSION['_PROJET_']['motif_recherche'],
|
|
|
257 |
PROJET_VARIABLE_MODE_AFFICHAGE => $_SESSION['_PROJET_']['projet_affichage']),
|
|
|
258 |
'itemData' => $donnees
|
|
|
259 |
);
|
|
|
260 |
$pager = & Pager::factory($params);
|
|
|
261 |
$links = $pager->getLinks();
|
|
|
262 |
$data = $pager->getPageData();
|
|
|
263 |
$nombre_projets = $pager->numItems();
|
|
|
264 |
$range = $pager->getOffsetByPageId();
|
|
|
265 |
|
|
|
266 |
|
|
|
267 |
// On inclue un fichier local
|
|
|
268 |
if (file_exists(PROJET_CHEMIN_APPLI.'langues/pro_langues_fr.local.inc.php'))
|
|
|
269 |
include_once PROJET_CHEMIN_APPLI.'langues/pro_langues_fr.local.inc.php' ;
|
|
|
270 |
// On verifie si l'utilisateur participe a des projets
|
|
|
271 |
|
|
|
272 |
$projetNonParticipantListe = & $projetListe ;
|
|
|
273 |
|
|
|
274 |
|
|
|
275 |
$liste_projet = array() ;
|
|
|
276 |
// La liste
|
|
|
277 |
|
|
|
278 |
|
|
|
279 |
$tableau_donnees = array();
|
|
|
280 |
foreach ($data as $ligne) {
|
|
|
281 |
$this->_url->addQueryString(PROJET_VARIABLE_ID_PROJET, $ligne->p_id) ;
|
|
|
282 |
|
|
|
283 |
$tableau_donnees[$ligne->p_id]['lien'] = $this->_url->getURL();
|
|
|
284 |
$tableau_donnees[$ligne->p_id]['titre'] = $ligne->p_titre;
|
|
|
285 |
|
|
|
286 |
$tableau_donnees[$ligne->p_id]['nombre_participants'] = $ligne->ps_nombre_inscrit;
|
|
|
287 |
|
|
|
288 |
$tableau_donnees[$ligne->p_id]['resume'] = $ligne->p_resume;
|
|
|
289 |
if ($_SESSION['_PROJET_']['projet_affichage'] == 'simple') {
|
|
|
290 |
if ($ligne->ps_pourcent <33) {
|
|
|
291 |
$tableau_donnees[$ligne->p_id]['activite'] = 'Peu actif';
|
|
|
292 |
$tableau_donnees[$ligne->p_id]['classe_projet_activite'] = 'projet_activite_faible';
|
|
|
293 |
}
|
|
|
294 |
else if ($ligne->ps_pourcent < 66) {
|
|
|
295 |
$tableau_donnees[$ligne->p_id]['activite'] = 'Assez actif';
|
|
|
296 |
$tableau_donnees[$ligne->p_id]['classe_projet_activite'] = 'projet_activite_moyenne';
|
|
|
297 |
}
|
|
|
298 |
else if ($ligne->ps_pourcent <= 100) {
|
|
|
299 |
$tableau_donnees[$ligne->p_id]['activite'] = 'Très actif';
|
|
|
300 |
$tableau_donnees[$ligne->p_id]['classe_projet_activite'] = 'projet_activite_elevee';
|
|
|
301 |
}
|
|
|
302 |
} else {
|
|
|
303 |
$tableau_donnees[$ligne->p_id]['activite'] = $ligne->ps_pourcent.'%';
|
|
|
304 |
}
|
|
|
305 |
$res .= $ligne->p_resume ;
|
|
|
306 |
$this->_url->addQueryString (PROJET_VARIABLE_ACTION, PROJET_ACTION_S_INSCRIRE);
|
|
|
307 |
$res .= '(<a href="'.$this->_url->getURL().'">Rejoindre ce projet</a>)'."\n";
|
|
|
308 |
|
|
|
309 |
// Recherche du forum
|
|
|
310 |
if ($ligne->pl_id_liste != null && $ligne->plle_id_liste == null) {
|
|
|
311 |
$this->_url->addQueryString('act', PROJET_ACTION_VOIR_FORUM);
|
|
|
312 |
|
|
|
313 |
$forum = '<a href="'.$this->_url->getURL().'"><img src="sites/commun/generique/images/favicones/tela_botanica.png" alt="Tela Botanica" /></a>'."\n";
|
|
|
314 |
$res .= $forum;
|
|
|
315 |
|
|
|
316 |
} else {
|
|
|
317 |
|
|
|
318 |
include_once PROJET_CHEMIN_CLASSES.'liste_externe.class.php' ;
|
|
|
319 |
$listes_ext = new liste_externe ($this->_db) ;
|
|
|
320 |
if ($ligne->plle_id_liste != null) {
|
|
|
321 |
$info_liste = $listes_ext->getInfoListe($ligne->plle_id_liste) ;
|
|
|
322 |
|
|
|
323 |
$forum = '<a href="'.$info_liste->AGO_A_URLGRP.
|
|
|
324 |
'"><img src="sites/commun/generique/images/favicones/yahoo.png" alt="Yahoo"/></a>';
|
|
|
325 |
$tableau_donnees[$ligne->p_id]['nombre_participants'] = $ligne->ps_nombre_membre_yahoo;
|
|
|
326 |
} else {
|
|
|
327 |
$forum = '-';
|
|
|
328 |
}
|
|
|
329 |
}
|
|
|
330 |
if ($ligne->ps_msg_derniere_semaine != 0) {
|
|
|
331 |
|
|
|
332 |
$tableau_donnees[$ligne->p_id]['nombre_message'] = $ligne->ps_msg_derniere_semaine;
|
|
|
333 |
} else {
|
|
|
334 |
$tableau_donnees[$ligne->p_id]['nombre_message'] = 0;
|
|
|
335 |
}
|
|
|
336 |
$tableau_donnees[$ligne->p_id]['forum'] = $forum;
|
|
|
337 |
if ($ligne->p_wikini) {
|
|
|
338 |
$this->_url->addQueryString ('act',PROJET_ACTION_VOIR_WIKINI);
|
|
|
339 |
$link=$this->_url->getURL();
|
|
|
340 |
$wiki_res = '<a href="'.$link.'">voir</a>' ;
|
|
|
341 |
if ($ligne->ps_modifwiki_derniere_semaine != 0) {
|
|
|
342 |
$wiki_res .= ' <span title="Nouvelles contributions cette semaine"> ( +'.$ligne->ps_modifwiki_derniere_semaine.' )</span>';
|
|
|
343 |
}
|
|
|
344 |
$this->_url->removeQueryString ('act');
|
|
|
345 |
} else {
|
|
|
346 |
$wiki_res = '-' ;
|
|
|
347 |
}
|
|
|
348 |
$tableau_donnees[$ligne->p_id]['wikini'] = $wiki_res;
|
|
|
349 |
$titre= '<a href="'.$this->_url->getURL().'">'.$ligne->p_titre.'</a>';
|
|
|
350 |
|
|
|
351 |
if ($ligne->p_avoir_document != 0) {
|
|
|
352 |
$this->_url->addQueryString('act', PROJET_ACTION_VOIR_DOCUMENT) ;
|
|
|
353 |
$document = '<a href="'.$this->_url->getURL().'">voir</a>' ;
|
|
|
354 |
if ($ligne->ps_doc_derniere_semaine != 0) {
|
|
|
355 |
$document .= ' <span title="Nouveaux documents cette semaine">( + '.$ligne->ps_doc_derniere_semaine.')</span>';
|
|
|
356 |
}
|
|
|
357 |
} else {
|
|
|
358 |
$document = '-' ;
|
|
|
359 |
}
|
|
|
360 |
$tableau_donnees[$ligne->p_id]['document'] = $document;
|
|
|
361 |
|
|
|
362 |
if ($ligne->p_wikini) {
|
|
|
363 |
$this->_url->addQueryString ('act',PROJET_ACTION_VOIR_WIKINI);
|
|
|
364 |
$link=$this->_url->getURL();
|
|
|
365 |
$this->_url->addQueryString('wiki', 'DerniersChangementsRSS/xml');
|
|
|
366 |
$wiki_rss = '<a href="'.$this->_url->getURL().'"><img src="sites/commun/generique/images/rss.gif" alt="rss"/></a>' ;
|
|
|
367 |
$this->_url->removeQueryString ('act');
|
|
|
368 |
$this->_url->removeQueryString ('wiki');
|
|
|
369 |
} else {
|
|
|
370 |
$wiki_rss = '-' ;
|
|
|
371 |
}
|
|
|
372 |
$tableau_donnees[$ligne->p_id]['wikini_rss'] = $wiki_rss;
|
|
|
373 |
|
|
|
374 |
$this->_url->addQueryString ('act', PROJET_ACTION_VOIR_PARTICIPANT);
|
|
|
375 |
$participant = '<a href="'.$this->_url->getURL().'">voir</a>' ;
|
|
|
376 |
$tableau_donnees[$ligne->p_id]['lien_participants'] = $this->_url->getURL();
|
|
|
377 |
if ($ligne->ps_nombre_inscrit_derniere_semaine != 0) {
|
|
|
378 |
$tableau_donnees[$ligne->p_id]['ps_nombre_inscrit_derniere_semaine'] = '<span title="Nouveaux inscrits cette semaine">( + '.$ligne->ps_nombre_inscrit_derniere_semaine.' )</span>';
|
|
|
379 |
} else {
|
|
|
380 |
$tableau_donnees[$ligne->p_id]['ps_nombre_inscrit_derniere_semaine'] = '';
|
|
|
381 |
}
|
|
|
382 |
|
|
|
383 |
$ligne_projet = array ( '', $titre, $forum, // le nom du projet
|
|
|
384 |
$wiki_res, $wiki_rss,$document, $participant) ;
|
|
|
385 |
|
|
|
386 |
$this->_url->removeQueryString(PROJET_VARIABLE_ACTION);
|
|
|
387 |
array_push ($liste_projet, $ligne_projet) ;
|
|
|
388 |
|
|
|
389 |
if ($loggue) {
|
|
|
390 |
switch ($ligne->psu_id_statut) {
|
|
|
391 |
case 1 : $icone_statut = 'etoile_rouge';
|
|
|
392 |
$tableau_donnees[$ligne->p_id]['id_statut'] = 3;
|
|
|
393 |
break;
|
|
|
394 |
case 2 : $icone_statut = 'etoile_verte';
|
|
|
395 |
$tableau_donnees[$ligne->p_id]['id_statut'] = 2;
|
|
|
396 |
break;
|
|
|
397 |
case 3 : $icone_statut = 'etoile_grise';
|
|
|
398 |
$tableau_donnees[$ligne->p_id]['id_statut'] = 1;
|
|
|
399 |
break;
|
|
|
400 |
default : $tableau_donnees[$ligne->p_id]['statut_icone'] = '';
|
|
|
401 |
$tableau_donnees[$ligne->p_id]['id_statut'] = 0;
|
|
|
402 |
$icone_statut = false;
|
|
|
403 |
}
|
|
|
404 |
if ($icone_statut) $tableau_donnees[$ligne->p_id]['statut_icone'] = '<img src="'.PROJET_CHEMIN_ICONES.$icone_statut.'.png" alt="'.$ligne->ps_statut_nom.'" title="'.$ligne->ps_statut_nom.'" />';
|
|
|
405 |
|
|
|
406 |
}
|
|
|
407 |
$res .= '</li>'."\n";
|
|
|
408 |
}
|
|
|
409 |
$res .= '</ul>'."\n";
|
|
|
410 |
$this->_url->removeQueryString(PROJET_VARIABLE_ACTION) ;
|
|
|
411 |
$this->_url->removeQueryString (PROJET_VARIABLE_ID_PROJET);
|
|
|
412 |
|
|
|
413 |
// Correction bug tri par participant
|
|
|
414 |
if ($_GET[PROJET_VARIABLE_TRI] == 'ps_nombre_inscrit') {
|
|
|
415 |
foreach ($tableau_donnees as $key => $row) {
|
|
|
416 |
$nombre_inscrit[$key] = $row['nombre_participants'];
|
|
|
417 |
}
|
|
|
418 |
if ($_GET[PROJET_VARIABLE_ORDRE_TRI] == 'asc') $flag = SORT_ASC ; else $flag = SORT_DESC ;
|
|
|
419 |
array_multisort($nombre_inscrit, $flag, $tableau_donnees);
|
|
|
420 |
}
|
|
|
421 |
|
|
|
422 |
// Correction bug tri sur les statuts
|
|
|
423 |
if ($_GET[PROJET_VARIABLE_TRI] == 'psu_id_statut') {
|
|
|
424 |
foreach ($tableau_donnees as $key => $row) {
|
|
|
425 |
$id_statut[$key] = $row['id_statut'];
|
|
|
426 |
}
|
|
|
427 |
if ($_GET[PROJET_VARIABLE_ORDRE_TRI] == 'asc') $flag = SORT_ASC ; else $flag = SORT_DESC ;
|
|
|
428 |
array_multisort($id_statut, $flag, $tableau_donnees);
|
|
|
429 |
}
|
|
|
430 |
|
|
|
431 |
$pair = true;
|
|
|
432 |
|
|
|
433 |
ob_start();
|
|
|
434 |
if ($_SESSION['_PROJET_']['projet_affichage'] == 'expert') {
|
|
|
435 |
GEN_stockerFichierScript('jquery', 'api/js/jquery/jquery.js');
|
|
|
436 |
GEN_stockerFichierScript('animatedcollapse', 'api/js/jquery/animatedcollapse.js');
|
|
|
437 |
GEN_stockerCodeScript('animatedcollapse.addDiv(\'legende\', \'fade=1, height="100px"\');' ."\n".
|
|
|
438 |
'animatedcollapse.init();' ."\n");
|
|
|
439 |
include_once PROJET_CHEMIN_CLASSES.'enteteColonneTriable.class.php';
|
|
|
440 |
foreach ($valeur_acceptable_tri as $var_tri) {
|
|
|
441 |
$enteteTri[$var_tri] = new enteteColonneTriable($var_tri);
|
|
|
442 |
$enteteTri[$var_tri]->setColonneCliquee($tri, PROJET_VARIABLE_TRI);
|
|
|
443 |
$enteteTri[$var_tri]->setOrdre($ordre_tri, PROJET_VARIABLE_ORDRE_TRI);
|
|
|
444 |
|
|
|
445 |
}
|
|
|
446 |
|
|
|
447 |
$lien_tri_titre = $enteteTri['p_titre']->getLien($this->_url);
|
|
|
448 |
$lien_tri_activite = $enteteTri['ps_pourcent']->getLien($this->_url);
|
|
|
449 |
$lien_tri_participants = $enteteTri['ps_nombre_inscrit']->getLien($this->_url);
|
|
|
450 |
$lien_tri_doc = $enteteTri['ps_doc_derniere_semaine']->getLien($this->_url);
|
|
|
451 |
$lien_tri_statut = $enteteTri['psu_id_statut']->getLien($this->_url);
|
|
|
452 |
include_once PROJET_CHEMIN_APPLI.'/squelettes/liste_projet_expert.tpl.html';
|
|
|
453 |
} else {
|
|
|
454 |
include_once PROJET_CHEMIN_APPLI.'/squelettes/liste_projet.tpl.html';
|
|
|
455 |
}
|
|
|
456 |
$res = ob_get_contents();
|
|
|
457 |
ob_end_clean();
|
|
|
458 |
|
|
|
459 |
|
|
|
460 |
// Nettoyage de l'url
|
|
|
461 |
$this->_url->removeQueryString (PROJET_VARIABLE_ID_PROJET);
|
|
|
462 |
$this->_url->removeQueryString (PROJET_VARIABLE_MODE_AFFICHAGE);
|
|
|
463 |
$this->_url->removeQueryString (PROJET_VARIABLE_ORDRE_TRI);
|
|
|
464 |
$this->_url->removeQueryString (PROJET_VARIABLE_TRI);
|
|
|
465 |
return $res ;
|
|
|
466 |
|
|
|
467 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
468 |
*
|
|
|
469 |
* $Log: not supported by cvs2svn $
|
|
|
470 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
471 |
*/
|
|
|
472 |
|
|
|
473 |
|
|
|
474 |
?>
|