Subversion Repositories eFlore/Applications.del

Rev

Rev 2049 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
803 gduche 1
<?php
2
// declare(encoding='UTF-8');
3
/**
2077 mathias 4
 * Gestion de l'identification des utilisateurs
803 gduche 5
 *
1820 jpm 6
 * @category   DEL
7
 * @package    Services
8
 * @subpackage Utilisateurs
9
 * @version    0.1
10
 * @author     Mathias CHOUET <mathias@tela-botanica.org>
11
 * @author     Jean-Pascal MILCENT <jpm@tela-botanica.org>
12
 * @author     Aurelien PERONNET <aurelien@tela-botanica.org>
13
 * @license    GPL v3 <http://www.gnu.org/licenses/gpl.txt>
14
 * @license    CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
15
 * @copyright  1999-2014 Tela Botanica <accueil@tela-botanica.org>
803 gduche 16
 */
1826 jpm 17
class Identification extends GestionUtilisateur {
803 gduche 18
 
1610 jpm 19
	public function consulter($ressources, $parametres) {
2077 mathias 20
		$utilisateur = $this->utilisateur;
21
		if ($utilisateur['connecte'] === true) {
2049 aurelien 22
			$this->ajouterEvenements($utilisateur);
803 gduche 23
		}
1610 jpm 24
 
803 gduche 25
		$resultat = new ResultatService();
26
		$resultat->corps = $utilisateur;
2077 mathias 27
 
803 gduche 28
		return $resultat;
29
	}
1795 jpm 30
}