Initial commit for newdesigngestionnaire project
This commit is contained in:
19
Controleur/ControleurLogremoveface.php
Executable file
19
Controleur/ControleurLogremoveface.php
Executable file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
require_once 'Framework/Controleur.php';
|
||||
require_once 'Modele/Menuvueutilisateur.php';
|
||||
|
||||
class ControleurLogremoveface extends Controleur
|
||||
{
|
||||
private $menuvue;
|
||||
|
||||
public function __construct() {
|
||||
$this->menuvue = new Menuvueutilisateur();
|
||||
$this->menuvue->getMenuVue('Logremoveface');
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
$chemin = $this->menuvue->getChemin('Logremoveface');
|
||||
|
||||
$this->genererVue(array('chemin' => $chemin)); }
|
||||
}
|
||||
Reference in New Issue
Block a user