| @@ 42-46 (lines=5) @@ | ||
| 39 | $this->applyFilterSelect($filter); |
|
| 40 | } else if ($filter instanceof Filter\FilterDate) { |
|
| 41 | $this->applyFilterDate($filter); |
|
| 42 | } else if ($filter instanceof Filter\FilterDateRange) { |
|
| 43 | $this->applyFilterDateRange($filter); |
|
| 44 | } else if ($filter instanceof Filter\FilterRange) { |
|
| 45 | $this->applyFilterRange($filter); |
|
| 46 | } |
|
| 47 | } |
|
| 48 | } |
|
| 49 | } |
|
| @@ 151-155 (lines=5) @@ | ||
| 148 | return $this->applyFilterDate($row, $filter); |
|
| 149 | } else if ($filter instanceof FilterMultiSelect) { |
|
| 150 | return $this->applyFilterMultiSelect($row, $filter); |
|
| 151 | } else if ($filter instanceof FilterDateRange) { |
|
| 152 | return $this->applyFilterDateRange($row, $filter); |
|
| 153 | } else if ($filter instanceof FilterRange) { |
|
| 154 | return $this->applyFilterRange($row, $filter); |
|
| 155 | } |
|
| 156 | ||
| 157 | $condition = $filter->getCondition(); |
|
| 158 | ||