prestation/Controleur/ControleurSecurise.php
2025-12-01 18:54:33 +00:00

10 lines
245 B
PHP

<?php
require_once 'Framework/Controleur.php';
abstract class ControleurSecurise extends Controleur
{
public function executerAction($action)
{
$this->requete->getSession()->detruire();
$this->rediriger("Connexion");
}
}