mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2025-01-05 23:42:21 +00:00
Changements textuels
This commit is contained in:
parent
2f9e1cc452
commit
c615abab44
@ -36,7 +36,7 @@ class ValidateVideo
|
||||
{
|
||||
$this->video = Video::fromId($this->video_id);
|
||||
ensure($this->video != null, "La vidéo n'existe pas.");
|
||||
ensure($this->video->getValidation() == 0, "La vidéo est déjà validée / rejetée.");
|
||||
ensure($this->video->getValidation() != 1, "La vidéo est déjà validée / rejetée.");
|
||||
ensure(($this->accept == null || $this->reject == null) && $this->accept != $this->reject, "Impossible de déterminer s'il faut accepter ou non la vidéo.");
|
||||
}
|
||||
|
||||
|
@ -66,13 +66,13 @@ for ($i = 0; $i < 2; ++$i) {
|
||||
displayVideo($link);
|
||||
switch ($answer->getValidation()) {
|
||||
case 0:
|
||||
echo "<div class=\"alert alert-warning\">La vidéo n'a pas encore été contrôlée.</div>";
|
||||
echo "<div class=\"alert alert-warning\">La vidéo n'a pas encore été vérifiée par l'équipe d'organisation.</div>";
|
||||
break;
|
||||
case 1:
|
||||
echo "<div class=\"alert alert-success\">La vidéo a été acceptée.</div>";
|
||||
echo "<div class=\"alert alert-success\">La vidéo a été acceptée par l'équipe d'organisation.</div>";
|
||||
break;
|
||||
case -1:
|
||||
echo "<div class=\"alert alert-danger\">La vidéo a été rejetée.</div>";
|
||||
echo "<div class=\"alert alert-danger\">La vidéo a été rejetée par l'équipe d'organisation.</div>";
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -20,13 +20,13 @@ if ($video !== null) {
|
||||
displayVideo($link);
|
||||
switch ($video->getValidation()) {
|
||||
case 0:
|
||||
echo "<div class=\"alert alert-warning\">La vidéo n'a pas encore été contrôlée.</div>";
|
||||
echo "<div class=\"alert alert-warning\">La vidéo n'a pas encore été vérifiée par l'équipe d'organisation.</div>";
|
||||
break;
|
||||
case 1:
|
||||
echo "<div class=\"alert alert-success\">La vidéo a été acceptée.</div>";
|
||||
echo "<div class=\"alert alert-success\">La vidéo a été acceptée par l'équipe d'organisation.</div>";
|
||||
break;
|
||||
case -1:
|
||||
echo "<div class=\"alert alert-danger\">La vidéo a été rejetée.</div>";
|
||||
echo "<div class=\"alert alert-danger\">La vidéo a été rejetée par l'équipe d'organisation.</div>";
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -47,17 +47,20 @@ for ($problem = 1; $problem <= 4; ++$problem) { ?>
|
||||
<?php
|
||||
displayVideo($link);
|
||||
|
||||
if ($video->getValidation() == 0) { ?>
|
||||
if ($video->getValidation() <= 0) { ?>
|
||||
<form method="POST">
|
||||
<input type="hidden" name="validate_video" value=""/>
|
||||
<input type="hidden" name="video_id" value="<?= $video->getId() ?>"/>
|
||||
<input class="btn btn-primary btn-lg" style="width: 49%;" type="submit" name="accept"
|
||||
<input class="btn btn-primary btn-lg" style="width: <?= $video->getValidation() == 0 ? 49 : 100 ?>%;" type="submit" name="accept"
|
||||
value="Accepter la vidéo"/>
|
||||
<input class="btn btn-light btn-lg" style="width: 49%;" type="submit" name="reject"
|
||||
value="Refuser la vidéo"/>
|
||||
<?php if ($video->getValidation() == 0) { ?>
|
||||
<input class="btn btn-light btn-lg" style="width: 49%;" type="submit" name="reject"
|
||||
value="Refuser la vidéo"/>
|
||||
<?php } ?>
|
||||
</form>
|
||||
<br/>
|
||||
<?php } else { ?>
|
||||
<?php }
|
||||
if ($video->getValidation() != 0) { ?>
|
||||
<div class="alert alert-<?= $video->getValidation() == 1 ? "success" : "danger" ?>">
|
||||
La vidéo a été <?= $video->getValidation() == 1 ? "acceptée" : "refusée" ?>.
|
||||
</div>
|
||||
@ -113,13 +116,16 @@ for ($problem = 1; $problem <= 4; ++$problem) { ?>
|
||||
<input type="hidden" name="video_id" value="<?= $answer->getId() ?>"/>
|
||||
<input class="btn btn-primary btn-lg" style="width: 49%;" type="submit" name="accept"
|
||||
value="Accepter la vidéo"/>
|
||||
<input class="btn btn-light btn-lg" style="width: 49%;" type="submit" name="reject"
|
||||
value="Refuser la vidéo"/>
|
||||
<?php if ($video->getValidation() == 0) { ?>
|
||||
<input class="btn btn-light btn-lg" style="width: 49%;" type="submit" name="reject"
|
||||
value="Refuser la vidéo"/>
|
||||
<?php } ?>
|
||||
</form>
|
||||
<br />
|
||||
<?php } else { ?>
|
||||
<div class="alert alert-<?= $answer->getValidation() == 1 ? "success" : "danger" ?>">
|
||||
La vidéo a été <?= $answer->getValidation() == 1 ? "acceptée" : "refusée" ?>.
|
||||
<br/>
|
||||
<?php }
|
||||
if ($video->getValidation() != 0) { ?>
|
||||
<div class="alert alert-<?= $video->getValidation() == 1 ? "success" : "danger" ?>">
|
||||
La vidéo a été <?= $video->getValidation() == 1 ? "acceptée" : "refusée" ?>.
|
||||
</div>
|
||||
<?php }
|
||||
if ($answer->getValidation() != Video::ACCEPTED) {
|
||||
|
Loading…
Reference in New Issue
Block a user