PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/youronlinestore.kerihosting.com/catalog/controller/affiliate/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/youronlinestore.kerihosting.com/catalog/controller/affiliate/payment.php |
<?php class ControllerAffiliatePayment extends Controller { private $error = array(); public function index() { if (!$this->affiliate->isLogged()) { $this->session->data['redirect'] = $this->url->link('affiliate/payment', '', 'SSL'); $this->redirect($this->url->link('affiliate/login', '', 'SSL')); } $this->language->load('affiliate/payment'); $this->document->setTitle($this->language->get('heading_title')); $this->load->model('affiliate/affiliate'); if ($this->request->server['REQUEST_METHOD'] == 'POST') { $this->model_affiliate_affiliate->editPayment($this->request->post); $this->session->data['success'] = $this->language->get('text_success'); $this->redirect($this->url->link('affiliate/account', '', 'SSL')); } $this->data['breadcrumbs'] = array(); $this->data['breadcrumbs'][] = array( 'text' => $this->language->get('text_home'), 'href' => $this->url->link('common/home'), 'separator' => false ); $this->data['breadcrumbs'][] = array( 'text' => $this->language->get('text_account'), 'href' => $this->url->link('affiliate/account', '', 'SSL'), 'separator' => $this->language->get('text_separator') ); $this->data['breadcrumbs'][] = array( 'text' => $this->language->get('text_payment'), 'href' => $this->url->link('affiliate/payment', '', 'SSL'), 'separator' => $this->language->get('text_separator') ); $this->data['heading_title'] = $this->language->get('heading_title'); $this->data['text_your_payment'] = $this->language->get('text_your_payment'); $this->data['text_cheque'] = $this->language->get('text_cheque'); $this->data['text_paypal'] = $this->language->get('text_paypal'); $this->data['text_bank'] = $this->language->get('text_bank'); $this->data['entry_tax'] = $this->language->get('entry_tax'); $this->data['entry_payment'] = $this->language->get('entry_payment'); $this->data['entry_cheque'] = $this->language->get('entry_cheque'); $this->data['entry_paypal'] = $this->language->get('entry_paypal'); $this->data['entry_bank_name'] = $this->language->get('entry_bank_name'); $this->data['entry_bank_branch_number'] = $this->language->get('entry_bank_branch_number'); $this->data['entry_bank_swift_code'] = $this->language->get('entry_bank_swift_code'); $this->data['entry_bank_account_name'] = $this->language->get('entry_bank_account_name'); $this->data['entry_bank_account_number'] = $this->language->get('entry_bank_account_number'); $this->data['button_continue'] = $this->language->get('button_continue'); $this->data['button_back'] = $this->language->get('button_back'); $this->data['action'] = $this->url->link('affiliate/payment', '', 'SSL'); if ($this->request->server['REQUEST_METHOD'] != 'POST') { $affiliate_info = $this->model_affiliate_affiliate->getAffiliate($this->affiliate->getId()); } if (isset($this->request->post['tax'])) { $this->data['tax'] = $this->request->post['tax']; } elseif (!empty($affiliate_info)) { $this->data['tax'] = $affiliate_info['tax']; } else { $this->data['tax'] = ''; } if (isset($this->request->post['payment'])) { $this->data['payment'] = $this->request->post['payment']; } elseif (!empty($affiliate_info)) { $this->data['payment'] = $affiliate_info['payment']; } else { $this->data['payment'] = 'cheque'; } if (isset($this->request->post['cheque'])) { $this->data['cheque'] = $this->request->post['cheque']; } elseif (!empty($affiliate_info)) { $this->data['cheque'] = $affiliate_info['cheque']; } else { $this->data['cheque'] = ''; } if (isset($this->request->post['paypal'])) { $this->data['paypal'] = $this->request->post['paypal']; } elseif (!empty($affiliate_info)) { $this->data['paypal'] = $affiliate_info['paypal']; } else { $this->data['paypal'] = ''; } if (isset($this->request->post['bank_name'])) { $this->data['bank_name'] = $this->request->post['bank_name']; } elseif (!empty($affiliate_info)) { $this->data['bank_name'] = $affiliate_info['bank_name']; } else { $this->data['bank_name'] = ''; } if (isset($this->request->post['bank_branch_number'])) { $this->data['bank_branch_number'] = $this->request->post['bank_branch_number']; } elseif (!empty($affiliate_info)) { $this->data['bank_branch_number'] = $affiliate_info['bank_branch_number']; } else { $this->data['bank_branch_number'] = ''; } if (isset($this->request->post['bank_swift_code'])) { $this->data['bank_swift_code'] = $this->request->post['bank_swift_code']; } elseif (!empty($affiliate_info)) { $this->data['bank_swift_code'] = $affiliate_info['bank_swift_code']; } else { $this->data['bank_swift_code'] = ''; } if (isset($this->request->post['bank_account_name'])) { $this->data['bank_account_name'] = $this->request->post['bank_account_name']; } elseif (!empty($affiliate_info)) { $this->data['bank_account_name'] = $affiliate_info['bank_account_name']; } else { $this->data['bank_account_name'] = ''; } if (isset($this->request->post['bank_account_number'])) { $this->data['bank_account_number'] = $this->request->post['bank_account_number']; } elseif (!empty($affiliate_info)) { $this->data['bank_account_number'] = $affiliate_info['bank_account_number']; } else { $this->data['bank_account_number'] = ''; } $this->data['back'] = $this->url->link('affiliate/account', '', 'SSL'); if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/affiliate/payment.tpl')) { $this->template = $this->config->get('config_template') . '/template/affiliate/payment.tpl'; } else { $this->template = 'default/template/affiliate/payment.tpl'; } $this->children = array( 'common/column_left', 'common/column_right', 'common/content_top', 'common/content_bottom', 'common/footer', 'common/header' ); $this->response->setOutput($this->render()); } } ?>