Ekdant-Online-Store/extension/opencart/catalog/model/payment/cheque.php
2024-08-06 18:06:00 +05:45

52 lines
1.3 KiB
PHP

<?php
namespace Opencart\Catalog\Model\Extension\Opencart\Payment;
/**
* Class Cheque
*
* @package
*/
class Cheque extends \Opencart\System\Engine\Model {
/**
* @param array $address
*
* @return array
*/
public function getMethods(array $address = []): array {
$this->load->language('extension/opencart/payment/cheque');
if ($this->cart->hasSubscription()) {
$status = false;
} elseif (!$this->config->get('config_checkout_payment_address')) {
$status = true;
} elseif (!$this->config->get('payment_cheque_geo_zone_id')) {
$status = true;
} else {
$query = $this->db->query("SELECT * FROM `" . DB_PREFIX . "zone_to_geo_zone` WHERE `geo_zone_id` = '" . (int)$this->config->get('payment_cheque_geo_zone_id') . "' AND `country_id` = '" . (int)$address['country_id'] . "' AND (`zone_id` = '" . (int)$address['zone_id'] . "' OR `zone_id` = '0')");
if ($query->num_rows) {
$status = true;
} else {
$status = false;
}
}
$method_data = [];
if ($status) {
$option_data['cheque'] = [
'code' => 'cheque.cheque',
'name' => $this->language->get('heading_title')
];
$method_data = [
'code' => 'cheque',
'name' => $this->language->get('heading_title'),
'option' => $option_data,
'sort_order' => $this->config->get('payment_cheque_sort_order')
];
}
return $method_data;
}
}