prestation/Controleur/ControleurAjaxetatpolicesnonren.php
2025-12-05 10:42:46 +00:00

17 lines
402 B
PHP
Executable File

<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Statistique.php';
class ControleurAjaxetatpolicesnonren extends Controleur
{
public function __construct() {
$this->rapportsp = new Statistique();
}
public function index()
{
$rapportsps = $this->rapportsp->etatpolnonren() ;
$this->genererVueAjax(array('rapportsps' => $rapportsps));
}
}