radiantproduction/Controleur/ControleurAjaxconnexioncookie.php
2026-03-01 04:20:18 +00:00

18 lines
376 B
PHP

<?php
require_once 'Framework/Controleur.php';
require_once 'Framework/Localisation.php';
class ControleurAjaxconnexioncookie extends Controleur
{
public function __construct()
{
}
public function index()
{
$msgErreur = $this->requete->getParametreFormulaire("msgErreur");
$this->genererVueAjax(array('msgErreur' => $msgErreur));
}
}