10 lines
245 B
PHP
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");
|
|
}
|
|
} |