prestation/Controleur/ControleurAjaxcontextidentification.php
2025-12-05 10:42:46 +00:00

14 lines
324 B
PHP
Executable File

<?php
require_once 'Framework/Controleur.php';
class ControleurAjaxcontextidentification extends Controleur {
public function __construct() {
}
public function index()
{
$_SESSION['p_user_id_substitut'] = $this->requete->getParametre("user_id_substitut");
$_SESSION['p_okId'] = "1";
}
}