| Conditions | 4 |
| Paths | 4 |
| Total Lines | 20 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | public function expand($values) { |
||
| 37 | |||
| 38 | $return = array(); |
||
| 39 | if (isset($this->fieldInfo['columns']['value2'])) { |
||
| 40 | foreach ($values as $value) { |
||
| 41 | $return[$this->language][] = array( |
||
| 42 | 'value' => $this->formatDateValue($value[0]), |
||
| 43 | 'value2' => $this->formatDateValue($value[1]), |
||
| 44 | ); |
||
| 45 | } |
||
| 46 | } |
||
| 47 | else { |
||
| 48 | foreach ($values as $value) { |
||
| 49 | $return[$this->language][] = array( |
||
| 50 | 'value' => $this->formatDateValue($value), |
||
| 51 | ); |
||
| 52 | } |
||
| 53 | } |
||
| 54 | return $return; |
||
| 55 | } |
||
| 56 | |||
| 58 |