production/Modele/Reponseententeprealable.php
2025-12-01 16:12:12 +00:00

20 lines
527 B
PHP
Executable File

<?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);
}
}