<?php
//-----------------------------------------
// Author: Qphoria@gmail.com
// Web: http://www.theQdomain.com/
//-----------------------------------------
class ModelPaymentOfflineCC extends Model {
  	public function getMethod($address) {

		$name = basename(__FILE__, '.php');

		$this->load->language('payment/' . $name);

		if ($this->config->get($name . '_status')) {

			$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "zone_to_geo_zone WHERE geo_zone_id = '" . (int)$this->config->get($name . '_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($name . '_geo_zone_id')) {
        		$status = TRUE;
      		} elseif ($query->num_rows) {
      		  	$status = TRUE;
      		} else {
     	  		$status = FALSE;
			}
      	} else {
			$status = FALSE;
		}

		$method_data = array();

		if ($status) {
      		$method_data = array(
        		'id'		 => $name, //v14x
				'code'		 => $name, //v15x
        		'title'      => $this->language->get('text_title'),
				'sort_order' => $this->config->get($name . '_sort_order')
      		);
    	}

    	return $method_data;
  	}
}
?>