16 lines
319 B
PHP
Executable File
16 lines
319 B
PHP
Executable File
<?php
|
|
class ControleurRecconnexion extends Controleur
|
|
{
|
|
private $menuvue;
|
|
|
|
public function index()
|
|
{
|
|
$this->rediriger("Connexion","deconnecter");
|
|
/*
|
|
$chemin = $this->menuvue->getChemin('Recconnexion');
|
|
$this->genererVue(array('chemin' => $chemin));
|
|
$this->genererVue();
|
|
*/
|
|
}
|
|
}
|