Файл: upload-2031-rs1/catalog/model/payment/free_checkout.php
Строк: 10
<?php
class ModelPaymentFreeCheckout extends Model {
public function getMethod($address, $total) {
$this->load->language('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('free_checkout_sort_order')
);
}
return $method_data;
}
}