From b2d290f4d4d4310328c580a61f0e485bdee30571 Mon Sep 17 00:00:00 2001 From: Clecle Date: Fri, 23 Oct 2015 18:36:33 +0200 Subject: [PATCH] =?UTF-8?q?Ajout=20de=20la=20fonction=20d=C3=A9placerEleve?= =?UTF-8?q?()?= 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é'; + } + } }