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.

donor_stats.php 564B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. if (check_perms('users_mod') || $OwnProfile || Donations::is_visible($UserID)) { ?>
  4. <div class="box box_info box_userinfo_donor_stats">
  5. <div class="head colhead_dark">Donor Statistics</div>
  6. <ul class="stats nobullet">
  7. <li>
  8. Total donor points: <?=Donations::get_total_rank($UserID)?>
  9. </li>
  10. <li>
  11. Current donor rank: <?=Donations::render_rank(Donations::get_rank($UserID), true)?>
  12. </li>
  13. <li>
  14. Last donated: <?=time_diff(Donations::get_donation_time($UserID))?>
  15. </li>
  16. </ul>
  17. </div>
  18. <?php
  19. }