Subversion Repositories eFlore/Applications.cel

Rev

Rev 1405 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1405 Rev 1491
Line 322... Line 322...
322
    	}
322
    	}
Line 323... Line 323...
323
    
323
    
324
    	return $tableau_images;
324
    	return $tableau_images;
Line -... Line 325...
-
 
325
    }
-
 
326
    
-
 
327
    public function obtenirCourrielUtilisateurPourIdImage($id_image) {
-
 
328
	    $requete = 'SELECT courriel_utilisateur FROM cel_images WHERE '.
-
 
329
	    			         'id_image = '.$this->proteger($id_image);  
-
 
330
	    
-
 
331
	    $utilisateur_courriel = $this->executerRequete($requete);
-
 
332
	    
-
 
333
	    $retour = false;
-
 
334
	    if(!empty($utilisateur_courriel) && isset($utilisateur_courriel[0]['courriel_utilisateur'])) {
-
 
335
	    	$retour = $utilisateur_courriel[0]['courriel_utilisateur'];
-
 
336
	    }
-
 
337
	    return $retour;
325
    }
338
    }
Line 326... Line 339...
326
    
339
    
327
    private function getIdsMotsClesImage($id_image) {
340
    private function getIdsMotsClesImage($id_image) {
328
    
341