Subversion Repositories Applications.projet

Rev

Rev 110 | Rev 341 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 110 Rev 241
Line 17... Line 17...
17
// |                                                                                                      |
17
// |                                                                                                      |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
18
// | You should have received a copy of the GNU Lesser 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: projet.desinscription.inc.php,v 1.2 2006-04-19 13:52:54 alexandre_tb Exp $
22
// CVS : $Id: projet.desinscription.inc.php,v 1.3 2007-06-01 13:57:11 alexandre_tb Exp $
23
/**
23
/**
24
* Inscription
24
* Inscription
25
*
25
*
26
* Le fichier de désinscription de projet, appelé par l'inscription
26
* Le fichier de desinscription de projet, appele par l'inscription
27
* en cas de désinscription d'un utilisateur
27
* en cas de desinscription d'un utilisateur
28
*
28
*
29
*@package projet
29
*@package projet
30
//Auteur original :
30
//Auteur original :
31
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
31
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
32
*@copyright     Tela-Botanica 2000-2006
32
*@copyright     Tela-Botanica 2000-2006
33
*@version       $Revision: 1.2 $
33
*@version       $Revision: 1.3 $
34
// +------------------------------------------------------------------------------------------------------+
34
// +------------------------------------------------------------------------------------------------------+
35
*/
35
*/
Line 36... Line 36...
36
 
36
 
37
// +------------------------------------------------------------------------------------------------------+
37
// +------------------------------------------------------------------------------------------------------+
38
// |                                            ENTETE du PROGRAMME                                       |
38
// |                                            ENTETE du PROGRAMME                                       |
Line 39... Line 39...
39
// +------------------------------------------------------------------------------------------------------+
39
// +------------------------------------------------------------------------------------------------------+
40
 
40
 
Line 41... Line 41...
41
// On récupère id_utilisateur, l'identifiant de la personne qui se désinscrit
41
// On recupere id_utilisateur, l'identifiant de la personne qui se desinscrit
Line 51... Line 51...
51
 
51
 
Line 52... Line 52...
52
$tableau_projet = projet::getTousLesProjets($GLOBALS['ins_db']) ;
52
$tableau_projet = projet::getTousLesProjets($GLOBALS['ins_db']) ;
53
 
53
 
54
// On boucle sur chaque projet et on désinscrit l'utilisateur
54
// On boucle sur chaque projet et on désinscrit l'utilisateur
55
foreach ($tableau_projet as $projet) {
55
foreach ($tableau_projet as $projet) {
56
	// Le statut 4 désinscrit l'utilisateur, dans la méthode setStatut
56
	// Le statut 4 desinscrit l'utilisateur, dans la méthode setStatut
57
	$participant->setStatut(4, $id_utilisateur, $projet->getId()) ;
57
	$participant->setStatut(4, $id_utilisateur, $projet->getId()) ;
58
	$projet->getListesAssociees() ;
58
	$projet->getListesAssociees() ;
59
	if ($projet->avoirListe()) {
59
	if ($projet->avoirListe()) {
60
	    include_once PROJET_CHEMIN_CLASSES.'annuaire.class.php' ;
60
	    include_once PROJET_CHEMIN_CLASSES.'annuaire.class.php' ;
61
	    $annuaire = new annuaire($this->_db, array('identifiant' => PROJET_CHAMPS_ID, 'mail' => PROJET_CHAMPS_MAIL, 'table' => PROJET_ANNUAIRE)) ;
61
	    $annuaire = new annuaire($GLOBALS['ins_db'], array('identifiant' => PROJET_CHAMPS_ID, 'mail' => PROJET_CHAMPS_MAIL, 'table' => PROJET_ANNUAIRE)) ;
62
	    $annuaire->setId($id_utilisateur) ;
62
	    $annuaire->setId($id_utilisateur) ;
63
	    include_once PROJET_CHEMIN_CLASSES.'inscription_liste.class.php' ;
63
	    include_once PROJET_CHEMIN_CLASSES.'inscription_liste.class.php' ;
64
	    $desinscription= new inscription_liste($GLOBALS['ins_db']) ;
64
	    $desinscription= new inscription_liste($GLOBALS['ins_db']) ;