16 lines
415 B
PHP
Executable File
16 lines
415 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Statistique.php';
|
|
|
|
class ControleurAjaxetatenteterapportspperiode extends Controleur {
|
|
|
|
public function __construct() {
|
|
$this->statistique = new Statistique();
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$entetestat = $this->statistique->getParametreStat();
|
|
$this->genererVueAjax(array('entetestat' => $entetestat));
|
|
}
|
|
} |