newdesigngestionnaire/Controleur/ControleurAjaxetatentetecumultypeprestataire.php

17 lines
445 B
PHP
Executable File

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