| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | protected function getColumns(): array |
||
| 28 | { |
||
| 29 | return [ |
||
| 30 | 'client_ip' => ['title' => trans('cortex/statistics::common.client_ip'), 'responsivePriority' => 0], |
||
| 31 | 'latitude' => ['title' => trans('cortex/statistics::common.latitude')], |
||
| 32 | 'longitude' => ['title' => trans('cortex/statistics::common.longitude')], |
||
| 33 | 'country_code' => ['title' => trans('cortex/statistics::common.country_code')], |
||
| 34 | 'client_ips' => ['title' => trans('cortex/statistics::common.client_ips'), 'visible' => false], |
||
| 35 | 'is_from_trusted_proxy' => ['title' => trans('cortex/statistics::common.is_from_trusted_proxy')], |
||
| 36 | 'division_code' => ['title' => trans('cortex/statistics::common.division_code')], |
||
| 37 | 'postal_code' => ['title' => trans('cortex/statistics::common.postal_code')], |
||
| 38 | 'timezone' => ['title' => trans('cortex/statistics::common.timezone')], |
||
| 39 | 'city' => ['title' => trans('cortex/statistics::common.city')], |
||
| 40 | 'count' => ['title' => trans('cortex/statistics::common.count')], |
||
| 41 | ]; |
||
| 42 | } |
||
| 43 | } |
||
| 44 |