This repository has been archived on 2025-06-10. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
server/onyx/include/team/exercice.php
Quentin Grosyeux 33935063a4 New templates
2013-11-04 23:20:16 +01:00

21 lines
371 B
PHP

<?php
if(!defined('ONYX')) exit;
//TOP10
$template->assign("top10", Team::get_top(10));
//RANK
$template->assign("my_team", new Team($TEAM));
//BEGIN LISTING THEMES
$template->assign("themes", Theme::get_themes());
$exercice = new Exercice($EXERCICE);
$template->assign("Exercice", $exercice);
//$template->assign("Number", $ex_number);
return "teams/exercice";