blob: 6a91c0b4c57fb2090a80ac5699eddc0e0a12d69f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
class ModelExtensionPaymentFreeCheckout extends Model {
public function getMethod($address, $total) {
$this->load->language('extension/payment/free_checkout');
if ($total <= 0.00) {
$status = true;
} else {
$status = false;
}
$method_data = array();
if ($status) {
$method_data = array(
'code' => 'free_checkout',
'title' => $this->language->get('text_title'),
'terms' => '',
'sort_order' => $this->config->get('payment_free_checkout_sort_order')
);
}
return $method_data;
}
}
|