prestation/Controleur/ControleurAjaxetatentetecumultypeprestataire.php
2025-12-01 18:54:33 +00:00

16 lines
420 B
PHP

<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Statistique.php';
class ControleurAjaxetatentetecumultypeprestataire extends Controleur {
public function __construct() {
$this->statistique = new Statistique();
}
public function index()
{
$entetestat = $this->statistique->getParametreStat();
$this->genererVueAjax(array('entetestat' => $entetestat));
}
}