17 lines
367 B
PHP
17 lines
367 B
PHP
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Produit.php';
|
|
|
|
class ControleurAjaxetatenteterapportsppolcatdet extends Controleur {
|
|
|
|
public function __construct()
|
|
{
|
|
$this->cat = (new Produit())->getListeProduit();;
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$this->genererVueAjax(array('cat' => $this->cat));
|
|
|
|
}
|
|
} |