19 lines
386 B
PHP
19 lines
386 B
PHP
<?php
|
|
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Menuvueutilisateur.php';
|
|
|
|
class ControleurExclusionstandards extends Controleur
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->menuvue = new Menuvueutilisateur();
|
|
$this->menuvue->getMenuVue('Exclusionstandards');
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$this->genererVue();
|
|
}
|
|
}
|