Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Regard whitespace Rev 494 → Rev 495

/trunk/metier/api_0.1/Images.php
27,7 → 27,9
 
public function getInfosImagesParIdsNoms(Array $idsNoms) {
$url = $this->getUrlImagesParIdsNoms($idsNoms);
return $this->chargerDonnees($url);
$donnees = $this->chargerDonnees($url);
$images = (isset($donnees['resultats'])) ? $donnees['resultats'] : array();
return $images;
}
public function getInfosImageParIdImage($id_image) {