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.

reports.class.php 1.1KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. class Reports
  3. {
  4. /**
  5. * This function formats a string containing a torrent's remaster information
  6. * to be used in Reports v2.
  7. *
  8. * @param boolean $Remastered - whether the torrent contains remaster information
  9. * @param string $RemasterTitle - the title of the remaster information
  10. * @param string $RemasterYear - the year of the remaster information
  11. */
  12. public static function format_reports_remaster_info($Remastered, $RemasterTitle, $RemasterYear)
  13. {
  14. if ($Remastered) {
  15. $RemasterDisplayString = ' &lt;';
  16. if ($RemasterTitle !== '' && $RemasterYear !== '') {
  17. $RemasterDisplayString .= "$RemasterTitle - $RemasterYear";
  18. } elseif ($RemasterTitle !== '' && $RemasterYear === '') {
  19. $RemasterDisplayString .= $RemasterTitle;
  20. } elseif ($RemasterTitle === '' && $RemasterYear !== '') {
  21. $RemasterDisplayString .= $RemasterYear;
  22. }
  23. $RemasterDisplayString .= '&gt;';
  24. } else {
  25. $RemasterDisplayString = '';
  26. }
  27. return $RemasterDisplayString;
  28. }
  29. }