Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 336 → Rev 337

/trunk/modules/fiche/formateurs/Classification.php
25,6 → 25,16
$this->meta = $this->conteneur->getApiMetaDonnees();
$this->appUrls = $this->conteneur->getAppUrls();
}
public function getBloc() {
$donnees['taxons_sup'] = $this->getTaxonsSuperieurs();
$donnees['taxons_inf'] = $this->getTaxonsInferieurs();
$donnees['taxons_sup'] = array_slice($donnees['taxons_sup'], 0 , 3);
$donnees['taxons_inf'] = array_slice($donnees['taxons_inf'], 0 , 3);
return $donnees;
}
 
public function obtenirDonnees() {
$donnees['taxons_sup'] = $this->getTaxonsSuperieurs();
/trunk/modules/fiche/formateurs/Synthese.php
35,6 → 35,8
$donnees['description'] = $description->getBloc();
$ethnobotanique = new Ethnobotanique($this->conteneur);
$donnees['ethnobotanique'] = $ethnobotanique->getBloc();
$classification = new Classification($this->conteneur);
$donnees['classification'] = $classification->getBloc();
$bibliographie = new Bibliographie($this->conteneur);
$donnees['bibliographie'] = $bibliographie->getBloc();
return $donnees;