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.6 2007-04-19 15:34:35 neiluj 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.6 $
|
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) ;
|
50 |
$retour .= '<h1>'.PROJET_PROJET.' : '.$projet->getTitre()."</h1>" ;
|
52 |
$retour .= '<h1>'.PROJET_PROJET.' : '.$projet->getTitre()."</h1>" ;
|
Line 63... |
Line 65... |
63 |
$desinscription= new inscription_liste($this->_db) ;
|
65 |
$desinscription= new inscription_liste($this->_db) ;
|
64 |
$desinscription->desinscrireUtilisateur($annuaire, $projet->_listes_associes[0]) ;
|
66 |
$desinscription->desinscrireUtilisateur($annuaire, $projet->_listes_associes[0]) ;
|
65 |
}
|
67 |
}
|
66 |
}
|
68 |
}
|
Line 67... |
Line 69... |
67 |
|
69 |
|
68 |
// Ce qui suit doit être amélioré pour sortir la requête sur l'annuaire
|
70 |
// Ce qui suit doit être amàliorà pour sortir la requête sur l'annuaire
|
69 |
// On teste s'il y a un ajout d'utilisateur voir HTML_listeParticipants
|
71 |
// On teste s'il y a un ajout d'utilisateur voir HTML_listeParticipants
|
70 |
if (isset($_POST['mail_utilisateur'])) {
|
72 |
if (isset($_POST['mail_utilisateur'])) {
|
71 |
$requete = 'select '.PROJET_CHAMPS_ID.' from '.PROJET_ANNUAIRE.' where '.PROJET_CHAMPS_MAIL.'="'.$_POST['mail_utilisateur'].'"';
|
73 |
$requete = 'select '.PROJET_CHAMPS_ID.' from '.PROJET_ANNUAIRE.' where '.PROJET_CHAMPS_MAIL.'="'.$_POST['mail_utilisateur'].'"';
|
72 |
$resultat = $this->_db->query ($requete) ;
|
74 |
$resultat = $this->_db->query ($requete) ;
|