Line 18... |
Line 18... |
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 |
// +------------------------------------------------------------------------------------------------------+
|
Line 22... |
Line 22... |
22 |
|
22 |
|
Line 23... |
Line 23... |
23 |
// CVS : $Id: projetControleur.class.php,v 1.14 2005-10-17 16:20:38 alexandre_tb Exp $
|
23 |
// CVS : $Id: projetControleur.class.php,v 1.15 2005-10-20 10:28:25 ddelon Exp $
|
24 |
|
24 |
|
25 |
/**
|
25 |
/**
|
26 |
* Application projet
|
26 |
* Application projet
|
Line 31... |
Line 31... |
31 |
//Auteur original :
|
31 |
//Auteur original :
|
32 |
*@author Alexandre Granier <alexandre@tela-botanica.org>
|
32 |
*@author Alexandre Granier <alexandre@tela-botanica.org>
|
33 |
//Autres auteurs :
|
33 |
//Autres auteurs :
|
34 |
*@author Aucun
|
34 |
*@author Aucun
|
35 |
*@copyright Tela-Botanica 2000-2004
|
35 |
*@copyright Tela-Botanica 2000-2004
|
36 |
*@version $Revision: 1.14 $
|
36 |
*@version $Revision: 1.15 $
|
37 |
// +------------------------------------------------------------------------------------------------------+
|
37 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
*/
|
38 |
*/
|
Line 39... |
Line 39... |
39 |
|
39 |
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
Line 79... |
Line 79... |
79 |
define ("PROJET_ENVOYER_UN_MAIL", 13) ;
|
79 |
define ("PROJET_ENVOYER_UN_MAIL", 13) ;
|
80 |
define ("PROJET_ENVOYER_UN_MAIL_V", 14) ;
|
80 |
define ("PROJET_ENVOYER_UN_MAIL_V", 14) ;
|
81 |
define ("PROJET_ACTION_MODIFIER_V", 15) ;
|
81 |
define ("PROJET_ACTION_MODIFIER_V", 15) ;
|
82 |
define ('PROJET_ACTION_NOUVELLE_LISTE', 16) ;
|
82 |
define ('PROJET_ACTION_NOUVELLE_LISTE', 16) ;
|
83 |
define ('PROJET_ACTION_NOUVELLE_LISTE_V', 17) ;
|
83 |
define ('PROJET_ACTION_NOUVELLE_LISTE_V', 17) ;
|
84 |
//define ('PROJET_ACTION_VOIR_PARTICIPANT', 18) ;
|
- |
|
85 |
define ('PROJET_ACTION_S_INSCRIRE', 21) ;
|
84 |
define ('PROJET_ACTION_S_INSCRIRE', 21) ;
|
86 |
define ('PROJET_ACTION_CREER_WIKI', 22) ;
|
85 |
define ('PROJET_ACTION_CREER_WIKI', 22) ;
|
87 |
define ('PROJET_ACTION_SUPPRIMER_WIKI', 23) ;
|
86 |
define ('PROJET_ACTION_SUPPRIMER_WIKI', 23) ;
|
88 |
define ('PROJET_ACTION_CREER_WIKI_V', 24) ;
|
87 |
define ('PROJET_ACTION_CREER_WIKI_V', 24) ;
|
89 |
define ('PROJET_ACTION_SUPPRIMER_LISTE', 25) ;
|
88 |
define ('PROJET_ACTION_SUPPRIMER_LISTE', 25) ;
|
Line 1463... |
Line 1462... |
1463 |
$this->_type = $type ;
|
1462 |
$this->_type = $type ;
|
1464 |
} // end of member function setPresentation
|
1463 |
} // end of member function setPresentation
|
Line 1465... |
Line 1464... |
1465 |
|
1464 |
|
1466 |
|
1465 |
|
1467 |
/**
|
1466 |
/**
|
1468 |
* Fonction affichant les particpants à un projet
|
1467 |
* Fonction affichant les participants à un projet
|
1469 |
*
|
1468 |
*
|
1470 |
* @return string
|
1469 |
* @return string
|
1471 |
* @access public
|
1470 |
* @access public
|
1472 |
*/
|
1471 |
*/
|
1473 |
function voirParticipants( )
|
1472 |
function voirParticipants( )
|
1474 |
{
|
- |
|
1475 |
include_once PROJET_CHEMIN_CLASSES.'HTML_listeParticipants.class.php' ;
|
1473 |
{
|
1476 |
|
1474 |
include_once PROJET_CHEMIN_CLASSES.'HTML_listeParticipants.class.php' ;
|
1477 |
$projet = new projet ($this->_db, $this->_id_projet) ;
|
1475 |
$projet = new projet ($this->_db, $this->_id_projet) ;
|
1478 |
$titre = '<h1>'.$projet->getTitre().'</h1>'."\n" ;
|
1476 |
$titre = '<h1>'.$projet->getTitre().'</h1>'."\n" ;
|