Subversion Repositories Applications.annuaire

Rev

Rev 382 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
375 aurelien 1
<?php
2
// declare(encoding='UTF-8');
3
/**
4
 * Service renvoyant un lien vers le profil d'un utilisateur sous la forme de son nom'
5
 *
6
 * @category	php 5.2
7
 * @package		Annuaire::Services
8
 * @author		Aurélien PERONNET <aurelien@tela-botanica.org>
9
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
10
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
11
 * @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
13
 * @version		$Id$
14
 */
15
class MiniLienProfil extends JRestService {
16
 
17
	public function getRessource(){
18
 
19
		if (isset($_COOKIE['pap-annuaire_tela-utilisateur'])) {
20
 
21
			$username = $_COOKIE['pap-annuaire_tela-utilisateur'];
22
 
23
			$controleur = new AnnuaireControleur();
24
			$valeurs = $controleur->obtenirInfosUtilisateur('1', $username, true);
25
 
26
			$nom_affiche_lien = $valeurs['fullname'];
27
 
28
			$tableau_nom_prenom = split(" ", $nom_affiche_lien, 2);
29
 
30
			if(strlen($nom_affiche_lien) > 20) {
31
				$nom_affiche_lien = substr($nom_affiche_lien,0,20).'...';
32
			}
33
 
34
			$lien = 'Bienvenue <a href="http://www.tela-botanica.org/page:mon_inscription_au_reseau"> '.ucwords(strtolower($nom_affiche_lien)).'</a>';
35
			echo json_encode($lien);
36
		}
37
	}
38
}
39
?>