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 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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>
  19. <?= SITE_NAME ?> has no advertisements, is not sponsored, and
  20. provides its services free of charge.
  21. For these reasons, <?= SITE_NAME ?>'s financial obligations can
  22. only be met with the help of voluntary user donations.
  23. Supporting <?= SITE_NAME ?> is and will always remain
  24. voluntary.
  25. If you are financially able, please help pay <?= SITE_NAME ?>'s
  26. bills by donating.
  27. </p>
  28. <p>
  29. <?= SITE_NAME ?> uses all voluntary donations to cover the
  30. costs of running the site, tracker, and IRC network.
  31. These costs represent the hardware the site runs on (e.g., servers, upgrades, fixes),
  32. and recurring operating expenses (e.g., hosting, bandwidth, power).
  33. </p>
  34. <p>
  35. No staff member or other individual responsible for the site's operation personally profits from user donations.
  36. As a donor, your financial support is exclusively applied to operating costs.
  37. When you donate you are paying <?= SITE_NAME ?>'s bills.
  38. </p>
  39. </div>
  40. <span class="donation_info_title">What you will receive for donating</span>
  41. <div class="box pad donation_info">
  42. <p>
  43. Please see <a href="https://www.patreon.com/biotorrents" target="_blank"><?= SITE_NAME ?>'s Patreon</a> for a detailed overview of funding
  44. goals.
  45. There are some benefits to donating that culmulate at each tier pledged.
  46. Each tier's awards include those already listed.
  47. Bitcoin donations are privately negotiable.
  48. <ul>
  49. <li><strong>Bronze:</strong> A donor badge and forum access for your user account on the BioTorrents.de website
  50. </li>
  51. <li><strong>Silver:</strong> Unlimited API calls to the BioTorrents.de database</li>
  52. <li><strong>Gold:</strong> Monthly Skype calls to discuss wetlab and software ideas.
  53. My expertise includes fungal biotechnology, nonprofit administration, and LEMP development</li>
  54. <li><strong>Sponsor a Seedbox:</strong> Shell access to, and share ratio credit from, a seedbox that I manage on
  55. your behalf.
  56. Please understand that network services beyond the scope of seedbox administration should be negotiated
  57. separately</li>
  58. </ul>
  59. <!-- Any donation or contribution option listed above gives you the opportunity to receive Donor Points.
  60. After acquiring your first Donor Point, your account will unlock Donor Rank #1.
  61. This rank will last forever, and you'll receive the following perks upon unlocking it:</p>
  62. <ul>
  63. <li>Our eternal love, as represented by the heart you get next to your name</li>
  64. <li><a href="/wiki.php?action=article&amp;id=8">Inactivity</a> timer immunity</li>
  65. <li>Access to the <a href="/user.php?action=notify">notifications system</a></li>
  66. <li>Two <a href="/user.php?action=invite">invites</a></li>
  67. <li><a href="/collages.php">Collage</a> creation privileges</li>
  68. <li>Personal collage creation privileges</li>
  69. <li>One additional personal collage</li>
  70. <li>A warm, fuzzy feeling</li>
  71. <li>Absolutely nothing else</li>
  72. </ul> -->
  73. <p>
  74. Be reminded that when you make a donation, you aren't "purchasing" Donor Ranks, invites, or any <?= SITE_NAME ?>-specific benefit.
  75. When donating, you are helping <?= SITE_NAME ?> pay its
  76. bills, and your donation should be made in this spirit.
  77. The <?= SITE_NAME ?> staff does its best to recognize <?= SITE_NAME ?>'s financial supporters in a fair and fun way,
  78. but all Donor Perks are subject to change or cancellation at any time, without notice.
  79. </p>
  80. </div>
  81. <span class="donation_info_title">What you won't receive for donating</span>
  82. <div class="box pad donation_info">
  83. <ul>
  84. <li>Immunity from the rules</li>
  85. <li>Additional upload credit</li>
  86. </ul>
  87. </div>
  88. </div>
  89. <!-- END Donate -->
  90. <?php View::show_footer();