123456789101112131415161718192021222324252627282930 |
- <?php
-
- class Reports
- {
- /**
- * This function formats a string containing a torrent's remaster information
- * to be used in Reports v2.
- *
- * @param boolean $Remastered - whether the torrent contains remaster information
- * @param string $RemasterTitle - the title of the remaster information
- * @param string $RemasterYear - the year of the remaster information
- */
- public static function format_reports_remaster_info($Remastered, $RemasterTitle, $RemasterYear)
- {
- if ($Remastered) {
- $RemasterDisplayString = ' <';
- if ($RemasterTitle !== '' && $RemasterYear !== '') {
- $RemasterDisplayString .= "$RemasterTitle - $RemasterYear";
- } elseif ($RemasterTitle !== '' && $RemasterYear === '') {
- $RemasterDisplayString .= $RemasterTitle;
- } elseif ($RemasterTitle === '' && $RemasterYear !== '') {
- $RemasterDisplayString .= $RemasterYear;
- }
- $RemasterDisplayString .= '>';
- } else {
- $RemasterDisplayString = '';
- }
- return $RemasterDisplayString;
- }
- }
|