17 lines
398 B
PHP
Executable File
17 lines
398 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Adherent.php';
|
|
|
|
class ControleurAjaxlimiteaddadherent extends Controleur {
|
|
private $adherent;
|
|
|
|
public function __construct() {
|
|
$this->adherent = new Adherent();
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$idAdherent = $_SESSION['idAdherent_C'];
|
|
$this->adherent->initLimiteAdditionnelle($idAdherent);
|
|
}
|
|
} |