mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 02:46:30 +00:00
35 lines
987 B
PHP
35 lines
987 B
PHP
<?php
|
|
// ugly UserID code that should be turned into a function . . .
|
|
if (!empty($_GET['userid'])) {
|
|
if (!check_perms('users_override_paranoia')) {
|
|
error(403);
|
|
}
|
|
$UserID = $_GET['userid'];
|
|
if (!is_number($UserID)) {
|
|
error(404);
|
|
}
|
|
$DB->query("
|
|
SELECT Username
|
|
FROM users_main
|
|
WHERE ID = '$UserID'");
|
|
list($Username) = $DB->next_record();
|
|
} else {
|
|
$UserID = $LoggedUser['ID'];
|
|
}
|
|
|
|
// Finally we start
|
|
|
|
// Require the table class
|
|
// require_once SERVER_ROOT . '/classes/mass_user_torrents_table_view.class.php';
|
|
|
|
View::show_header('Organize Bookmarks', 'browse,jquery-ui,jquery.tablesorter,sort');
|
|
|
|
$EditType = isset($_GET['type']) ? $_GET['type'] : 'torrents';
|
|
|
|
list(, $CollageDataList, $TorrentList) = Users::get_bookmarks($UserID); // TODO: $TorrentList might not have the correct order, use the $GroupIDs instead
|
|
|
|
$TT = new MASS_USER_TORRENTS_TABLE_VIEW($TorrentList, $CollageDataList, $EditType, 'Organize Torrent Bookmarks');
|
|
$TT->render_all();
|
|
|
|
View::show_footer();
|