New router and associated pages

This commit is contained in:
Némunaire 2013-10-22 08:16:02 +02:00
commit bed471d75a
12 changed files with 133 additions and 114 deletions

View file

@ -0,0 +1,16 @@
<?php
if(!defined('ONYX')) exit;
try
{
$team = new Team($TEAM);
$template->assign("team", $team);
return "team/team";
}
catch($e)
{
return "404";
}