Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 707 Rev 717
Line 214... Line 214...
214
		$url = sprintf($this->config['chemins']['baseURLServicesCelTpl'], $service);
214
		$url = sprintf($this->config['chemins']['baseURLServicesCelTpl'], $service);
Line 215... Line 215...
215
		
215
		
216
		$json = $this->getDao()->consulter($url);
216
		$json = $this->getDao()->consulter($url);
217
		return (array) json_decode($json);
217
		return (array) json_decode($json);
218
	}
-
 
219
	
-
 
220
	private function recupererUtilisateursNomPrenom($courriels) {
-
 
221
		// Récupération des données au format Json
-
 
222
		$service = "utilisateur/prenom-nom-par-courriel/".implode(',', $courriels);
-
 
223
		$url = sprintf($this->config['chemins']['baseURLServicesAnnuaireTpl'], $service);
-
 
224
		$json = $this->getDao()->consulter($url);
-
 
225
		return (array) json_decode($json);
-
 
226
	}
218
	}
227
}
219
}