From b2d290f4d4d4310328c580a61f0e485bdee30571 Mon Sep 17 00:00:00 2001 From: Clecle Date: Fri, 23 Oct 2015 18:36:33 +0200 Subject: [PATCH 1/2] =?UTF-8?q?Ajout=20de=20la=20fonction=20d=C3=A9placerE?= =?UTF-8?q?leve()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manager/database.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/manager/database.php b/manager/database.php index 992518a..6f374d7 100755 --- a/manager/database.php +++ b/manager/database.php @@ -190,7 +190,22 @@ class DataBase{ } + /******************************************************/ + /***** déplace un étudiant d'un groupe à un autre *****/ + /******************************************************/ + public function deplacerEleve($idEleve,$nouveauGroupe) { + + if(1) { + + + return 'L\'étudiant a été déplacé'; + } + else { + + return 'L\'étudiant n\'a pas pu être déplacé'; + } + } } From f8ece613a29e354210ef2a6cb3a8a857ac12b50a Mon Sep 17 00:00:00 2001 From: Clecle Date: Fri, 23 Oct 2015 18:42:33 +0200 Subject: [PATCH 2/2] =?UTF-8?q?Cotr=C3=B4le=20variable=20deplacerEleve()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manager/database.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/manager/database.php b/manager/database.php index 6f374d7..820f46d 100755 --- a/manager/database.php +++ b/manager/database.php @@ -194,10 +194,11 @@ class DataBase{ /***** déplace un étudiant d'un groupe à un autre *****/ /******************************************************/ - public function deplacerEleve($idEleve,$nouveauGroupe) { + public function deplacerEleve($nomEleve,$nouveauGroupe) { - if(1) { + // !!! Réfléchir à la gestion des AS, LP etc.. + if(isset($nouveauGroupe) && is_string($nouveauGroupe) && $nouveauGroupe == 'A' || 'B' || 'C' || 'D' || 'E' || 'F') { return 'L\'étudiant a été déplacé'; }