Valder
This commit is contained in:
24
radiantproduction/Controleur/ControleurFlexcode.php
Normal file
24
radiantproduction/Controleur/ControleurFlexcode.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
require_once 'Framework/Controleur.php';
|
||||
|
||||
class ControleurFlexcode extends Controleur
|
||||
{
|
||||
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
|
||||
{
|
||||
$this->genererVue();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user