menuvue = new Menuvueutilisateur(); $this->menuvue->getMenuVue('Accepterententeprealables'); $this->ententeprealable = new Ententeprealable(); $this->beneficiaire = new Beneficiaire(); $this->garantieadherent = new Garantieadherent(); } public function index() { $idDemandeententeprealable = $this->requete->getParametre("id"); $ententeprealable = $this->ententeprealable->getEntenteprealableId($idDemandeententeprealable); $garantieadherents = $this->garantieadherent->getGarantieBeneficiaire($ententeprealable['idBeneficiaire']); $actes = $this->garantieadherent->getBaremePlafondAdherent($ententeprealable['idAdherent'], $ententeprealable['idBeneficiaire']); //var_dump($actes);die(); $police = $this->beneficiaire->getSituationPolice($ententeprealable['idBeneficiaire']); $college = $this->beneficiaire->getSituationCollege($ententeprealable['idBeneficiaire']); $baseTarification = $this->beneficiaire->getBaseTarificationBeneficiaire($ententeprealable['idBeneficiaire']); //highlight_string(""); $chemin = $this->menuvue->getChemin('Accepterententeprealables'); $this->genererVue(array('ententeprealable' => $ententeprealable, 'actes' => $actes, 'garantieadherents' => $garantieadherents, 'police' => $police, 'college' => $college, 'baseTarification' => $baseTarification, 'chemin' => $chemin)); } }