Initial commit for radiantprestation project

This commit is contained in:
2026-01-06 08:29:33 +00:00
commit 89481e47af
2578 changed files with 580558 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Typebon.php';
require_once 'Modele/Menuvueutilisateur.php';
class ControleurCommanderbon extends Controleur {
public function __construct() {
$this->menuvue = new Menuvueutilisateur();
$this->menuvue->getMenuVue('Commanderbon');
$this->typebon = new Typebon();
}
public function index()
{
$typebon = $this->typebon->getListe();
$this->genererVue(array('typebon' => $typebon));
}
}