radiantproduction/Modele/Reponseententeprealable.php

20 lines
527 B
PHP

<?php
require_once 'Framework/Modele.php';
class Reponseententeprealable extends Modele {
public function getListe() {
if (est_anglophone())
{
$sql = 'SELECT codeReponseEntentePrealable as `code`, libelleEng as libelle FROM p_reponseententeprealable order by 1';
}
else
{
$sql = 'SELECT codeReponseEntentePrealable as `code`, libelle FROM p_reponseententeprealable order by 1';
}
$liste = $this->executerRequete($sql);
return $liste->fetchAll(PDO::FETCH_ASSOC);
}
}