Adding empty example for round stat integration

Addresses #543
This commit is contained in:
Sebastian Grewe 2013-08-08 09:59:38 +02:00
parent 7e81336e7d
commit c568683152
2 changed files with 20 additions and 0 deletions

View 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");
}
?>

View File

@ -0,0 +1 @@
Need content for me