Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 256 → Rev 257

/trunk/modules/fiche/formateurs/Repartition.php
13,18 → 13,23
* @version $Id$
*/
class Repartition extends aControleur {
private $serviceRepartition = null;
private $serviceChorodep = null;
public function __construct($num_nom, $type = 'nn') {
$this->serviceRepartition = new Cartes($num_nom, $type);
}
$this->serviceChorodep = new Cartes('chorodep', $num_nom, $type);
$this->serviceMetaDonneesChorodep = new MetaDonnees('chorodep');
}
public function getUrlImage() {
return $this->serviceRepartition->getUrlImage();
return $this->serviceChorodep->getUrlImage();
}
public function getLegende () {
return $this->serviceRepartition->getLegende();
return $this->serviceChorodep->getLegende();
}
public function getMetaDonnees () {
return $this->serviceMetaDonneesChorodep->getMetaDonnees();
}
}
?>