menuvue = new Menuvueutilisateur(); $this->menuvue->getMenuVue("Accueil"); $this->billet = new Billet(); } // Affiche la liste de tous les billets du blog public function index() { $billets = $this->billet->getBillets(); $chemin = $this->menuvue->getChemin('Accueil'); $this->genererVue(array('billets' => $billets, 'chemin' => $chemin)); } }