177 lines
4.7 KiB
PHP
177 lines
4.7 KiB
PHP
<?php
|
|
/**
|
|
* WooCommerce Shipping Method Class
|
|
*
|
|
* Extended by shipping methods to handle shipping calculations etc.
|
|
*
|
|
* @class WC_Shipping_Method
|
|
* @package WooCommerce
|
|
* @category Shipping
|
|
* @author WooThemes
|
|
*/
|
|
class WC_Shipping_Method extends WC_Settings_API {
|
|
|
|
var $id;
|
|
var $method_title; // Method title
|
|
var $title; // User set title
|
|
var $tax_status = 'taxable';
|
|
var $availability;
|
|
var $countries;
|
|
var $type;
|
|
var $fee = 0;
|
|
var $min_amount = null;
|
|
var $enabled = false;
|
|
|
|
/**
|
|
* Rates
|
|
*
|
|
* This is an array of rates - methods must populate this array to register shipping costs
|
|
*/
|
|
var $rates = array(); // This is an array of rates - methods must populate this array to register shipping costs
|
|
|
|
/**
|
|
* Add a rate
|
|
*
|
|
* A a shipping rate. If taxes are not set they will be calculated based on cost.
|
|
*/
|
|
function add_rate( $args = array() ) {
|
|
global $woocommerce;
|
|
|
|
$defaults = array(
|
|
'id' => '', // ID for the rate
|
|
'label' => '', // Label for the rate
|
|
'cost' => '0', // Amount or array of costs (per item shipping)
|
|
'taxes' => '', // Pass taxes, nothing to have it calculated for you, or 'false' to calc no tax
|
|
'calc_tax' => 'per_order' // Calc tax per_order or per_item. Per item needs an array of costs
|
|
);
|
|
|
|
$args = wp_parse_args( $args, $defaults );
|
|
|
|
extract( $args );
|
|
|
|
// Id and label are required
|
|
if (!$id || !$label) return;
|
|
|
|
// Handle cost
|
|
$total_cost = (is_array($cost)) ? array_sum($cost) : $cost;
|
|
|
|
// Taxes - if not an array and not set to false, calc tax based on cost and passed calc_tax variable
|
|
// This saves shipping methods having to do compelex tax calculations
|
|
if (!is_array($taxes) && $taxes!==false && $total_cost>0 && get_option('woocommerce_calc_taxes')=='yes' && $this->tax_status=='taxable' ) :
|
|
|
|
$_tax = new WC_Tax();
|
|
$taxes = array();
|
|
|
|
switch ($calc_tax) :
|
|
|
|
case "per_item" :
|
|
|
|
// If we have an array of costs we can look up each items tax class and add tax accordingly
|
|
if (is_array($cost)) :
|
|
|
|
$cart = $woocommerce->cart->get_cart();
|
|
|
|
foreach ($cost as $cost_key => $amount) :
|
|
|
|
if (!isset($cart[$cost_key])) continue;
|
|
|
|
$_product = $cart[$cost_key]['data'];
|
|
|
|
$rates = $_tax->get_shipping_tax_rates( $_product->get_tax_class() );
|
|
$item_taxes = $_tax->calc_shipping_tax( $amount, $rates );
|
|
|
|
// Sum the item taxes
|
|
foreach (array_keys($taxes + $item_taxes) as $key) :
|
|
$taxes[$key] = (isset($item_taxes[$key]) ? $item_taxes[$key] : 0) + (isset($taxes[$key]) ? $taxes[$key] : 0);
|
|
endforeach;
|
|
|
|
endforeach;
|
|
|
|
endif;
|
|
|
|
break;
|
|
|
|
default :
|
|
|
|
$rates = $_tax->get_shipping_tax_rates();
|
|
$taxes = $_tax->calc_shipping_tax( $total_cost, $rates );
|
|
|
|
break;
|
|
|
|
endswitch;
|
|
|
|
endif;
|
|
|
|
$this->rates[] = new WC_Shipping_Rate( $id, $label, $total_cost, $taxes );
|
|
}
|
|
|
|
function is_available() {
|
|
global $woocommerce;
|
|
|
|
if ($this->enabled=="no")
|
|
return false;
|
|
|
|
if (isset($woocommerce->cart->cart_contents_total) && isset($this->min_amount) && $this->min_amount && $this->min_amount > $woocommerce->cart->cart_contents_total)
|
|
return false;
|
|
|
|
$ship_to_countries = '';
|
|
|
|
if ($this->availability == 'specific') :
|
|
$ship_to_countries = $this->countries;
|
|
else :
|
|
if (get_option('woocommerce_allowed_countries')=='specific') :
|
|
$ship_to_countries = get_option('woocommerce_specific_allowed_countries');
|
|
endif;
|
|
endif;
|
|
|
|
if (is_array($ship_to_countries)) :
|
|
if (!in_array($woocommerce->customer->get_shipping_country(), $ship_to_countries)) return false;
|
|
endif;
|
|
|
|
return apply_filters( 'woocommerce_shipping_' . $this->id . '_is_available', true );
|
|
}
|
|
|
|
function get_fee( $fee, $total ) {
|
|
if (strstr($fee, '%')) :
|
|
return ($total/100) * str_replace('%', '', $fee);
|
|
else :
|
|
return $fee;
|
|
endif;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* WooCommerce Shipping Rate Class
|
|
*
|
|
* Simple Class for storing rates.
|
|
*/
|
|
class WC_Shipping_Rate {
|
|
|
|
var $id = '';
|
|
var $label = '';
|
|
var $cost = 0;
|
|
var $taxes = array();
|
|
|
|
public function __construct( $id, $label, $cost, $taxes ) {
|
|
$this->id = $id;
|
|
$this->label = $label;
|
|
$this->cost = $cost;
|
|
$this->taxes = ($taxes) ? $taxes : array();
|
|
}
|
|
|
|
function get_shipping_tax() {
|
|
$taxes = 0;
|
|
if ($this->taxes && sizeof($this->taxes)>0) :
|
|
$taxes = array_sum($this->taxes);
|
|
endif;
|
|
return $taxes;
|
|
}
|
|
}
|
|
|
|
/** Depreciated */
|
|
class woocommerce_shipping_method extends WC_Shipping_Method {
|
|
public function __construct() {
|
|
_deprecated_function( 'woocommerce_shipping_method', '1.4', 'WC_Shipping_Method()' );
|
|
parent::__construct();
|
|
}
|
|
} |