Oppaitime'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 764B

123456789101112131415161718192021222324252627282930313233
  1. <?
  2. enforce_login();
  3. if (isset($_GET['method'])) {
  4. switch ($_GET['method']) {
  5. case 'screenshots':
  6. include(SERVER_ROOT.'/sections/better/screenshots.php');
  7. break;
  8. case 'encode':
  9. include(SERVER_ROOT.'/sections/better/encode.php');
  10. break;
  11. case 'snatch':
  12. include(SERVER_ROOT.'/sections/better/snatch.php');
  13. break;
  14. case 'upload':
  15. include(SERVER_ROOT.'/sections/better/upload.php');
  16. break;
  17. case 'tags':
  18. include(SERVER_ROOT.'/sections/better/tags.php');
  19. break;
  20. case 'folders':
  21. include(SERVER_ROOT.'/sections/better/folders.php');
  22. break;
  23. case 'files':
  24. include(SERVER_ROOT.'/sections/better/files.php');
  25. break;
  26. default:
  27. error(404);
  28. break;
  29. }
  30. } else {
  31. include(SERVER_ROOT.'/sections/better/better.php');
  32. }
  33. ?>