Line 17... |
Line 17... |
17 |
// | |
|
17 |
// | |
|
18 |
// | You should have received a copy of the GNU General Public |
|
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 |
|
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 |
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
22 |
// CVS : $Id: participants.php,v 1.5 2005-10-21 16:24:23 ddelon Exp $
|
22 |
// CVS : $Id: participants.php,v 1.5.4.1 2007-04-11 12:20:01 alexandre_tb Exp $
|
23 |
/**
|
23 |
/**
|
24 |
* Application projet
|
24 |
* Application projet
|
25 |
*
|
25 |
*
|
26 |
* Action participants
|
26 |
* Action participants
|
27 |
*
|
27 |
*
|
Line 29... |
Line 29... |
29 |
//Auteur original :
|
29 |
//Auteur original :
|
30 |
*@author Alexandre Granier <alexandre@tela-botanica.org>
|
30 |
*@author Alexandre Granier <alexandre@tela-botanica.org>
|
31 |
//Autres auteurs :
|
31 |
//Autres auteurs :
|
32 |
*@author Aucun
|
32 |
*@author Aucun
|
33 |
*@copyright Tela-Botanica 2000-2005
|
33 |
*@copyright Tela-Botanica 2000-2005
|
34 |
*@version $Revision: 1.5 $
|
34 |
*@version $Revision: 1.5.4.1 $
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
36 |
*/
|
36 |
*/
|
Line 37... |
Line 37... |
37 |
|
37 |
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
Line 44... |
Line 44... |
44 |
//
|
44 |
//
|
Line 45... |
Line 45... |
45 |
|
45 |
|
Line 46... |
Line 46... |
46 |
include_once PROJET_CHEMIN_CLASSES.'HTML_listeParticipants.class.php' ;
|
46 |
include_once PROJET_CHEMIN_CLASSES.'HTML_listeParticipants.class.php' ;
|
- |
|
47 |
|
- |
|
48 |
$res = '' ;
|
47 |
|
49 |
include_once PROJET_CHEMIN_CLASSES.'participe.class.php' ;
|
48 |
$res = '' ;
|
50 |
include_once PROJET_CHEMIN_CLASSES.'projet.class.php' ;
|
49 |
$projet = new projet ($this->_db, $this->_id_projet) ;
|
51 |
$projet = new projet ($this->_db, $this->_id_projet) ;
|
- |
|
52 |
$retour .= '<h1>'.PROJET_PROJET.' : '.$projet->getTitre()."</h1>" ;
|
50 |
$retour .= '<h1>'.PROJET_PROJET.' : '.$projet->getTitre()."</h1>" ;
|
53 |
$titre = '<h2>'.PROJET_LISTE_PARTICIPANT.'</h2>'."\n" ;
|
Line 51... |
Line 54... |
51 |
$titre = '<h2>'.PROJET_LISTE_PARTICIPANT.'</h2>'."\n" ;
|
54 |
|
52 |
$participants = new participe($this->_db) ;
|
55 |
$participants = new participe($this->_db) ;
|
53 |
|
56 |
|
Line 100... |
Line 103... |
100 |
array_push ($entete, PROJET_MAIL) ;
|
103 |
array_push ($entete, PROJET_MAIL) ;
|
Line 101... |
Line 104... |
101 |
|
104 |
|
102 |
$info_utilisateur = $participants->getInscrits($this->_id_projet, $droits) ;
|
105 |
$info_utilisateur = $participants->getInscrits($this->_id_projet, $droits) ;
|
103 |
array_push ($entete, PROJET_DATE_INSCRIPTION, PROJET_STATUT) ;
|
106 |
array_push ($entete, PROJET_DATE_INSCRIPTION, PROJET_STATUT) ;
|
104 |
$HTML_listeParticipants->construitEntete($entete) ;
|
- |
|
- |
|
107 |
$HTML_listeParticipants->construitEntete($entete) ;
|
105 |
|
108 |
include_once PROJET_CHEMIN_CLASSES.'statut.class.php' ;
|
Line 106... |
Line 109... |
106 |
$HTML_listeParticipants->construitListe($info_utilisateur, statut::getTousLesStatuts(PROJET_STATUT_SAUF_ADM, $this->_db)) ;
|
109 |
$HTML_listeParticipants->construitListe($info_utilisateur, statut::getTousLesStatuts(PROJET_STATUT_SAUF_ADM, $this->_db)) ;
|
Line 107... |
Line 110... |
107 |
|
110 |
|