Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 1498 Rev 1504
Line 46... Line 46...
46
		// échappement des descriptions et localités, qui peuvent contenir des guillemets
46
		// échappement des descriptions et localités, qui peuvent contenir des guillemets
47
		// et faire foirer le HTML
47
		// et faire foirer le HTML
48
		// @TODO faire mieux !
48
		// @TODO faire mieux !
49
		foreach ($pso as $i => &$images) {
49
		foreach ($pso as $i => &$images) {
50
			foreach ($images as $j => &$image) {
50
			foreach ($images as $j => &$image) {
51
				$pso[$i][$j]['observation']['station'] = str_replace('"', '', $image['observation']['station']);
51
				$pso[$i][$j]['observation']['station'] = str_replace('"', '', isset($image['observation']['station']) ? $image['observation']['station'] : '');
52
				$pso[$i][$j]['observation']['lieudit'] = str_replace('"', '', $image['observation']['lieudit']);
52
				$pso[$i][$j]['observation']['lieudit'] = str_replace('"', '', isset($image['observation']['lieudit']) ? $image['observation']['lieudit'] : '');
53
				$pso[$i][$j]['observation']['milieu'] = str_replace('"', '', $image['observation']['milieu']);
53
				$pso[$i][$j]['observation']['milieu'] = str_replace('"', '', isset($image['observation']['milieu']) ? $image['observation']['milieu'] : '');
54
				$pso[$i][$j]['station.station'] = str_replace('"', '', $image['station.station']);
54
				$pso[$i][$j]['station.station'] = str_replace('"', '', isset($image['station.station']) ? $image['station.station'] : '');
55
				$pso[$i][$j]['station.libelle'] = str_replace('"', '', $image['station.libelle']);
55
				$pso[$i][$j]['station.libelle'] = str_replace('"', '', isset($image['station.libelle']) ? $image['station.libelle'] : '');
56
			}
56
			}
57
		}
57
		}
Line 58... Line 58...
58
		
58
		
59
		// Le framework n'avait pas prévu l'inclusion de sous squelettes dans les modules
59
		// Le framework n'avait pas prévu l'inclusion de sous squelettes dans les modules
Line 101... Line 101...
101
			$this->donnees = $this->getPhoto('photoflora');
101
			$this->donnees = $this->getPhoto('photoflora');
102
		}
102
		}
103
		return $this->donnees;
103
		return $this->donnees;
104
	}
104
	}
Line 105... Line 105...
105
	
105
	
106
	public function obtenirPhotoCelTpl() {
106
	public function obtenirPhotoCelTpl() {
107
		$images = $this->initialiserPhotos('cel');
107
		$images = $this->initialiserPhotos('cel');
108
		$this->formaterListePhotos('cel', $images);
108
		$this->formaterListePhotos('cel', $images);
109
		$this->formaterMetaPhotos('cel');
109
		$this->formaterMetaPhotos('cel');
110
		$chemin_sous_squelette = Config::get('chemin_modules').AppControleur::getNomDossierDepuisClasse('Fiche').DS.Config::get('dossier_squelettes').DS; 
110
		$chemin_sous_squelette = Config::get('chemin_modules').AppControleur::getNomDossierDepuisClasse('Fiche').DS.Config::get('dossier_squelettes').DS; 
111
		$donnees = array('cel' => array('images' => $this->donnees['cel']['images'], 'meta' => $this->donnees['cel']['meta'] ));
111
		$donnees = array('cel' => array('images' => $this->donnees['cel']['images'], 'meta' => $this->donnees['cel']['meta'] ));
112
		$html_tpl = $this->getVue($chemin_sous_squelette.'fiche_illustrations_cel.tpl.html', $donnees);
112
		$html_tpl = $this->getVue($chemin_sous_squelette.'fiche_illustrations_cel.tpl.html', $donnees);
113
		return $html_tpl;
113
		return $html_tpl;
Line 114... Line 114...
114
	}
114
	}
115
	
115
	
116
	//TODO: factoriser les deux fonctions ci dessous et ci dessus
116
	//TODO: factoriser les deux fonctions ci dessous et ci dessus
