17 lines
354 B
PHP
Executable File
17 lines
354 B
PHP
Executable File
<?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));
|
|
|
|
}
|
|
} |