Subversion Repositories eFlore/Applications.del

Rev

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

Rev 519 Rev 543
Line 195... Line 195...
195
	private function encrypterMotDePasse($mot_de_passe) {
195
	private function encrypterMotDePasse($mot_de_passe) {
196
		return md5($mot_de_passe);
196
		return md5($mot_de_passe);
197
	}
197
	}
Line 198... Line 198...
198
	
198
	
199
	private function getUtilisateurParLogin($login) {
199
	private function getUtilisateurParLogin($login) {
200
		$fichier_utilisateur = json_decode(file_get_contents(realpath(dirname(__FILE__)).'/utilisateursmock.json'));
200
		$fichier_utilisateur = json_decode(file_get_contents(realpath(dirname(__FILE__)).'/mocks/utilisateursmock.json'));
201
		$retour = false;
201
		$retour = false;
202
		if(isset($fichier_utilisateur->$login)) {
202
		if(isset($fichier_utilisateur->$login)) {
203
			$retour = (array)$fichier_utilisateur->$login;
203
			$retour = (array)$fichier_utilisateur->$login;
204
		}
204
		}