1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| case "enseignant/AfichNoteEtu/Modifier/?":
$test=1;
case "enseignant/notematiere/ModifierNotEtu?"://afficher l'interface pour telecharger le PV des la matiere
$controller=Controller_Notes::getInstance();
if($controller->TestSessionEns())//test si la sesion d'enseignet egsiste
{
if($_POST['num_semestre'] < 7 )
{
$controller->ValidModifNotEtuS1S6($_POST['num_semestre'],$_POST['num_module'],$_POST['num_matiere'],$_POST['num_etudiant'],$_POST['note_ds'],$_POST['note_evaluation'],$_POST['moyenne'],$_POST['Date_Modif']);
}
else
{
$controller->ValidModifNotEtuS7S10($_POST['num_semestre'],$_POST['num_module'],$_POST['num_matiere'],$_POST['num_etudiant'],$_POST['note_ds'],$_POST['note_evaluation'],$_POST['moyenne'],$_POST['Date_Modif']);
}
}
if($test!=0)
{header('location:'.$_SERVER['HTTP_ROOT'].'enseignant/AfichNoteEtu/');}
else
{header('location:'.$_SERVER['HTTP_ROOT'].'enseignant/AfichNote');}
break; |
Partager