| Conditions | 4 |
| Paths | 5 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function ConvertTimeForClientDisplay($time_value) { |
||
| 14 | if (empty($time_value)) { |
||
| 15 | return null; |
||
| 16 | } |
||
| 17 | |||
| 18 | $time_value_length = strlen($time_value); |
||
| 19 | $supposed_utc_index = $time_value_length > 3 ? $time_value_length - 3 : 0; |
||
| 20 | $utc_index = strstr($time_value, "UTC"); |
||
| 21 | |||
| 22 | if ($utc_index == $supposed_utc_index) { |
||
| 23 | return $time_value; |
||
| 24 | } else { |
||
| 25 | return $time_value . " UTC"; |
||
| 26 | } |
||
| 28 | } |