2011-09-16 08:00:13 +00:00
|
|
|
<?
|
|
|
|
// Already done in /sections/ajax/index.php
|
|
|
|
//enforce_login();
|
|
|
|
|
2012-03-28 08:00:20 +00:00
|
|
|
if(!check_perms('site_top10')){
|
2011-09-16 08:00:13 +00:00
|
|
|
print json_encode(array('status' => 'failure'));
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(empty($_GET['type']) || $_GET['type'] == 'torrents') {
|
|
|
|
include(SERVER_ROOT.'/sections/ajax/top10/torrents.php');
|
|
|
|
} else {
|
|
|
|
switch($_GET['type']) {
|
|
|
|
case 'users' :
|
|
|
|
include(SERVER_ROOT.'/sections/ajax/top10/users.php');
|
|
|
|
break;
|
|
|
|
case 'tags' :
|
|
|
|
include(SERVER_ROOT.'/sections/ajax/top10/tags.php');
|
|
|
|
break;
|
|
|
|
case 'history' :
|
|
|
|
include(SERVER_ROOT.'/sections/ajax/top10/history.php');
|
|
|
|
break;
|
|
|
|
default :
|
|
|
|
print json_encode(array('status' => 'failure'));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|