load->language('payment/google_checkout'); $this->document->title = $this->language->get('heading_title'); $this->load->model('setting/setting'); if (($this->request->server['REQUEST_METHOD'] == 'POST') && ($this->validate())) { $this->load->model('setting/setting'); $this->model_setting_setting->editSetting('google_checkout', $this->request->post); $this->session->data['success'] = $this->language->get('text_success'); $this->redirect(HTTPS_SERVER . 'index.php?route=extension/payment&token=' . $this->session->data['token']); } $this->data['heading_title'] = $this->language->get('heading_title'); $this->data['text_enabled'] = $this->language->get('text_enabled'); $this->data['text_disabled'] = $this->language->get('text_disabled'); $this->data['text_yes'] = $this->language->get('text_yes'); $this->data['text_no'] = $this->language->get('text_no'); $this->data['entry_merchant_id'] = $this->language->get('entry_merchant_id'); $this->data['entry_merchant_key'] = $this->language->get('entry_merchant_key'); $this->data['entry_test'] = $this->language->get('entry_test'); $this->data['entry_status'] = $this->language->get('entry_status'); $this->data['help_encryption'] = $this->language->get('help_encryption'); $this->data['button_save'] = $this->language->get('button_save'); $this->data['button_cancel'] = $this->language->get('button_cancel'); $this->data['tab_general'] = $this->language->get('tab_general'); if (isset($this->error['warning'])) { $this->data['error_warning'] = $this->error['warning']; } else { $this->data['error_warning'] = ''; } if (isset($this->error['merchant_id'])) { $this->data['error_merchant_id'] = $this->error['merchant_id']; } else { $this->data['error_merchant_id'] = ''; } if (isset($this->error['merchant_key'])) { $this->data['error_merchant_key'] = $this->error['merchant_key']; } else { $this->data['error_merchant_key'] = ''; } $this->document->breadcrumbs = array(); $this->document->breadcrumbs[] = array( 'href' => HTTPS_SERVER . 'index.php?route=common/home&token=' . $this->session->data['token'], 'text' => $this->language->get('text_home'), 'separator' => FALSE ); $this->document->breadcrumbs[] = array( 'href' => HTTPS_SERVER . 'index.php?route=extension/payment&token=' . $this->session->data['token'], 'text' => $this->language->get('text_payment'), 'separator' => ' :: ' ); $this->document->breadcrumbs[] = array( 'href' => HTTPS_SERVER . 'index.php?route=payment/google_checkout&token=' . $this->session->data['token'], 'text' => $this->language->get('heading_title'), 'separator' => ' :: ' ); $this->data['action'] = HTTPS_SERVER . 'index.php?route=payment/google_checkout&token=' . $this->session->data['token']; $this->data['cancel'] = HTTPS_SERVER . 'index.php?route=extension/payment&token=' . $this->session->data['token']; if (isset($this->request->post['google_checkout_merchant_id'])) { $this->data['google_checkout_merchant_id'] = $this->request->post['google_checkout_merchant_id']; } else { $this->data['google_checkout_merchant_id'] = $this->config->get('google_checkout_merchant_id'); } if (isset($this->request->post['google_checkout_merchant_key'])) { $this->data['google_checkout_merchant_key'] = $this->request->post['google_checkout_merchant_key']; } else { $this->data['google_checkout_merchant_key'] = $this->config->get('google_checkout_merchant_key'); } if (isset($this->request->post['google_checkout_test'])) { $this->data['google_checkout_test'] = $this->request->post['google_checkout_test']; } else { $this->data['google_checkout_test'] = $this->config->get('google_checkout_test'); } if (isset($this->request->post['google_checkout_status'])) { $this->data['google_checkout_status'] = $this->request->post['google_checkout_status']; } else { $this->data['google_checkout_status'] = $this->config->get('google_checkout_status'); } $this->id = 'content'; $this->template = 'payment/google_checkout.tpl'; $this->children = array( 'common/header', 'common/footer' ); $this->response->setOutput($this->render(TRUE), $this->config->get('config_compression')); } private function validate() { if (!$this->user->hasPermission('modify', 'payment/google_checkout')) { $this->error['warning'] = $this->language->get('error_permission'); } if (!$this->request->post['google_checkout_merchant_id']) { $this->error['merchant_id'] = $this->language->get('error_merchant_id'); } if (!$this->request->post['google_checkout_merchant_key']) { $this->error['merchant_key'] = $this->language->get('error_merchant_key'); } if (!$this->error) { return TRUE; } else { return FALSE; } } } ?>