Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 1585 Rev 1589
Line 112... Line 112...
112
		return $donnees['illustrations'] ?? false;
112
		return $donnees['illustrations'] ?? false;
113
	}
113
	}
Line 114... Line 114...
114
 
114
 
115
	public function getInfosImageParId($imageId) {
115
	public function getInfosImageParId($imageId) {
116
		$tpl = Config::get('baseUrlServicesCelTpl');
116
		$tpl = Config::get('baseUrlServicesCelTpl');
117
		$urlTpl = sprintf($tpl, 'CelImage').'/image/imgId=%d';
117
		$urlTpl = sprintf($tpl, 'CelImage').'/image?imgId=%d';
118
		$url = sprintf($urlTpl, $imageId);
118
		$url = sprintf($urlTpl, $imageId);
119
		return $this->chargerDonnees($url);
119
		return $this->chargerDonnees($url);
Line 120... Line 120...
120
	}
120
	}