14 lines
324 B
PHP
Executable File
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";
|
|
}
|
|
} |