diff options
Diffstat (limited to 'public/admin/controller/extension/shipping/weight.php')
-rw-r--r-- | public/admin/controller/extension/shipping/weight.php | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/public/admin/controller/extension/shipping/weight.php b/public/admin/controller/extension/shipping/weight.php new file mode 100644 index 0000000..2fbda41 --- /dev/null +++ b/public/admin/controller/extension/shipping/weight.php @@ -0,0 +1,103 @@ +<?php +class ControllerExtensionShippingWeight extends Controller { + private $error = array(); + + public function index() { + $this->load->language('extension/shipping/weight'); + + $this->document->setTitle($this->language->get('heading_title')); + + $this->load->model('setting/setting'); + + if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validate()) { + $this->model_setting_setting->editSetting('shipping_weight', $this->request->post); + + $this->session->data['success'] = $this->language->get('text_success'); + + $this->response->redirect($this->url->link('marketplace/extension', 'user_token=' . $this->session->data['user_token'] . '&type=shipping', true)); + } + + if (isset($this->error['warning'])) { + $data['error_warning'] = $this->error['warning']; + } else { + $data['error_warning'] = ''; + } + + $data['breadcrumbs'] = array(); + + $data['breadcrumbs'][] = array( + 'text' => $this->language->get('text_home'), + 'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'], true) + ); + + $data['breadcrumbs'][] = array( + 'text' => $this->language->get('text_extension'), + 'href' => $this->url->link('marketplace/extension', 'user_token=' . $this->session->data['user_token'] . '&type=shipping', true) + ); + + $data['breadcrumbs'][] = array( + 'text' => $this->language->get('heading_title'), + 'href' => $this->url->link('extension/shipping/weight', 'user_token=' . $this->session->data['user_token'], true) + ); + + $data['action'] = $this->url->link('extension/shipping/weight', 'user_token=' . $this->session->data['user_token'], true); + + $data['cancel'] = $this->url->link('marketplace/extension', 'user_token=' . $this->session->data['user_token'] . '&type=shipping', true); + + $this->load->model('localisation/geo_zone'); + + $geo_zones = $this->model_localisation_geo_zone->getGeoZones(); + + foreach ($geo_zones as $geo_zone) { + if (isset($this->request->post['shipping_weight_' . $geo_zone['geo_zone_id'] . '_rate'])) { + $data['shipping_weight_geo_zone_rate'][$geo_zone['geo_zone_id']] = $this->request->post['shipping_weight_' . $geo_zone['geo_zone_id'] . '_rate']; + } else { + $data['shipping_weight_geo_zone_rate'][$geo_zone['geo_zone_id']] = $this->config->get('shipping_weight_' . $geo_zone['geo_zone_id'] . '_rate'); + } + + if (isset($this->request->post['shipping_weight_' . $geo_zone['geo_zone_id'] . '_status'])) { + $data['shipping_weight_geo_zone_status'][$geo_zone['geo_zone_id']] = $this->request->post['shipping_weight_' . $geo_zone['geo_zone_id'] . '_status']; + } else { + $data['shipping_weight_geo_zone_status'][$geo_zone['geo_zone_id']] = $this->config->get('shipping_weight_' . $geo_zone['geo_zone_id'] . '_status'); + } + } + + $data['geo_zones'] = $geo_zones; + + if (isset($this->request->post['shipping_weight_tax_class_id'])) { + $data['shipping_weight_tax_class_id'] = $this->request->post['shipping_weight_tax_class_id']; + } else { + $data['shipping_weight_tax_class_id'] = $this->config->get('shipping_weight_tax_class_id'); + } + + $this->load->model('localisation/tax_class'); + + $data['tax_classes'] = $this->model_localisation_tax_class->getTaxClasses(); + + if (isset($this->request->post['shipping_weight_status'])) { + $data['shipping_weight_status'] = $this->request->post['shipping_weight_status']; + } else { + $data['shipping_weight_status'] = $this->config->get('shipping_weight_status'); + } + + if (isset($this->request->post['shipping_weight_sort_order'])) { + $data['shipping_weight_sort_order'] = $this->request->post['shipping_weight_sort_order']; + } else { + $data['shipping_weight_sort_order'] = $this->config->get('shipping_weight_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/shipping/weight', $data)); + } + + protected function validate() { + if (!$this->user->hasPermission('modify', 'extension/shipping/weight')) { + $this->error['warning'] = $this->language->get('error_permission'); + } + + return !$this->error; + } +}
\ No newline at end of file |