Gazelle/sections/ajax/bookmarks/index.php
2013-05-13 08:00:33 +00:00

34 lines
679 B
PHP

<?
// Number of users per page
define('BOOKMARKS_PER_PAGE', '20');
if (empty($_REQUEST['type'])) { $_REQUEST['type'] = 'torrents'; }
switch ($_REQUEST['type']) {
case 'torrents':
require(SERVER_ROOT.'/sections/ajax/bookmarks/torrents.php');
break;
case 'artists':
require(SERVER_ROOT.'/sections/ajax/bookmarks/artists.php');
break;
case 'collages':
$_GET['bookmarks'] = 1;
require(SERVER_ROOT.'/sections/ajax/collages/browse.php');
break;
case 'requests':
$_GET['type'] = 'bookmarks';
require(SERVER_ROOT.'/sections/ajax/requests/requests.php');
break;
default:
print
json_encode(
array(
'status' => 'failure'
)
);
die();
}
?>