19 lines
398 B
PHP
Executable File
19 lines
398 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Menuvueutilisateur.php';
|
|
|
|
class ControleurFactureconsgc extends Controleur {
|
|
|
|
public function __construct() {
|
|
$this->menuvue = new Menuvueutilisateur();
|
|
$this->menuvue->getMenuVue('Factureconsgc');
|
|
|
|
$_SESSION['idFacture_C'] = "0";
|
|
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$this->genererVue();
|
|
}
|
|
} |