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,30 @@
<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/College_temp.php';
class ControleurRecaplimitecollege extends Controleur {
private $menuvue;
private $college_temp;
public function __construct() {
$this->college_temp = new College_temp();
}
public function index()
{
$idCollegeTemp = $_SESSION['idCollegeTemp'];
$this->college_temp->recapituler_maj_limite_college($idCollegeTemp);
$collegeTemp = $this->college_temp->getCollegeTemp($idCollegeTemp);
$chemin = $this->menuvue->getChemin('Recaplimitecollege');
$this->genererVueAjax(array('collegeTemp' => $collegeTemp, 'chemin' => $chemin));
}
public function recapituler() {
$idCollegeTemp = $_SESSION['idCollegeTemp'];
$this->college_temp->recapituler_maj_limite_college($idCollegeTemp);
}
}