Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 1468 Rev 1591
Line 102... Line 102...
102
		$url = $this->getUrlImages();
102
		$url = $this->getUrlImages();
103
		$donnees = $this->chargerDonnees($url);
103
		$donnees = $this->chargerDonnees($url);
104
		$images = (empty($donnees['resultats']) == false) ? $donnees['resultats'] : array();
104
		$images = (empty($donnees['resultats']) == false) ? $donnees['resultats'] : array();
105
		return $this->formaterResultatImages($images);
105
		return $this->formaterResultatImages($images);
106
	}
106
	}
-
 
107
	
-
 
108
	public function getInfosImagesParFicheEtSentier($tagFiche, $sentier) {
-
 
109
		$tpl = Config::get('smartFloreIllustrationsParSentier');
-
 
110
		$url = $this->formaterUrl($tpl, array('tagFiche' => $tagFiche, 'sentier' => $sentier));
-
 
111
		$donnees = $this->chargerDonnees($url);
-
 
112
		return $donnees['illustrations'] ?? false;
-
 
113
	}
-
 
114
 
-
 
115
	public function getInfosImageParId($imageId) {
-
 
116
		$tpl = Config::get('baseUrlServicesCelTpl');
-
 
117
		$urlTpl = sprintf($tpl, 'CelImage').'/image?imgId=%d';
-
 
118
		$url = sprintf($urlTpl, $imageId);
-
 
119
		return $this->chargerDonnees($url);
-
 
120
	}
Line 107... Line 121...
107
 
121
 
108
	public function getInfosImagesTaxons() {
122
	public function getInfosImagesTaxons() {
109
		$pas = 800;
123
		$pas = 800;
110
		$idsTaxons = explode(',', $this->nntaxon);
124
		$idsTaxons = explode(',', $this->nntaxon);
Line 301... Line 315...
301
			$localiteFmt[0] = 'localité inconnue';
315
			$localiteFmt[0] = 'localité inconnue';
302
		}
316
		}
303
		return implode(" > ", $localiteFmt);
317
		return implode(" > ", $localiteFmt);
304
	}
318
	}
305
}
319
}
306
?>
-
 
307
320
?>
-
 
321