request->get['country_id'])) { $country_id = (int)$this->request->get['country_id']; } else { $country_id = 0; } $this->load->model('localisation/country'); $country_info = $this->model_localisation_country->getCountry($country_id); if ($country_info) { // Zone $this->load->model('localisation/zone'); $json = ['zone' => $this->model_localisation_zone->getZonesByCountryId($country_id)] + $country_info; } $this->response->addHeader('Content-Type: application/json'); $this->response->setOutput(json_encode($json)); } }