19 lines
432 B
PHP
Executable File
19 lines
432 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Titre.php';
|
|
|
|
|
|
class ControleurAjaxtitretypeclient extends Controleur {
|
|
|
|
public function __construct() {
|
|
|
|
}
|
|
|
|
public function index() {
|
|
|
|
$typeClient = $this->requete->getParametreFormulaire("typeClient");
|
|
|
|
$titre = (new Titre())->getTitreTypeClient($typeClient);
|
|
$this->genererVueAjax(array('titre' => $titre));
|
|
}
|
|
} |