17 lines
306 B
PHP
Executable File
17 lines
306 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
|
|
class ControleurAjaxetatbarmenu extends Controleur
|
|
{
|
|
public function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$bar = $this->requete->getParametreFormulaire("bar");
|
|
|
|
$this->genererVueAjax(array('bar' => $bar));
|
|
}
|
|
} |