Vidéos pour le problème $problem\n";
/** @var Video $video */
foreach ($videos[$problem - 1] as $video) {
$link = $video->getLink();
$team = Team::fromId($video->getTeam());
$version = $video->getVersion();
echo "
Vidéo de présentation de l'équipe « " . $team->getName() . " » (" . $team->getTrigram() . ") :
\n";
echo "Lien de la vidéo (version $version) : $link";
displayVideo($link);
if ($video->getValidation() == 0) { ?>
La vidéo a été " . ($video->getValidation() == 1 ? "acceptée" : "refusée") . ".
\n";
if ($video->getValidation() != Video::ACCEPTED) {
$last_validated_video = Video::getVideo(Reason::SOLUTION, $team, Video::ACCEPTED);
$link = $last_validated_video->getLink();
echo "\nLien de la dernière vidéo validée de cette équipe : $link
\n";
displayVideo($link);
}
if (Phase::getCurrentPhase() > Phase::PHASE1) {
/** @var Question[] $from_questions */
foreach (Question::getQuestionsTo($team) as $from_questions) {
$from = Team::fromId($from_questions[0]->getFrom());
echo "
\nQuestions posées par l'équipe " . $from->getName() . " (" . $from->getTrigram() . ") :
\n";
for ($i = 0; $i < sizeof($from_questions); ++$i) {
$question = $from_questions[$i];
if ($question->getQuestion() == null)
continue;
echo "Question " . ($i + 1) . " : " . $question->getQuestion() . "
\n";
if ($question->getAttachedFile() != null) {
echo "Pièce jointe attachée : getAttachedFile() . "\">Télécharger
\n";
}
}
}
}
}
echo "
\n";
}
require_once "footer.php";