BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.php 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. #declare(strict_types = 1);
  3. /**
  4. * User history switch center
  5. */
  6. enforce_login();
  7. if ($_GET['action']) {
  8. switch ($_GET['action']) {
  9. case 'tracker_ips':
  10. include('ip_tracker_history.php');
  11. break;
  12. case 'posts':
  13. //Load ratio history page
  14. include('post_history.php');
  15. break;
  16. case 'subscriptions':
  17. // View subscriptions
  18. require('subscriptions.php');
  19. break;
  20. case 'thread_subscribe':
  21. require('thread_subscribe.php');
  22. break;
  23. case 'comments_subscribe':
  24. require('comments_subscribe.php');
  25. break;
  26. case 'catchup':
  27. require('catchup.php');
  28. break;
  29. case 'collage_subscribe':
  30. require('collage_subscribe.php');
  31. break;
  32. case 'subscribed_collages':
  33. require('subscribed_collages.php');
  34. break;
  35. case 'catchup_collages':
  36. require('catchup_collages.php');
  37. break;
  38. case 'token_history':
  39. require('token_history.php');
  40. break;
  41. case 'quote_notifications':
  42. require('quote_notifications.php');
  43. break;
  44. default:
  45. //You trying to mess with me query string? To the home page with you!
  46. header('Location: index.php');
  47. }
  48. }