77 lines
2.6 KiB
PHP
77 lines
2.6 KiB
PHP
<?php
|
|
namespace Opencart\Admin\Controller\Extension\Opencart\Shipping;
|
|
/**
|
|
* Class Free
|
|
*
|
|
* @package Opencart\Admin\Controller\Extension\Opencart\Shipping
|
|
*/
|
|
class Free extends \Opencart\System\Engine\Controller {
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function index(): void {
|
|
$this->load->language('extension/opencart/shipping/free');
|
|
|
|
$this->document->setTitle($this->language->get('heading_title'));
|
|
|
|
$data['breadcrumbs'] = [];
|
|
|
|
$data['breadcrumbs'][] = [
|
|
'text' => $this->language->get('text_home'),
|
|
'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'])
|
|
];
|
|
|
|
$data['breadcrumbs'][] = [
|
|
'text' => $this->language->get('text_extension'),
|
|
'href' => $this->url->link('marketplace/extension', 'user_token=' . $this->session->data['user_token'] . '&type=shipping')
|
|
];
|
|
|
|
$data['breadcrumbs'][] = [
|
|
'text' => $this->language->get('heading_title'),
|
|
'href' => $this->url->link('extension/opencart/shipping/free', 'user_token=' . $this->session->data['user_token'])
|
|
];
|
|
|
|
$data['save'] = $this->url->link('extension/opencart/shipping/free.save', 'user_token=' . $this->session->data['user_token']);
|
|
$data['back'] = $this->url->link('marketplace/extension', 'user_token=' . $this->session->data['user_token'] . '&type=shipping');
|
|
|
|
$data['shipping_free_total'] = $this->config->get('shipping_free_total');
|
|
$data['shipping_free_geo_zone_id'] = $this->config->get('shipping_free_geo_zone_id');
|
|
|
|
$this->load->model('localisation/geo_zone');
|
|
|
|
$data['geo_zones'] = $this->model_localisation_geo_zone->getGeoZones();
|
|
|
|
$data['shipping_free_status'] = $this->config->get('shipping_free_status');
|
|
$data['shipping_free_sort_order'] = $this->config->get('shipping_free_sort_order');
|
|
|
|
$data['header'] = $this->load->controller('common/header');
|
|
$data['column_left'] = $this->load->controller('common/column_left');
|
|
$data['footer'] = $this->load->controller('common/footer');
|
|
|
|
$this->response->setOutput($this->load->view('extension/opencart/shipping/free', $data));
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function save(): void {
|
|
$this->load->language('extension/opencart/shipping/free');
|
|
|
|
$json = [];
|
|
|
|
if (!$this->user->hasPermission('modify', 'extension/opencart/shipping/free')) {
|
|
$json['error'] = $this->language->get('error_permission');
|
|
}
|
|
|
|
if (!$json) {
|
|
$this->load->model('setting/setting');
|
|
|
|
$this->model_setting_setting->editSetting('shipping_free', $this->request->post);
|
|
|
|
$json['success'] = $this->language->get('text_success');
|
|
}
|
|
|
|
$this->response->addHeader('Content-Type: application/json');
|
|
$this->response->setOutput(json_encode($json));
|
|
}
|
|
} |