Subversion Repositories Applications.annuaire

Rev

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

Rev 326 Rev 375
Line 1... Line 1...
1
<?php
1
<?php
2
// declare(encoding='UTF-8');
-
 
3
/**
2
/**
4
 * Service retournant l'id d'un utilisateur en fonction de son courriel.
3
* PHP Version 5
5
 *
4
*
6
 * @category	php 5.2
5
* @category  PHP
7
 * @package		Annuaire::Services
6
* @package   annuaire
8
 * @author		Aurélien PERONNET <aurelien@tela-botanica.org>
7
* @author    aurelien <aurelien@tela-botanica.org>
9
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
-
 
10
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
8
* @copyright 2010 Tela-Botanica
11
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
9
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
12
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
10
* @version   SVN: <svn_id>
13
 * @version		$Id$
11
* @link      /doc/annuaire/
14
 */
12
*/
-
 
13
 
15
class IdUtilisateur extends JRestService {
14
Class IdUtilisateur extends JRestService {
16
 
15
 
17
	public function getElement($uid){
16
	public function getElement($uid){
-
 
17
 
18
	    $mail_utilisateur = $uid[0];
18
	    $mail_utilisateur = $uid[0];
19
	    $id_annuaire = Config::get('annuaire_defaut');
19
	    $id_annuaire = Config::get('annuaire_defaut');
20
 
20
 
21
	    $controleur = new AnnuaireControleur();
21
	    $controleur = new AnnuaireControleur();
22
		$mail	= $controleur->ObtenirIdParMail($id_annuaire, $mail_utilisateur);
22
	    $id	= $controleur->ObtenirIdParMail($id_annuaire,$mail_utilisateur);
23
 
23
 
24
		$this->envoyer($mail);
24
	    $this->envoyer($id);
25
	}
25
	}
26
}
26
}
27
?>
27
?>