parent
7e81336e7d
commit
c568683152
19
public/include/pages/statistics/round.inc.php
Normal file
19
public/include/pages/statistics/round.inc.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
// Make sure we are called from index.php
|
||||
if (!defined('SECURITY')) die('Hacking attempt');
|
||||
|
||||
if ($user->isAuthenticated()) {
|
||||
// Check if we want a specific round or general stats
|
||||
if (!empty($_REQUEST['round'])) $round = $_REQUEST['round'];
|
||||
|
||||
// Cache detection and content generation
|
||||
if (!$smarty->isCached('master.tpl', $smarty_cache_key)) {
|
||||
$debug->append('No cached version available, fetching from backend', 3);
|
||||
|
||||
} else {
|
||||
$debug->append('Using cached page', 3);
|
||||
}
|
||||
$smarty->assign("CONTENT", "default.tpl");
|
||||
}
|
||||
?>
|
||||
1
public/templates/mmcFE/statistics/round/default.tpl
Normal file
1
public/templates/mmcFE/statistics/round/default.tpl
Normal file
@ -0,0 +1 @@
|
||||
Need content for me
|
||||
Loading…
Reference in New Issue
Block a user