prestation/Controleur/ControleurAjaxetatenteterapportspcatdet.php
2025-12-05 10:42:46 +00:00

17 lines
356 B
PHP
Executable File

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