executerRequete($sql); return $liste->fetchAll(PDO::FETCH_ASSOC); } public function getListeAdhrent() { if (est_anglophone()) { $sql = 'SELECT codeTypeDestinataire as `code`, libelleEng as libelle FROM typedestinatairesmsadherent order by libelleEng'; } else { $sql = 'SELECT codeTypeDestinataire as `code`, libelle FROM typedestinatairesmsadherent order by libelle'; } $liste = $this->executerRequete($sql); return $liste->fetchAll(PDO::FETCH_ASSOC); } }