newdesigngestionnaire/Controleur/ControleurAjaxtextefacturationgarant.php
2026-03-05 11:24:41 +00:00

25 lines
481 B
PHP
Executable File

<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Societeuser.php';
class ControleurAjaxtextefacturationgarant extends Controleur {
private $menuvue;
private $societeuser;
public function __construct() {
$this->societeuser = new Societeuser();
}
public function index()
{
$textes = $this->societeuser->getTexteFacturationGarant();
$this->genererVueAjax(array(
'textes' => $textes
));
}
}