Файл: upload/catalog/controller/payment/payza.php
Строк: 52
<?php
class ControllerPaymentPayza extends Controller {
public function index() {
$data['button_confirm'] = $this->language->get('button_confirm');
$this->load->model('checkout/order');
$order_info = $this->model_checkout_order->getOrder($this->session->data['order_id']);
$data['action'] = 'https://secure.payza.com/checkout';
$data['ap_merchant'] = $this->config->get('payza_merchant');
$data['ap_amount'] = $this->currency->format($order_info['total'], $order_info['currency_code'], $order_info['currency_value'], false);
$data['ap_currency'] = $order_info['currency_code'];
$data['ap_purchasetype'] = 'Item';
$data['ap_itemname'] = $this->config->get('config_name') . ' - #' . $this->session->data['order_id'];
$data['ap_itemcode'] = $this->session->data['order_id'];
$data['ap_returnurl'] = $this->url->link('checkout/success');
$data['ap_cancelurl'] = $this->url->link('checkout/checkout', '', 'SSL');
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/payment/payza.tpl')) {
return $this->load->view($this->config->get('config_template') . '/template/payment/payza.tpl', $data);
} else {
return $this->load->view('default/template/payment/payza.tpl', $data);
}
}
public function callback() {
if (isset($this->request->post['ap_securitycode']) && ($this->request->post['ap_securitycode'] == $this->config->get('payza_security'))) {
$this->load->model('checkout/order');
$this->model_checkout_order->addOrderHistory($this->request->post['ap_itemcode'], $this->config->get('payza_order_status_id'));
}
}
}