radiantproduction/Controleur/ControleurLogreconnaissancefaciale.php

16 lines
381 B
PHP

<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Menuvueutilisateur.php';
class ControleurLogreconnaissancefaciale extends Controleur
{
public function __construct() {
$this->menuvue = new Menuvueutilisateur();
$this->menuvue->getMenuVue('Logreconnaissancefaciale');
}
public function index()
{
$this->genererVue();
}
}