radiantrh/Controleur/ControleurAjaxchangerlangue.php

21 lines
411 B
PHP
Executable File

<?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();
}
}