21 lines
411 B
PHP
21 lines
411 B
PHP
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Utilisateur.php';
|
|
|
|
class ControleurAjaxchangerlangue extends Controleur {
|
|
private $utilisateur;
|
|
|
|
public function __construct() {
|
|
$this->utilisateur = new Utilisateur();
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
}
|
|
|
|
public function changerlangue()
|
|
{
|
|
$this->utilisateur->changerlangueutilisateur();
|
|
}
|
|
|
|
} |