Subversion Repositories Applications.annuaire

Rev

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

Rev 332 Rev 333
Line 1... Line 1...
1
<?php
1
<?php
2
// declare(encoding='UTF-8');
2
// declare(encoding='UTF-8');
3
/**
3
/**
4
 * Service retournant l'id d'un utilisateur en fonction de son courriel.
4
 * Service retournant les prénoms et nom  d'un utilisateur en fonction de son courriel.
-
 
5
 * UNe liste de courriel peut être passé dans la ressource.
-
 
6
 * Exemple :
-
 
7
 * /utilisateur/Prenom-nom-par-courriel/jpm@tela-botanica.org,aurelien@tela-botanica.org
5
 *
8
 *
6
 * @category	php 5.2
9
 * @category	php 5.2
7
 * @package		Annuaire::Services
10
 * @package		Annuaire::Services
8
 * @author		Aurélien PERONNET <aurelien@tela-botanica.org>
-
 
9
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
11
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
10
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
12
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
11
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
13
 * @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
14
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
13
 * @version		$Id$
15
 * @version		$Id$
Line 46... Line 48...
46
	    $controleur = new AnnuaireModele();
48
	    $controleur = new AnnuaireModele();
47
		$infos = $controleur->obtenirPrenomNomParCourriel($id_annuaire, $courriels);
49
		$infos = $controleur->obtenirPrenomNomParCourriel($id_annuaire, $courriels);
48
		return $infos;
50
		return $infos;
49
	}
51
	}
50
}
52
}
51
?>
53
?>
52
54