From 80adf4d5a279d9e6c604514b3553cd4af339b65f Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 22 Jan 2026 19:33:18 +0000 Subject: [PATCH] a --- Controleur/ControleurUsersrhclient.php | 26 ++++++ Vue/Extranetclient/index.php | 27 +++++- Vue/Usersrhclient/index.php | 116 +++++++++++++++++++++++++ 3 files changed, 166 insertions(+), 3 deletions(-) create mode 100755 Controleur/ControleurUsersrhclient.php create mode 100755 Vue/Usersrhclient/index.php diff --git a/Controleur/ControleurUsersrhclient.php b/Controleur/ControleurUsersrhclient.php new file mode 100755 index 0000000..09d5ffd --- /dev/null +++ b/Controleur/ControleurUsersrhclient.php @@ -0,0 +1,26 @@ +menuvue = new Menuvueutilisateur(); + $this->menuvue->getMenuVue("Usersrhclient"); + + $this->client = new Client(); + + } + public function index() { + $idClient = $_SESSION['idClient_C']; + + $client = $this->client->getClientId($idClient); + + $users = $this->client->getusersrhclient($idClient); + + $this->genererVue(array('client' => $client, 'users' => $users)); + } +} \ No newline at end of file diff --git a/Vue/Extranetclient/index.php b/Vue/Extranetclient/index.php index 0c023fe..337a022 100644 --- a/Vue/Extranetclient/index.php +++ b/Vue/Extranetclient/index.php @@ -2,6 +2,16 @@ $this->titre = "INTER-SANTE - Gestion Extranet Client"; $idClient = $_SESSION['idClient_C']; $extranetActif = $client['extranetActif']; + $validationRhRd = $client['validationRhRd']; + + var_dump + ( + array( + "extranetActif" => $extranetActif, + "validationRhRd" => $validationRhRd, + ) + ); + ?>