From 572eaf92c901f57dd5829d58b6511b51ebdd9d03 Mon Sep 17 00:00:00 2001 From: Damien LASSERRE Date: Wed, 4 Apr 2012 08:33:37 +0000 Subject: [PATCH] =?UTF-8?q?Cr=C3=A9ation=20de=20la=20fonction=20de=20recup?= =?UTF-8?q?=C3=A9ration=20des=20enrichissement=20/=20Comptage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/frontend/controllers/DashboardController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/application/modules/frontend/controllers/DashboardController.php b/application/modules/frontend/controllers/DashboardController.php index d1fa429c..2ca9b7f2 100644 --- a/application/modules/frontend/controllers/DashboardController.php +++ b/application/modules/frontend/controllers/DashboardController.php @@ -33,10 +33,12 @@ class DashboardController extends Libs_Controller $object = new Object_Dashboard(); $request = $this->getRequest(); $comptage = $object->ciblagedetail($request->getParam('id')); + $enrichissement = $object->enrichissement($request->getParam('id')); $this->view->label = new Fields(); $this->view->criteres = $comptage['criteres']; $this->view->comptages = $comptage['comptages']; + $this->view->enrichissements = $enrichissement; }