assure/Controleur/ControleurAjaxgabarit.php
2025-12-05 09:34:39 +00:00

14 lines
217 B
PHP
Executable File

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