prestation/Controleur/ControleurVidal.php
2025-12-01 18:54:33 +00:00

17 lines
363 B
PHP

<?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();
}
}