Initial commit for radiantrh project
This commit is contained in:
20
Controleur/ControleurFacturecons.php
Executable file
20
Controleur/ControleurFacturecons.php
Executable file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
require_once 'Framework/Controleur.php';
|
||||
require_once 'Modele/Menuvueutilisateur.php';
|
||||
|
||||
class ControleurFacturecons extends Controleur {
|
||||
private $menuvue;
|
||||
|
||||
public function __construct() {
|
||||
$this->menuvue = new Menuvueutilisateur();
|
||||
$this->menuvue->getMenuVue('Facturecons');
|
||||
|
||||
$_SESSION['idFacture_C'] = "0";
|
||||
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
$this->genererVue();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user