assure/Controleur/ControleurAjaxgabarit.php
2025-12-01 19:07:16 +00:00

14 lines
217 B
PHP

<?php
require_once 'Framework/Controleur.php';
class ControleurAjaxgabarit extends Controleur
{
public function __construct()
{
}
public function index()
{
$this->genererVueAjax();
}
}