Import initial du projet prestation
This commit is contained in:
17
Controleur/ControleurVidal.php
Normal file
17
Controleur/ControleurVidal.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
require_once 'Framework/Controleur.php';
|
||||
require_once 'Modele/Menuvueutilisateur.php';
|
||||
|
||||
class ControleurVidal extends Controleur {
|
||||
private $menuvue;
|
||||
|
||||
public function __construct() {
|
||||
$this->menuvue = new Menuvueutilisateur();
|
||||
$this->menuvue->getMenuVue('Vidal');
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
$this->genererVue();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user