| Linux hosting5.siteguarding.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64 Path : /home/devsafetybis/op4103.dev.safetybis.com/catalog/controller/localisation/ |
| Current File : /home/devsafetybis/op4103.dev.safetybis.com/catalog/controller/localisation/country.php |
<?php
namespace Opencart\Catalog\Controller\Localisation;
/**
* Class Country
*
* @package Opencart\Catalog\Controller\Localisation
*/
class Country extends \Opencart\System\Engine\Controller {
/**
* Index
*
* @return void
*/
public function index(): void {
$json = [];
if (isset($this->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));
}
}