| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | protected function processValue($value) { |
||
| 25 | if (strpos($value['value'], "relative:") !== FALSE) { |
||
| 26 | $relative = trim(str_replace('relative:', '', $value['value'])); |
||
| 27 | // Get time, convert to ISO 8601 date in GMT/UTC, remove TZ offset. |
||
| 28 | $processedValue = substr(gmdate('c', strtotime($relative)), 0, 19); |
||
| 29 | } |
||
| 30 | else { |
||
| 31 | $processedValue = str_replace(' ', 'T', $value['value']); |
||
| 32 | } |
||
| 33 | return ['value' => $processedValue]; |
||
| 34 | } |
||
| 35 | |||
| 37 |