18 lines
411 B
PHP
Executable File
18 lines
411 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Gestionconfiee.php';
|
|
|
|
class ControleurAjaxetatenteterapportsp extends Controleur {
|
|
private $garant;
|
|
|
|
public function __construct() {
|
|
$this->garant = new Gestionconfiee();
|
|
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$garants = $this->garant->getListe();
|
|
$this->genererVueAjax(array('garants' =>$garants ));
|
|
}
|
|
} |