<?php 
class ModelPaymentPayplugh extends Model {
  	public function getMethod($address, $total) {
  	
		if (substr(VERSION, 0, 1) == '1') {
			$this->load->language('payment/payplugh');
		} 	
		
		if (($this->config->get('payplugh_status')) && 
    (sprintf("%0.0f",$this->cart->getTotal() ) >= $this->config->get('payplugh_montant_mini')) &&
    (sprintf("%0.0f",$this->cart->getTotal() ) <= $this->config->get('payplugh_montant_maxi')) ){

     $jsonAnswer = json_decode(html_entity_decode($this->config->get('payplugh_cfg_site')));

     if ((sprintf("%0.0f",$this->cart->getTotal() ) >= $jsonAnswer->amount_min) &&
        (sprintf("%0.0f",$this->cart->getTotal() ) <= $jsonAnswer->amount_max) ){

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

		
		$method_data = array();
	
		if ($status) {  
      		$method_data = array( 
        		'code'         => 'payplugh',
        		'title'      => $this->language->get('text_title'),
		 		'sort_order' => $this->config->get('payplugh_sort_order')
      		);
    	}
   
    	return $method_data;
  	}
}
?>
