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.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 'ips':
  10. //Load IP history page
  11. include('ip_history.php');
  12. break;
  13. case 'tracker_ips':
  14. include('ip_tracker_history.php');
  15. break;
  16. case 'passwords':
  17. //Load Password history page
  18. include('password_history.php');
  19. break;
  20. case 'userip':
  21. include('ip_history_userview.php');
  22. break;
  23. case 'passkeys':
  24. //Load passkey history page
  25. include('passkey_history.php');
  26. break;
  27. case 'posts':
  28. //Load ratio history page
  29. include('post_history.php');
  30. break;
  31. case 'subscriptions':
  32. // View subscriptions
  33. require('subscriptions.php');
  34. break;
  35. case 'thread_subscribe':
  36. require('thread_subscribe.php');
  37. break;
  38. case 'comments_subscribe':
  39. require('comments_subscribe.php');
  40. break;
  41. case 'catchup':
  42. require('catchup.php');
  43. break;
  44. case 'collage_subscribe':
  45. require('collage_subscribe.php');
  46. break;
  47. case 'subscribed_collages':
  48. require('subscribed_collages.php');
  49. break;
  50. case 'catchup_collages':
  51. require('catchup_collages.php');
  52. break;
  53. case 'token_history':
  54. require('token_history.php');
  55. break;
  56. case 'quote_notifications':
  57. require('quote_notifications.php');
  58. break;
  59. default:
  60. //You trying to mess with me query string? To the home page with you!
  61. header('Location: index.php');
  62. }
  63. }