Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 1586 Rev 1587
Line 40... Line 40...
40
		if (!empty($dessin)) {
40
		if (!empty($dessin)) {
41
			array_push($this->donnees, $dessin);
41
			array_push($this->donnees, $dessin);
42
		}
42
		}
43
		$images = $this->addSmartFloreImages();
43
		$images = $this->addSmartFloreImages();
44
		if (!empty($images)) {
44
		if (!empty($images)) {
45
			$this->donnees = $images + $this->donnees;
45
			$this->donnees = array_merge(array_values($images), $this->donnees);
46
		}
46
		}
Line 47... Line 47...
47
 
47
 
48
		return $this->donnees;
48
		return $this->donnees;
Line 119... Line 119...
119
	public function addSmartFloreImages() {
119
	public function addSmartFloreImages() {
120
		$img = [];
120
		$img = [];
121
		$tagFiche = strtoupper($this->conteneur->getParametre('referentiel'))."nt"
121
		$tagFiche = strtoupper($this->conteneur->getParametre('referentiel'))."nt"
122
			.$this->conteneur->getNomCourant()->getNomSelectionne()->get('num_taxonomique')
122
			.$this->conteneur->getNomCourant()->getNomSelectionne()->get('num_taxonomique')
123
		;
123
		;
124
		$sentier = $_GET['sentier'];
124
		$sentier = urldecode($_GET['sentier']);
Line 125... Line 125...
125
 
125
 
126
		if ($sentier && $tagFiche) {
126
		if ($sentier && $tagFiche) {
Line 127... Line 127...
127
			$images = $this->images->getInfosImagesParFicheEtSentier($tagFiche, $sentier);
127
			$images = $this->images->getInfosImagesParFicheEtSentier($tagFiche, $sentier);