Initial commit for newdesigngestionnaire project
This commit is contained in:
28
Controleur/ControleurFlexcode.php
Executable file
28
Controleur/ControleurFlexcode.php
Executable file
@@ -0,0 +1,28 @@
|
||||
<?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));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user