Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 696 → Rev 697

/trunk/modules/fiche/formateurs/Repartition.php
37,6 → 37,12
return $donnees;
}
 
public function obtenirDonneesExport() {
$donnees['chorodep'] = $this->getChorodep();
$donnees['eflore'] = $this->getEfloreExport();
return $donnees;
}
private function getChorodep() {
$this->cartes->setProjet('chorodep');
$this->cartes->setLargeur('630');
61,6 → 67,15
$eflore['legende'] = $this->cartes->getLegende();
return $eflore;
}
private function getEfloreExport() {
$this->cartes->setProjet('eflore');
$this->cartes->setLargeur('min');
$this->cartes->setInfoNom($this->nomCourant->getNomRetenu());
$eflore['min'] = $this->cartes->getUrlEflorePng();
$eflore['legende'] = $this->cartes->getLegende();
return $eflore;
}
 
public function getBloc() {
$donnees['chorodep'] = $this->getChorodepMiniature();