diff options
Diffstat (limited to 'public/catalog/model/extension/payment/paymate.php')
-rw-r--r-- | public/catalog/model/extension/payment/paymate.php | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/public/catalog/model/extension/payment/paymate.php b/public/catalog/model/extension/payment/paymate.php new file mode 100644 index 0000000..36d7e65 --- /dev/null +++ b/public/catalog/model/extension/payment/paymate.php @@ -0,0 +1,43 @@ +<?php +class ModelExtensionPaymentPayMate extends Model { + public function getMethod($address, $total) { + $this->load->language('extension/payment/paymate'); + + $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "zone_to_geo_zone WHERE geo_zone_id = '" . (int)$this->config->get('payment_paymate_geo_zone_id') . "' AND country_id = '" . (int)$address['country_id'] . "' AND (zone_id = '" . (int)$address['zone_id'] . "' OR zone_id = '0')"); + + if ($this->config->get('payment_paymate_total') > 0 && $this->config->get('payment_paymate_total') > $total) { + $status = false; + } elseif (!$this->config->get('payment_paymate_geo_zone_id')) { + $status = true; + } elseif ($query->num_rows) { + $status = true; + } else { + $status = false; + } + + $currencies = array( + 'AUD', + 'NZD', + 'USD', + 'EUR', + 'GBP' + ); + + if (!in_array(strtoupper($this->session->data['currency']), $currencies)) { + $status = false; + } + + $method_data = array(); + + if ($status) { + $method_data = array( + 'code' => 'paymate', + 'title' => $this->language->get('text_title'), + 'terms' => '', + 'sort_order' => $this->config->get('payment_paymate_sort_order') + ); + } + + return $method_data; + } +} |