production/Controleur/ControleurAjaxetatentetecumulmois.php
2025-12-02 11:29:44 +00:00

17 lines
431 B
PHP
Executable File

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