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.

donate.php 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?php
  2. enforce_login();
  3. // Include the header
  4. if (!$UserCount = $Cache->get_value('stats_user_count')) {
  5. $DB->query("
  6. SELECT COUNT(ID)
  7. FROM users_main
  8. WHERE Enabled = '1'");
  9. list($UserCount) = $DB->next_record();
  10. $Cache->cache_value('stats_user_count', $UserCount, 0); // Infinite cache
  11. }
  12. $DonorPerms = Permissions::get_permissions(DONOR);
  13. View::show_header('Donate');
  14. ?>
  15. <div class="thin">
  16. <span class="donation_info_title">Why donate?</span>
  17. <div class="box pad donation_info">
  18. <p><?=SITE_NAME?> has no advertisements, is not sponsored, and
  19. provides its services free of charge. For these reasons, <?=SITE_NAME?>'s financial obligations can only be met with the help
  20. of voluntary user donations. Supporting <?=SITE_NAME?> is and
  21. will always remain voluntary. If you are financially able, help pay <?=SITE_NAME?>'s bills by donating. <?=SITE_NAME?>'s survival is up to you.</p>
  22. <p><?=SITE_NAME?> uses all voluntary donations to cover the costs
  23. of running the site, tracker, and IRC network. These costs represent the hardware the site runs on (e.g., servers,
  24. upgrades, fixes, etc.), and recurring operating expenses (e.g., hosting, bandwidth, power, etc.).</p>
  25. <p>Please note that <?=SITE_NAME?> is a nonprofit organization.
  26. No staff member or other individual responsible for the site's operation personally profits from user donations.
  27. As a donor, your financial support is exclusively applied to operating costs. When you donate you aren't paying
  28. the <?=SITE_NAME?> Staff, purchasing upload credit, or buying
  29. the ability to download. When you donate you are paying <?=SITE_NAME?>'s bills.</p>
  30. <p><?=SITE_NAME?>'s Donor Rank system is currently available to
  31. all credited donors. This system provides donors with perks. Some of these perks are cosmetic (e.g., a donor icon
  32. added to your account), some are one-time benefits (e.g., additional invites), and others modify specific site
  33. options (e.g., additional profile information boxes, or personal collages). Please see the <a
  34. href="/wiki.php?action=article&name=donorfaq">Donor Rank System FAQ Document</a> for more information about
  35. these benefits.</p>
  36. </div>
  37. <span class="donation_info_title">What you will receive for donating</span>
  38. <div class="box pad donation_info">
  39. <p>Any donation or contribution option listed above gives you the opportunity to receive Donor Points. After
  40. acquiring your first Donor Point, your account will unlock Donor Rank #1. This rank will last forever, and you'll
  41. receive the following perks upon unlocking it:</p>
  42. <ul>
  43. <li>Our eternal love, as represented by the heart you get next to your name</li>
  44. <!--<li><a href="/wiki.php?action=article&amp;id=8">Inactivity</a> timer immunity</li>
  45. <li>Access to the <a href="/user.php?action=notify">notifications system</a></li>
  46. <li>Two <a href="/user.php?action=invite">invites</a></li>
  47. <li><a href="/collages.php">Collage</a> creation privileges</li>
  48. <li>Personal collage creation privileges</li>
  49. <li>One additional personal collage</li>-->
  50. <li>A warm, fuzzy feeling</li>
  51. <li>Absolutely nothing else</li>
  52. </ul>
  53. <p>Be reminded that when you make a donation, you aren't "purchasing" Donor Ranks, invites, or any <?=SITE_NAME?>-specific benefit. When donating, you are helping
  54. <?=SITE_NAME?> pay its bills, and your donation should be made
  55. in this spirit. The <?=SITE_NAME?> Staff does its best to
  56. recognize <?=SITE_NAME?>'s financial supporters in a fair and
  57. fun way, but all Donor Perks are subject to change or cancellation at any time, without notice.</p>
  58. </div>
  59. <span class="donation_info_title">What you won't receive for donating</span>
  60. <div class="box pad donation_info">
  61. <ul>
  62. <li>Immunity from the rules</li>
  63. <li>Additional upload credit</li>
  64. </ul>
  65. </div>
  66. </div>
  67. <!-- END Donate -->
  68. <?php View::show_footer();