Import initial du projet Production

This commit is contained in:
KANE LAZENI
2025-12-01 16:12:12 +00:00
commit 2f364ab2fc
14257 changed files with 3395325 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Beneficiaire_temp.php';
require_once 'Modele/College_temp.php';
class ControleurAjaxselectionlimite extends Controleur {
private $beneficiaire_temp;
private $college_temp;
public function __construct() {
$this->beneficiaire_temp = new Beneficiaire_temp();
$this->college_temp = new College_temp();
}
public function index()
{
$id_college_temp = $this->requete->getParametreFormulaire("id_college_temp");
$_SESSION['idCollegeTemp'] = $id_college_temp;
$beneficiaires = $this->beneficiaire_temp->getListeBeneficiaire_temp_limite($id_college_temp);
$collegeTemp = $this->college_temp->getCollegeTemp($id_college_temp);
$this->genererVueAjax(array('beneficiaires' => $beneficiaires, 'collegeTemp' => $collegeTemp));
}
public function selectionner() {
$idBeneficiaire = $this->requete->getParametre(idBeneficiaire);
$choix = $this->requete->getParametreFormulaire("choix");
$this->beneficiaire_temp->selectionlimite($idBeneficiaire, $choix);
}
public function selectionnertout() {
$idCollegeTemp = $_SESSION['idCollegeTemp'];
$choix = $this->requete->getParametreFormulaire("choix");
$this->beneficiaire_temp->selectionlimitetout($idCollegeTemp, $choix);
$this->executerAction("index");
}
public function recapituler() {
$idBeneficiaire = $this->requete->getParametre("idBeneficiaire");
$choix = $this->requete->getParametreFormulaire("choix");
$this->beneficiaire_temp->recapitulerretrait($idBeneficiaire, $choix);
}
}