server/onyx/include/team/exercice.php
2013-11-05 00:35:35 +01:00

26 lines
439 B
PHP

<?php
if(!defined('ONYX')) exit;
try
{
$exercice = new Exercice($EXERCICE);
if (!isset($exercice->id))
return "404";
if (!isset($exercice->theme) || $exercice->theme->name != $THEME)
return "404";
$solved = count($exercice->get_solved());
$template->assign("Exercice", $exercice);
$template->assign("solved", $solved);
return "teams/exercice";
}
catch(Exception $e)
{
return "404";
}