mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2025-01-07 11:02:21 +00:00
Suppression de la possibilité de changer de rôle facilement
This commit is contained in:
parent
22c90369e8
commit
649a66b2f1
@ -13,24 +13,6 @@ function loadUserValues()
|
||||
|
||||
if ($user->getTeamId() !== null)
|
||||
$_SESSION["team"] = Team::fromId($user->getTeamId());
|
||||
|
||||
if (isset($_GET["be-admin"])) {
|
||||
quitTeam();
|
||||
$user->setRole(Role::ADMIN);
|
||||
exit();
|
||||
}
|
||||
|
||||
if (isset($_GET["be-participant"])) {
|
||||
quitTeam();
|
||||
$user->setRole(Role::PARTICIPANT);
|
||||
exit();
|
||||
}
|
||||
|
||||
if (isset($_GET["be-encadrant"])) {
|
||||
quitTeam();
|
||||
$user->setRole(Role::ENCADRANT);
|
||||
exit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -78,18 +78,6 @@
|
||||
<li><a href="<?= $URL_BASE ?>/videos-solutions">Vidéos des solutions</a></li>
|
||||
<?php } ?>
|
||||
<li><a href="<?= $URL_BASE ?>/deconnexion">Déconnexion</a></li>
|
||||
<hr/>
|
||||
<?php
|
||||
if ($_SESSION["role"] != Role::ADMIN) {
|
||||
echo "<li><a href=\"?be-admin=1\">Devenir administrateur</a></li>\n";
|
||||
}
|
||||
if ($_SESSION["role"] != Role::PARTICIPANT) {
|
||||
echo "<li><a href=\"?be-participant=1\">Devenir participant</a></li>\n";
|
||||
}
|
||||
if ($_SESSION["role"] != Role::ENCADRANT) {
|
||||
echo "<li><a href=\"?be-encadrant=1\">Devenir encadrant</a></li>\n";
|
||||
}
|
||||
?>
|
||||
<?php } ?>
|
||||
</ul>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user