Subversion Repositories Applications.annuaire

Rev

Rev 205 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 205 Rev 291
Line 1... Line 1...
1
<?php
1
<?php
-
 
2
// declare(encoding='UTF-8');
2
/**
3
/**
3
* PHP Version 5
4
 * Service de gestion de la lettre d'actualité
4
*
5
 *
5
* @category  PHP
6
 * @category	php 5.2
6
* @package   papyrus_bp
7
 * @package		Annuaire::Services
7
* @author    aurelien <aurelien@tela-botanica.org>
8
 * @author		Aurélien PERONNET <aurelien@tela-botanica.org>
-
 
9
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
8
* @copyright 2010 Tela-Botanica
10
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
9
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
11
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
10
* @version   SVN: <svn_id>
12
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
11
* @link      /doc/papyrus_bp/
13
 * @version		$Id$
12
*/
14
 */
13
 
-
 
14
Class GestionLettreActu extends JRestService {
15
class GestionLettreActu extends JRestService {
Line 15... Line 16...
15
 
16
 
16
	public function getElement($uid){
-
 
17
 
17
	public function getElement($uid){
Line 18... Line 18...
18
		// TODO : rajouter controle d'accès !
18
		// TODO : rajouter controle d'accès !
19
 
19
 
Line 20... Line 20...
20
	    $id_utilisateur = $uid[0];
20
	    $id_utilisateur = $uid[0];
21
	    $mail_utilisateur = $uid[1];
21
	    $mail_utilisateur = $uid[1];
22
 
22
 
23
	    if(isset($uid[2])) {
23
	    if (isset($uid[2])) {
24
	    	$id_annuaire = $uid[2];
24
	    	$id_annuaire = $uid[2];
Line 25... Line 25...
25
	    } else {
25
	    } else {
26
	    	$id_annuaire = Config::get('annuaire_defaut');
26
	    	$id_annuaire = Config::get('annuaire_defaut');
27
	    }
-
 
28
 
27
	    }
29
	    $controleur = new LettreControleur();
-
 
30
		$est_abonne	= $controleur->estAbonneLettreActualite($id_annuaire,$id_utilisateur);
28
 
31
 
-
 
32
		$changement = $controleur->abonnerDesabonnerLettreActualite($id_annuaire, $id_utilisateur, !$est_abonne);
29
	    $controleur = new LettreControleur();
33
 
30
		$est_abonne	= $controleur->estAbonneLettreActualite($id_annuaire,$id_utilisateur);
34
		echo 'OK';
31
		$changement = $controleur->abonnerDesabonnerLettreActualite($id_annuaire, $id_utilisateur, !$est_abonne);
35
 
32
		echo 'OK';