production/Controleur/ControleurFlexcode.php
2025-12-02 11:29:44 +00:00

28 lines
576 B
PHP
Executable File

<?php
require_once 'Framework/Controleur.php';
class ControleurFlexcode extends Controleur
{
private $menuvue;
public function __construct()
{
}
public function index()
{
throw new Exception("ControleurFlexcode php ");
if($this->requete->existeParametre("id"))
{
// $numeroDemande = $this->requete->getParametre("id");
// $this->genererVue(array('numeroDemande' => $numeroDemande));
}
else
{
$chemin = $this->menuvue->getChemin('Flexcode');
$this->genererVue(array('chemin' => $chemin));
}
}
}