117
	public function obtenirTranchesCelTpl($projet) {
117
	public function obtenirTranchesCelTpl($projet) {
118
		// On ne prend que la tranche des images (12)
118
		// On ne prend que la tranche des images (12)
119
		$images = $this->initialiserTranchePhotos($projet);
119
		$images = $this->initialiserTranchePhotos($projet);
120
		$this->formaterListePhotos($projet, $images);
120
		$this->formaterListePhotos($projet, $images);
121
		$this->formaterMetaPhotos($projet);
121
		$this->formaterMetaPhotos($projet);
122
		$chemin_sous_squelette = Config::get('chemin_modules').AppControleur::getNomDossierDepuisClasse('Fiche').DS.Config::get('dossier_squelettes').DS;
122
		$chemin_sous_squelette = Config::get('chemin_modules').AppControleur::getNomDossierDepuisClasse('Fiche').DS.Config::get('dossier_squelettes').DS;
123
		$donnees = array('cel' => array('images' => $this->donnees['cel']['images'], 'meta' => $this->donnees[$projet]['meta'] ));
123
		$donnees = array('cel' => array('images' => $this->donnees['cel']['images'], 'meta' => $this->donnees[$projet]['meta'] ));
124
		$html_tpl = $this->getVue($chemin_sous_squelette.'fiche_illustrations_cel.tpl.html', $donnees);
124
		$html_tpl = $this->getVue($chemin_sous_squelette.'fiche_illustrations_cel.tpl.html', $donnees);
125
		$this->donnees[$projet]['illustrationsCel'] = $html_tpl;
125
		$this->donnees[$projet]['illustrationsCel'] = $html_tpl;
126
		$this->donnees[$projet]['cel_present'] = count($images) > 0;
126
		$this->donnees[$projet]['cel_present'] = count($images) > 0;
127
		// Ensuite on fait juste un lien qui permettra de les charger
127
		// Ensuite on fait juste un lien qui permettra de les charger
Line 128... Line 128...
128
		$this->donnees[$projet]['ajax_url'] = $this->formaterUrlAjaxPhotoCel();
128
		$this->donnees[$projet]['ajax_url'] = $this->formaterUrlAjaxPhotoCel();
129
	}
129
	}
Line 183... Line 183...
183
				if ($projet == "cel") {
183
				if ($projet == "cel") {
184
					// Chargement des 10 premieres images + un lien pour en afficher plus
184
					// Chargement des 10 premieres images + un lien pour en afficher plus
185
					$this->obtenirTranchesCelTpl($projet);
185
					$this->obtenirTranchesCelTpl($projet);
186
				} else {
186
				} else {
187
					$this->images->setApi(Eflore::API_EFLORE);
187
					$this->images->setApi(Eflore::API_EFLORE);
188
					$images = $this->initialiserPhotos($projet);
188
					$images = $this->initialiserPhotos($projet);
189
					$this->formaterListePhotos($projet, $images);
189
					$this->formaterListePhotos($projet, $images);
190
					$this->formaterMetaPhotos($projet);
190
					$this->formaterMetaPhotos($projet);
191
				}
191
				}
192
			}
192
			}
193
		}
193
		}
194
	}
194
	}
Line 254... Line 254...
254
		// pas de tag: on cherche les mieux votées pour ce protocole sans tenir compte des tags
254
		// pas de tag: on cherche les mieux votées pour ce protocole sans tenir compte des tags
255
		$infosCaracteres = $this->images->getInfosMeilleuresImagesParTag($nnr, '', Eflore::PROTOCOLE_CARACTERES, 3);
255
		$infosCaracteres = $this->images->getInfosMeilleuresImagesParTag($nnr, '', Eflore::PROTOCOLE_CARACTERES, 3);
256
		if (! empty($infosCaracteres) && ! empty($infosCaracteres[''])) { // le tag est vide, ici
256
		if (! empty($infosCaracteres) && ! empty($infosCaracteres[''])) { // le tag est vide, ici
257
			$caracteres = $infosCaracteres[''];
257
			$caracteres = $infosCaracteres[''];
258
		}
258
		}
259
		foreach($caracteres as $id_image => &$caractere) {
259
		foreach($caracteres as $id_image => &$caractere) {
260
			$caractere['urlDetailImg'] = $this->appUrls->obtenirUrlPopUpIllustrations($id_image);
260
			$caractere['urlDetailImg'] = $this->appUrls->obtenirUrlPopUpIllustrations($id_image);
261
			$caractere['urlImgGrandFormat'] = $this->obtenirUrlImageGrandFormatCel($id_image);
261
			$caractere['urlImgGrandFormat'] = $this->obtenirUrlImageGrandFormatCel($id_image);
262
			$caractere['urlContact'] = $this->appUrls->obtenirUrlPopUpContact($caractere['auteur.id'], $id_image);
262
			$caractere['urlContact'] = $this->appUrls->obtenirUrlPopUpContact($caractere['auteur.id'], $id_image);
263
			$caractere['urlProfil'] = $this->appUrls->obtenirUrlProfilAnnuaire($caractere['auteur.id']);
263
			$caractere['urlProfil'] = $this->appUrls->obtenirUrlProfilAnnuaire($caractere['auteur.id']);
264
			$caractere['urlMauvaiseIdentification'] =  $this->appUrls->obtenirUrlMauvaiseIdentification($caractere['observation']['id_observation']);
264
			$caractere['urlMauvaiseIdentification'] =  $this->appUrls->obtenirUrlMauvaiseIdentification($caractere['observation']['id_observation']);
265
		}
265
		}
