prestation/Controleur/ControleurAjaxetatentetepolicesnonren.php
2025-12-01 18:54:33 +00:00

17 lines
354 B
PHP

<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Produit.php';
class ControleurAjaxetatentetepolicesnonren extends Controleur {
public function __construct()
{
$this->cat = (new Produit())->getListe();
}
public function index()
{
$this->genererVueAjax(array('cat' => $this->cat));
}
}