Example #1
0
 function getListProjetsActives()
 {
     $projetDao = new ProjetDao(new Projet());
     $where = array("statut" => '1');
     $list = $projetDao->getAllDataActive($where);
     return array('projets' => $list);
 }