public function __construct($util, $get = null) { parent::__construct($util); $this->model(); $mel = $this->ha($get["login"]); $mdp = $this->ha($get["mdp"]); //$groupe=$this->ha($get["groupe"]); $data = null; if ($this->ctrlmel($mel)) { $model = new Model(); //if ($mel!="" && $mdp!="" && $groupe!=""){ //3 champs remplis if ($mel != "" && $mdp != "") { //2 champs remplis $crypte = new Crypte(); if ($crypte->getCrypte()) { $mdp = md5($mdp); } //if ($tb=$model->getAuthent($mel,$mdp,$groupe)){ if ($tb = $model->getAuthent($mel, $mdp)) { $this->util->init($tb[0]["num"], $tb[0]["nom"], $tb[0]["prenom"], $tb[0]["niveau"], $tb[0]["groupes"]); $_SESSION['ctrl'] = $this->util; } } $model->close(); } $this->setViewMenu(); $suff = ""; if ($this->util->estEtudiant()) { $suff = "e"; } if ($this->util->estProf() || $this->util->estLecteur()) { $suff = "p"; } if ($this->util->estAdmin()) { $suff = "a"; } $this->view->init('corpsaccueil' . $suff . '.php', $data); $this->setViewBas(); }
public function __construct($util, $get = null) { parent::__construct($util); $this->model(); $model = new Model(); $texte = null; if (isset($get["num"])) { //vient de l'ihm $num = $get["num"]; $enregistrer = $get["envoi"]; if (!is_null($enregistrer)) { //on a cliqué un bouton enregistrer $ret = false; $crypte = new Crypte(); if ($num == 1) { //prof ou lecteur //if (isset($get["auto"])) $a='O'; else $a='N'; $nom = $this->ha($get["nom"]); $prenom = $this->ha($get["prenom"]); $mel = $this->ha($get["mel"]); if (isset($get["chmdp"])) { $mdp = $this->ha($get["mdp"]); } else { $mdp = null; } if ($this->ctrlmel($mel)) { $ret = $model->majProf($get["numpers"], $nom, $prenom, $mel, $mdp, $crypte->getCrypte(), $crypte->getSmtp()); } } else { if ($num == 3) { //étudiant $nom = $this->ha($get["nom"]); $prenom = $this->ha($get["prenom"]); $mel = $this->ha($get["mel"]); $numexam = $this->ha($get["numexam"]); if (isset($get["chmdp"])) { $mdp = $this->ha($get["mdp"]); } else { $mdp = null; } if ($this->ctrlmel($mel)) { $ret = $model->majEleve($get["numpers"], $nom, $prenom, $mel, $mdp, $crypte->getCrypte(), $crypte->getSmtp(), $numexam); } } } if ($ret) { $texte = "Données enregistrées"; } else { $texte = "Données incorrectes"; } } } if ($this->util->estProf() || $this->util->estLecteur()) { //prof ou lecteur $data["data"] = $model->getProfesseurModif($util->getId()); $data["num"] = 1; } else { if ($this->util->estEtudiant()) { //etudiant $data["data"] = $model->getEleveModif($util->getId()); $data["num"] = 3; } } $data["lngmdp"] = $model->getLng(); $model->close(); $data["messagetexte"] = $texte; $data["auth"] = $this->util->estAuthent(); $this->setViewMenu(); $this->view->init('modif.php', $data); $this->setViewBas(); }
<?php echo '<li><a href="index.php?action=groupe">Gestion des comptes</a></li>'; echo '<li><a href="index.php?action=suivigr">Suivi promotions</a></li>'; echo '<li><a href="index.php?action=suppr">Gestion suppressions</a></li>'; echo '<li><a href="index.php?action=finetude">Fin d\'études</a></li>'; //echo '<li><a href="javascript:aide(\'a\',1)">Aide</a></li>'; ?> </ul> </div> <div class="menu"> <h4><a href="javascript:aide('a',2)">Codes d'accès</a></h4> <ul> <?php $crypte = new Crypte(); if ($crypte->getCrypte()) { echo '<li>Mots de passe cryptés !</li>'; } else { echo '<li><a href="index.php?action=mpasse">Export mots de passe</a></li>'; } ?> </ul> </div> <div class="menu"> <h4><a href="javascript:aide('a',3)">Restauration</a></h4> <ul> <?php //echo '<li><a href="index.php?action=recup&t=1">Interne</a></li>'; echo '<li><a href="index.php?action=recup&t=2">Étudiant</a></li>';
public function __construct($util, $get = null) { parent::__construct($util); $this->model(); $texte = null; if (isset($get["num"])) { $num = $get["num"]; } else { $num = null; } $rech = false; // si null, vient de menua (menu admin) $model = new Model(); $crypte = new Crypte(); if (!is_null($num)) { //origine=clic un bouton enregistrer ou supprimer if (isset($get["envoi"])) { $enregistrer = $get["envoi"]; } else { $enregistrer = null; } if (!is_null($enregistrer)) { //on a cliqué un bouton envoi switch ($num) { case 1: //vient de la page groupe $nombouton = $get["envoi"]; if ($nombouton == "Enregistrer") { if ($get["nom"] != '' && $get['an'] != '') { if (preg_match("/^[0-9]{2}/", $get["an"])) { $nom = $this->ha($get["nom"]); $an = $this->ha($get["an"]); $parcours = $get["parcours"]; if (!isset($get["numgroupe"])) { //création groupe if ($model->setGroupe($nom, $an, $parcours)) { $texte = 'Groupe créé'; } else { $texte = 'Ce groupe existe déjà'; } } else { //modif groupe $numgroupe = $get["numgroupe"]; $rep = $model->modifGroupe($numgroupe, $nom, $an, $parcours); $texte = 'Groupe modifié'; } } } } if ($nombouton == "Supprimer") { if (isset($get["numgroupe"])) { $numgroupe = $get["numgroupe"]; if ($numgroupe != 0) { $model->delGroupe($numgroupe); $texte = 'Groupe supprimé'; } } } break; case 2: //vient bouton enregistrement prof $nombouton = $get["envoi"]; if ($nombouton == "Enregistrer") { $nom = $this->ha($get["nom"]); $mel = $this->ha($get["mel"]); if ($nom != '' && $mel != '' && $this->ctrlmel($mel)) { $prenom = $this->ha($get["prenom"]); $niveau = $get["niveau"]; if (isset($get["chk"])) { $chk = $get["chk"]; } else { $chk = array(); } if (!isset($get["numprof"])) { //création $res = $model->setProf($nom, $prenom, $mel, $niveau, $crypte->getSmtp(), $crypte->getCrypte()); if ($res) { $numprof = $model->getId(); $model->affecteGroupe($numprof, $chk); } } else { //maj $numprof = $get["numprof"]; if (isset($get["chmdp"])) { $mdp = $this->ha($get["mdp"]); } else { $mdp = null; } $res = $model->modifProf($numprof, $nom, $prenom, $mel, $niveau, $mdp, $crypte->getSmtp(), $crypte->getCrypte()); if ($res) { $model->modifAffecteGroupe($numprof, $chk); } } if ($res) { $texte = 'données enregistrées'; } else { $texte = 'pas d\'enregistrement (doublon)'; } } else { $texte = 'données incorrectes'; } } if ($nombouton == "Supprimer") { $numprof = $get["numprof"]; if (!is_null($numprof)) { if ($numprof != 0) { $model->suppProf($numprof); $texte = 'Professeur supprimé'; } } } break; case 3: //vient bouton enregistrement étudiant $nombouton = $get["envoi"]; if ($nombouton == "Enregistrer") { $nom = $this->ha($get["nom"]); $prenom = $this->ha($get["prenom"]); $mel = $this->ha($get["mel"]); if ($nom != '' && $mel != '' && $this->ctrlmel($mel)) { $groupe = $get["groupe"]; if ($groupe == 0) { $groupe = 'null'; } if (!isset($get["numetud"])) { $res = $model->setEtudiant($nom, $prenom, $mel, $groupe, $crypte->getSmtp(), $crypte->getCrypte()); } else { $numetud = $get["numetud"]; if (isset($get["chmdp"])) { $mdp = $this->ha($get["mdp"]); } else { $mdp = null; } $res = $model->modifEtudiant($numetud, $nom, $prenom, $mel, $groupe, $mdp, $crypte->getSmtp(), $crypte->getCrypte()); } if ($res) { $texte = 'données enregistrées'; } else { $texte = 'pas d\'enregistrement (doublon)'; } } else { $texte = 'données incorrectes'; } } if ($nombouton == "Supprimer") { $numetud = $get["numetud"]; if (!is_null($numetud)) { if ($numetud != 0) { $model->suppEtud($numetud); $texte = 'Étudiant supprimé'; } } } break; case 4: //on vient page recherche objet $rech = true; $nombouton = $get["envoi"]; if ($nombouton == "Rechercher") { $codeobj = $get["groupes"]; if ($codeobj > 0) { $num = 1; } else { $codeobj = $get["professeurs"]; if ($codeobj > 0) { $num = 2; } else { $codeobj = $get["etudiants"]; $num = 3; } } } break; case 5: //on vient page téléversement fichier élève $repfic = 'dirrw/upload/'; $groupe = $get["groupes"]; if ($groupe == 0) { $texte = "choisir le groupe d'affectation"; } else { $texte = ""; if (empty($_FILES['fichier']['name'])) { $texte = "aucun fichier sélectionné"; } else { $tmp = $_FILES['fichier']['tmp_name']; if (!is_uploaded_file($tmp)) { $texte = "fichier non trouvé"; } else { $nf = $_FILES['fichier']['name']; if ($nf != "noms.csv") { $texte = "ce nom de fichier ne convient pas"; } else { if (!move_uploaded_file($tmp, $repfic . $nf)) { $texte = "impossible de copier le fichier"; } else { $texte = "le fichier a été téléversé"; //$nb=$this->enregData($groupe); //on lit le fichier de noms, on les enregistre dans la BD // puis on efface le fichier //on compte le nombre d'erreurs d'enregistrement $flu = fopen("dirrw/upload/noms.csv", "r"); $nb = 0; //nb erreurs while ($ligne = fgetcsv($flu, 140, ";")) { $nom = $ligne[0]; $prenom = $ligne[1]; $mel = $ligne[2]; //tester vraisemblances : à faire pour plus tard... if (!$model->setEtudiant($nom, $prenom, $mel, $groupe, $crypte->getSmtp(), $crypte->getCrypte())) { $nb++; } } fclose($flu); //supprimer fichier unlink("dirrw/upload/noms.csv"); if ($nb == 0) { $texte .= " et les données mises à jour"; } else { $texte .= " mais son contenu n'est pas correct (" . $nb . " problème(s))"; } } } } } } break; } } } else { $num = 1; } $this->setViewMenu(); switch ($num) { case 1: if ($rech) { $data = array("groupe" => $model->getGroupe($codeobj)); } else { $data = array("groupes" => $model->getGroupes()); } break; case 2: if ($rech) { $data = array("professeur" => $model->getProfesseur($codeobj), "groupes" => $model->getGroupesProf($codeobj)); } else { $data = array("groupes" => $model->getGroupes()); } break; case 3: if ($rech) { $data = array("etudiant" => $model->getEtudiant($codeobj), "groupes" => $model->getGroupes()); } else { $data = array("groupes" => $model->getGroupes()); } break; case 4: $data = array("groupes" => $model->getGroupes(), "professeurs" => $model->getProfesseurs(), "etudiants" => $model->getEtudiants()); break; case 5: $data = array("groupes" => $model->getGroupes()); } $data["lng"] = $model->getLng(); $model->close(); $data["param"] = $num; $data["messagetexte"] = $texte; $data["auth"] = $this->util->estAuthent(); $this->view->init('groupe' . $num . '.php', $data); $this->setViewBas(); }