Skip to content

Commit

Permalink
Ajout de tests sur les droits d'accès à certaines pages
Browse files Browse the repository at this point in the history
  • Loading branch information
crob27 committed Jan 15, 2017
1 parent 01e4489 commit 4dd9e62
Showing 1 changed file with 18 additions and 23 deletions.
41 changes: 18 additions & 23 deletions aid/add_aid.php
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,8 @@

// debug_var();
//**************** FIN EN-TETE *****************
$NiveauGestionAid_categorie=NiveauGestionAid($_SESSION["login"],$indice_aid);
$NiveauGestionAid_AID_courant=NiveauGestionAid($_SESSION["login"],$indice_aid, $aid_id);

if ($_SESSION['statut'] == 'professeur') {
$retour = 'index2.php';
Expand Down Expand Up @@ -584,29 +586,22 @@
}
}

// Ajouter des liens vers l'ajout de profs, élèves et l'édition de la catégorie
echo "
|
<a href='modify_aid.php?flag=prof&aid_id=$aid_id&indice_aid=$indice_aid'
onclick=\"return confirm_abandon (this, change, '$themessage')\">
Ajouter/supprimer des professeurs
</a>
|
<a href='modify_aid.php?flag=eleve&aid_id=$aid_id&indice_aid=$indice_aid'
onclick=\"return confirm_abandon (this, change, '$themessage')\">
Ajouter/supprimer des élèves
</a>
|
<a href='modify_aid.php?flag=prof_gest&aid_id=$aid_id&indice_aid=$indice_aid'
onclick=\"return confirm_abandon (this, change, '$themessage')\"
title=\"Un gestionnaire peut gérer les inscriptions élèves dans un AID, donc en ajouter/supprimer.\">
Ajouter/supprimer des gestionnaires
</a>
|
<a href='config_aid.php?indice_aid=$indice_aid'
onclick=\"return confirm_abandon (this, change, '$themessage')\">
Modifier la catégorie AID
</a>";
if($NiveauGestionAid_AID_courant>=1) {
echo "
| <a href='modify_aid.php?flag=eleve&aid_id=".$aid_id."&indice_aid=".$indice_aid."' onclick=\"return confirm_abandon (this, change, '$themessage')\">Élèves de l'AID</a>";
}
if($NiveauGestionAid_AID_courant>=2) {
echo "
| <a href='modify_aid.php?flag=prof&aid_id=".$aid_id."&indice_aid=".$indice_aid."' onclick=\"return confirm_abandon (this, change, '$themessage')\">Professeurs de l'AID</a>";
}
if($NiveauGestionAid_AID_courant>=5) {
echo "
| <a href='modify_aid.php?flag=prof_gest&aid_id=".$aid_id."&indice_aid=".$indice_aid."' onclick=\"return confirm_abandon (this, change, '$themessage')\">Gestionnaires de l'AID</a>";
}
if($NiveauGestionAid_categorie==10) {
echo "
| <a href='config_aid.php?indice_aid=".$indice_aid."' onclick=\"return confirm_abandon (this, change, '$themessage')\">Catégorie AID</a>";
}
?>

</p>
Expand Down

0 comments on commit 4dd9e62

Please sign in to comment.