server/onyx/include/team/exercice.php

22 lines
371 B
PHP
Raw Normal View History

2013-10-22 06:16:02 +00:00
<?php
if(!defined('ONYX')) exit;
2013-11-04 22:20:16 +00:00
//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);
2013-10-22 06:16:02 +00:00
2013-10-26 06:56:06 +00:00
return "teams/exercice";