17 lines
402 B
PHP
Executable File
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));
|
|
}
|
|
} |