executerRequete($sql); return $liste->fetchAll(PDO::FETCH_ASSOC); } public function getListeDecomptePrestataire() { if (est_anglophone()) { $sql = 'SELECT codeTypeDecompte as `code`, libelleEng as libelle FROM p_typedecompte where (prestataire="1") order by libelle'; } else { $sql = 'SELECT codeTypeDecompte as `code`, libelle FROM p_typedecompte where (prestataire="1") order by libelle'; } $liste = $this->executerRequete($sql); return $liste->fetchAll(PDO::FETCH_ASSOC); } }