123456789101112131415161718192021222324252627 |
- <?php
- declare(strict_types = 1);
-
- $Security = new Security();
- $UserID = $Security->checkUser('users_override_paranoia');
-
- $DB->query("
- SELECT
- `Username`
- FROM
- `users_main`
- WHERE
- `ID` = '$UserID'
- ");
- list($Username) = $DB->next_record();
-
- View::show_header(
- 'Organize Bookmarks',
- 'browse,vendor/jquery.tablesorter.min,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();
|