16 lines
408 B
PHP
Executable File
16 lines
408 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
// require_once 'Modele/Client.php';
|
|
|
|
class ControleurAjaxflexcode extends Controleur {
|
|
|
|
public function __construct() {
|
|
// $this->client = new Client();
|
|
}
|
|
|
|
public function index() {
|
|
// $idClient = $this->requete->getParametre("idClient");
|
|
// $this->client->getContexteAjaxClient($idClient);
|
|
$this->genererVueAjax();
|
|
}
|
|
} |