maj models, entité et page recherche, débug

This commit is contained in:
laura.chevillet 2026-01-19 15:46:30 +01:00
parent c0aab723d7
commit aaf36302ac
4 changed files with 64 additions and 12 deletions

View file

@ -51,11 +51,10 @@
$strEndDate = $_GET['enddate']??'';
$intCategory = $_GET['category']??0;
// Récupération des Projects
// Récupération des projetc
$objProjectModel = new ProjectModel;
// Depuis PHP 8 - accès direct aux paramètres
$arrProject = $objProjectModel->findAll();
$arrProject = $objProjectModel->findAll(intAuthor:$intAuthor, intPeriod:$intPeriod, strDate:$strDate,
strKeywords:$strKeywords, strStartDate:$strStartDate, strEndDate:$strEndDate, intCategory:$intCategory);
// Initialisation d'un tableau => objets
$arrProjectToDisplay = array();
@ -63,10 +62,11 @@
foreach($arrProject as $arrDetProject){
$objProject = new Project;
$objProject->hydrate($arrDetProject);
$arrProjectToDisplay[] = $objProject;
}
var_dump($arrProjectToDisplay);
// Récupération des utilisateurs
require_once("../app/models/user_model.php");
$objUserModel = new UserModel;