src/Controller/HomeController.php line 24

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Constante\AppContante;
  4. use App\Services\ApiService;
  5. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  6. use Symfony\Component\HttpFoundation\Request;
  7. use Symfony\Component\HttpFoundation\Response;
  8. use Symfony\Component\Routing\Annotation\Route;
  9. use DateTime;
  10. class HomeController extends AbstractController
  11. {
  12.     private  $apiService;
  13.     public function __construct(ApiService $apiService)
  14.     {
  15.         $this->apiService $apiService;
  16.     }
  17.     /**
  18.      * @Route("/", name="app_home")
  19.      */
  20.     public function index(): Response
  21.     {
  22.         $data $this->apiService->getDataHomePage();
  23.         //dd($data);
  24.         return $this->render('pages/index.html.twig', array(
  25.             'data'=>$data,
  26.             'months'=>AppContante::MONTH_YEAR,
  27.       
  28.         ));
  29.     }
  30.     /**
  31.      * @Route("/offres-emploi-medical", name="app_job_post")
  32.      */
  33.     public function jobList(Request $request): Response
  34.     {
  35.         $contentRequest $request->query->all();
  36.         //dd($contentRequest);
  37.         $data $this->apiService->getListOffre($contentRequest);
  38.         //dd($data);
  39.         return $this->render('pages/job/job_post.html.twig',[
  40.             "data"=>$data,
  41.           
  42.         ]);
  43.     }
  44.     /**
  45.      * @Route("/job-single/{refererence}", name="app_job_single")
  46.      */
  47.     public function jobSingle($refererence): Response
  48.     {
  49.         $data $this->apiService->getSingleOffre($refererence);
  50.         //dd($data);
  51.         $periods = [];
  52.         $current_period = [['jour'=> $data[0]["date"]["date"],'designation'=> $data[0]["designation"]]];
  53.         $data[0]["num_mission"]=1;
  54.         for ($i 1$i count($data); $i++) {
  55.             $data[$i]["num_mission"]=$i+1;
  56.             $designation1 $data[$i-1]["designation"];
  57.             $designation2 $data[$i]["designation"];
  58.             $date1 = new DateTime($data[$i-1]["date"]["date"]);
  59.             $date2 = new DateTime($data[$i]["date"]["date"]);
  60.             $diff $date1->diff($date2);
  61.         
  62.             if ($diff->days === && $designation1 === $designation2) {
  63.                 
  64.                 $current_period[] = ['jour'=> $data[$i]["date"]["date"],'designation'=> $designation2];
  65.             } else {
  66.                
  67.                 $periods[] = $current_period;
  68.                 $current_period = [['jour'=> $data[$i]["date"]["date"],'designation'=> $designation2]];
  69.             }
  70.         }
  71.         
  72.     
  73.         $periods[] = $current_period;
  74.       
  75.         //dd($periods);
  76.         return $this->render('pages/job/job_single.html.twig',
  77.         array(
  78.             "data"=>$data,
  79.             "periods"=>$periods,
  80.             
  81.         ));
  82.     }
  83.     /**
  84.      * @Route("/recrutement-medical", name="app_job_recrut")
  85.      */
  86.     public function jobRecrut(): Response
  87.     {
  88.         return $this->render('pages/job/job_recrut.html.twig',[
  89.            
  90.         ]);
  91.         
  92.     }
  93. }