266
		$this->donnees['caracteres'] = $caracteres;
266
		$this->donnees['caracteres'] = $caracteres;
267
	}
267
	}
Line 282... Line 282...
282
		$this->images->setProjet($projet);
282
		$this->images->setProjet($projet);
283
		$nnr = $this->nomCourant->getNnr();
283
		$nnr = $this->nomCourant->getNnr();
284
		$ret = $this->images->getInfosImagesParIdsNoms(array($nnr));
284
		$ret = $this->images->getInfosImagesParIdsNoms(array($nnr));
285
		return $ret;
285
		return $ret;
286
	}
286
	}
287
	
287
	
288
	private function initialiserTranchePhotos($projet) {
288
	private function initialiserTranchePhotos($projet) {
289
		$this->images->setProjet($projet);
289
		$this->images->setProjet($projet);
290
		$nnr = $this->nomCourant->getNnr();
290
		$nnr = $this->nomCourant->getNnr();
291
		$ret = $this->images->getInfosTrancheImagesParIdsNoms(array($nnr), Config::get('nbTrancheImagesResultatsDeterminationAffichees'));
291
		$ret = $this->images->getInfosTrancheImagesParIdsNoms(array($nnr), Config::get('nbTrancheImagesResultatsDeterminationAffichees'));
292
		return $ret;
292
		return $ret;
293
	}
293
	}
Line 294... Line 294...
294
	
294
	
295
	private function formaterListePhotos($projet, $images) {
295
	private function formaterListePhotos($projet, $images) {
296
		foreach ($images as $idImg => $img) {
296
		foreach ($images as $idImg => $img) {
297
			$infosImg = array();
297
			$infosImg = array();
298
			$infosImg['src'] = $img['binaire.href'];
298
			$infosImg['src'] = isset($img['binaire.href']) ? $img['binaire.href'] : null;
299
			$infosImg['nomSci'] = $img['determination.nom_sci'];
299
			$infosImg['nomSci'] = isset($img['determination.nom_sci']) ? $img['determination.nom_sci'] : null;
300
			$infosImg['station'] = $img['station.libelle'];
300
			$infosImg['station'] = isset($img['station.libelle']) ? $img['station.libelle'] : null;
301
			$infosImg['date'] = $this->formaterDateImg($img['date']);
301
			$infosImg['date'] = $this->formaterDateImg($img['date']);
302
			$infosImg['auteur'] = $img['auteur.libelle'];
302
			$infosImg['auteur'] = isset($img['auteur.libelle']) ? $img['auteur.libelle'] : null;
303
			$infosImg['auteur.id'] = $img['auteur.id'];
303
			$infosImg['auteur.id'] = isset($img['auteur.id']) ? $img['auteur.id'] : null;
304
			if ($projet == "cel") {
304
			if ($projet == "cel") {
305
				$infosImg['urlDetailImg'] = $this->appUrls->obtenirUrlPopUpIllustrations($idImg);
305
				$infosImg['urlDetailImg'] = $this->appUrls->obtenirUrlPopUpIllustrations($idImg);
306
				$infosImg['urlImgGrandFormat'] = $this->obtenirUrlImageGrandFormatCel($idImg);
306
				$infosImg['urlImgGrandFormat'] = $this->obtenirUrlImageGrandFormatCel($idImg);
307
				$infosImg['urlContact'] = $this->appUrls->obtenirUrlPopUpContact($img['auteur.id'], $idImg);
307
				$infosImg['urlContact'] = $this->appUrls->obtenirUrlPopUpContact($img['auteur.id'], $idImg);
Line 316... Line 316...
316
		$tpl = Config::get('baseUrlImageCelTpl');
316
		$tpl = Config::get('baseUrlImageCelTpl');
317
		return sprintf($tpl, str_pad($id, 9, '0', STR_PAD_LEFT).$format.'.jpg');
317
		return sprintf($tpl, str_pad($id, 9, '0', STR_PAD_LEFT).$format.'.jpg');
318
	}
318
	}
Line 319... Line 319...
319
	
319
	
320
	// XXX: public static pour être injecté dans le squelette d'entete
320
	// XXX: public static pour être injecté dans le squelette d'entete
321
	public static function obtenirTemplateUrlImageGrandFormatOrganes($format = "O") {
321
	public static function obtenirTemplateUrlImageGrandFormatOrganes($format = "O") {
322
		return $tpl = sprintf(Config::get('baseUrlImageCelTpl').$format.'.jpg', '{id_image}');
322
		return $tpl = sprintf(Config::get('baseUrlImageCelTpl').$format.'.jpg', '{id_image}');
Line 323... Line 323...
323
	}
323
	}
324
	
324
	
325
	private function formaterMetaPhotos($projet) {
325
	private function formaterMetaPhotos($projet) {