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.2KB

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