2011-08-10 17:11:11 +00:00
|
|
|
<?php
|
2013-02-20 17:14:46 +00:00
|
|
|
|
2014-09-20 19:44:32 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit; // Exit if accessed directly
|
|
|
|
}
|
2013-02-20 17:14:46 +00:00
|
|
|
|
2011-08-10 17:11:11 +00:00
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Free Shipping Method.
|
2012-08-14 22:43:48 +00:00
|
|
|
*
|
2015-11-03 13:31:20 +00:00
|
|
|
* A simple shipping method for free shipping.
|
2011-08-10 17:11:11 +00:00
|
|
|
*
|
2014-11-20 00:43:09 +00:00
|
|
|
* @class WC_Shipping_Free_Shipping
|
2015-05-15 13:16:44 +00:00
|
|
|
* @version 2.4.0
|
2014-11-20 00:43:09 +00:00
|
|
|
* @package WooCommerce/Classes/Shipping
|
|
|
|
* @author WooThemes
|
2012-08-14 22:43:48 +00:00
|
|
|
*/
|
2012-12-31 18:25:09 +00:00
|
|
|
class WC_Shipping_Free_Shipping extends WC_Shipping_Method {
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2016-01-06 19:10:54 +00:00
|
|
|
/**
|
|
|
|
* Min amount to be valid.
|
|
|
|
*
|
|
|
|
* @var float
|
|
|
|
*/
|
2015-02-03 16:03:28 +00:00
|
|
|
public $min_amount;
|
|
|
|
|
2016-01-06 19:10:54 +00:00
|
|
|
/**
|
|
|
|
* Requires option.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2015-02-03 16:03:28 +00:00
|
|
|
public $requires;
|
|
|
|
|
2012-08-14 22:43:48 +00:00
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Constructor.
|
2012-08-14 22:43:48 +00:00
|
|
|
*/
|
2015-05-15 13:16:44 +00:00
|
|
|
public function __construct() {
|
2013-08-12 21:09:04 +00:00
|
|
|
$this->id = 'free_shipping';
|
|
|
|
$this->method_title = __( 'Free Shipping', 'woocommerce' );
|
2012-02-06 11:16:06 +00:00
|
|
|
$this->init();
|
2013-08-12 21:09:04 +00:00
|
|
|
}
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2013-08-12 21:09:04 +00:00
|
|
|
/**
|
2016-01-06 19:10:54 +00:00
|
|
|
* Initialize free shipping.
|
2013-08-12 21:09:04 +00:00
|
|
|
*/
|
2015-05-15 13:16:44 +00:00
|
|
|
public function init() {
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2011-11-28 15:50:19 +00:00
|
|
|
// Load the settings.
|
2013-01-02 13:38:33 +00:00
|
|
|
$this->init_form_fields();
|
2011-11-28 15:50:19 +00:00
|
|
|
$this->init_settings();
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2011-11-28 15:50:19 +00:00
|
|
|
// Define user set variables
|
2013-08-12 21:09:04 +00:00
|
|
|
$this->enabled = $this->get_option( 'enabled' );
|
2012-12-31 12:07:43 +00:00
|
|
|
$this->title = $this->get_option( 'title' );
|
|
|
|
$this->min_amount = $this->get_option( 'min_amount', 0 );
|
|
|
|
$this->availability = $this->get_option( 'availability' );
|
|
|
|
$this->countries = $this->get_option( 'countries' );
|
|
|
|
$this->requires = $this->get_option( 'requires' );
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2011-11-28 15:50:19 +00:00
|
|
|
// Actions
|
2012-12-15 11:53:32 +00:00
|
|
|
add_action( 'woocommerce_update_options_shipping_' . $this->id, array( $this, 'process_admin_options' ) );
|
2013-08-12 21:09:04 +00:00
|
|
|
}
|
2011-11-28 15:50:19 +00:00
|
|
|
|
2013-08-12 21:09:04 +00:00
|
|
|
/**
|
2016-01-06 19:10:54 +00:00
|
|
|
* Initialize Gateway Settings Form Fields.
|
2013-08-12 21:09:04 +00:00
|
|
|
*/
|
2015-05-15 13:16:44 +00:00
|
|
|
public function init_form_fields() {
|
2013-08-12 21:09:04 +00:00
|
|
|
$this->form_fields = array(
|
2011-11-28 15:50:19 +00:00
|
|
|
'enabled' => array(
|
2014-11-20 00:43:09 +00:00
|
|
|
'title' => __( 'Enable/Disable', 'woocommerce' ),
|
|
|
|
'type' => 'checkbox',
|
|
|
|
'label' => __( 'Enable Free Shipping', 'woocommerce' ),
|
2015-08-13 21:02:41 +00:00
|
|
|
'default' => 'no'
|
2014-11-20 00:43:09 +00:00
|
|
|
),
|
2011-11-28 15:50:19 +00:00
|
|
|
'title' => array(
|
2014-11-20 00:43:09 +00:00
|
|
|
'title' => __( 'Method Title', 'woocommerce' ),
|
|
|
|
'type' => 'text',
|
|
|
|
'description' => __( 'This controls the title which the user sees during checkout.', 'woocommerce' ),
|
|
|
|
'default' => __( 'Free Shipping', 'woocommerce' ),
|
|
|
|
'desc_tip' => true,
|
|
|
|
),
|
2011-11-28 15:50:19 +00:00
|
|
|
'availability' => array(
|
2014-11-20 00:43:09 +00:00
|
|
|
'title' => __( 'Method availability', 'woocommerce' ),
|
|
|
|
'type' => 'select',
|
|
|
|
'default' => 'all',
|
2015-01-12 17:45:47 +00:00
|
|
|
'class' => 'availability wc-enhanced-select',
|
2014-11-20 00:43:09 +00:00
|
|
|
'options' => array(
|
|
|
|
'all' => __( 'All allowed countries', 'woocommerce' ),
|
|
|
|
'specific' => __( 'Specific Countries', 'woocommerce' )
|
|
|
|
)
|
|
|
|
),
|
2011-11-28 15:50:19 +00:00
|
|
|
'countries' => array(
|
2014-11-20 00:43:09 +00:00
|
|
|
'title' => __( 'Specific Countries', 'woocommerce' ),
|
|
|
|
'type' => 'multiselect',
|
2015-01-12 16:29:01 +00:00
|
|
|
'class' => 'wc-enhanced-select',
|
2014-11-20 00:43:09 +00:00
|
|
|
'css' => 'width: 450px;',
|
|
|
|
'default' => '',
|
|
|
|
'options' => WC()->countries->get_shipping_countries(),
|
|
|
|
'custom_attributes' => array(
|
|
|
|
'data-placeholder' => __( 'Select some countries', 'woocommerce' )
|
|
|
|
)
|
|
|
|
),
|
2012-11-28 19:54:04 +00:00
|
|
|
'requires' => array(
|
2014-11-20 00:43:09 +00:00
|
|
|
'title' => __( 'Free Shipping Requires...', 'woocommerce' ),
|
|
|
|
'type' => 'select',
|
2015-01-12 17:45:47 +00:00
|
|
|
'class' => 'wc-enhanced-select',
|
2014-11-20 00:43:09 +00:00
|
|
|
'default' => '',
|
|
|
|
'options' => array(
|
|
|
|
'' => __( 'N/A', 'woocommerce' ),
|
|
|
|
'coupon' => __( 'A valid free shipping coupon', 'woocommerce' ),
|
|
|
|
'min_amount' => __( 'A minimum order amount (defined below)', 'woocommerce' ),
|
|
|
|
'either' => __( 'A minimum order amount OR a coupon', 'woocommerce' ),
|
|
|
|
'both' => __( 'A minimum order amount AND a coupon', 'woocommerce' ),
|
|
|
|
)
|
|
|
|
),
|
2012-11-28 19:54:04 +00:00
|
|
|
'min_amount' => array(
|
2014-11-20 00:43:09 +00:00
|
|
|
'title' => __( 'Minimum Order Amount', 'woocommerce' ),
|
|
|
|
'type' => 'price',
|
|
|
|
'placeholder' => wc_format_localized_price( 0 ),
|
|
|
|
'description' => __( 'Users will need to spend this amount to get free shipping (if enabled above).', 'woocommerce' ),
|
|
|
|
'default' => '0',
|
|
|
|
'desc_tip' => true
|
|
|
|
)
|
|
|
|
);
|
2013-08-12 21:09:04 +00:00
|
|
|
}
|
2011-11-28 15:50:19 +00:00
|
|
|
|
2013-08-12 21:09:04 +00:00
|
|
|
/**
|
2016-01-06 19:10:54 +00:00
|
|
|
* Check if free shipping is available.
|
|
|
|
*
|
2015-05-15 13:16:44 +00:00
|
|
|
* @param array $package
|
2013-08-12 21:09:04 +00:00
|
|
|
* @return bool
|
|
|
|
*/
|
2015-05-15 13:16:44 +00:00
|
|
|
public function is_available( $package ) {
|
2014-11-20 00:43:09 +00:00
|
|
|
if ( 'no' == $this->enabled ) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2014-11-20 00:43:09 +00:00
|
|
|
if ( 'specific' == $this->availability ) {
|
2011-11-28 16:10:31 +00:00
|
|
|
$ship_to_countries = $this->countries;
|
2014-11-20 00:43:09 +00:00
|
|
|
} else {
|
2013-11-25 14:01:32 +00:00
|
|
|
$ship_to_countries = array_keys( WC()->countries->get_shipping_countries() );
|
2014-11-20 00:43:09 +00:00
|
|
|
}
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2014-11-20 00:43:09 +00:00
|
|
|
if ( is_array( $ship_to_countries ) && ! in_array( $package['destination']['country'], $ship_to_countries ) ) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2012-05-03 13:00:45 +00:00
|
|
|
// Enabled logic
|
2014-11-20 00:43:09 +00:00
|
|
|
$is_available = false;
|
|
|
|
$has_coupon = false;
|
2012-11-28 19:54:04 +00:00
|
|
|
$has_met_min_amount = false;
|
2012-01-06 11:36:19 +00:00
|
|
|
|
2012-11-28 19:54:04 +00:00
|
|
|
if ( in_array( $this->requires, array( 'coupon', 'either', 'both' ) ) ) {
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2013-11-25 14:01:32 +00:00
|
|
|
if ( $coupons = WC()->cart->get_coupons() ) {
|
2013-10-18 17:10:55 +00:00
|
|
|
foreach ( $coupons as $code => $coupon ) {
|
2014-11-20 00:43:09 +00:00
|
|
|
if ( $coupon->is_valid() && $coupon->enable_free_shipping() ) {
|
2012-11-28 19:54:04 +00:00
|
|
|
$has_coupon = true;
|
2014-11-20 00:43:09 +00:00
|
|
|
}
|
2012-05-03 13:00:45 +00:00
|
|
|
}
|
|
|
|
}
|
2012-11-28 19:54:04 +00:00
|
|
|
}
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2014-09-20 19:44:32 +00:00
|
|
|
if ( in_array( $this->requires, array( 'min_amount', 'either', 'both' ) ) && isset( WC()->cart->cart_contents_total ) ) {
|
2014-11-20 00:43:09 +00:00
|
|
|
if ( WC()->cart->prices_include_tax ) {
|
2013-10-16 17:06:14 +00:00
|
|
|
$total = WC()->cart->cart_contents_total + array_sum( WC()->cart->taxes );
|
2014-11-20 00:43:09 +00:00
|
|
|
} else {
|
2013-10-16 17:06:14 +00:00
|
|
|
$total = WC()->cart->cart_contents_total;
|
2014-11-20 00:43:09 +00:00
|
|
|
}
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2014-11-20 00:43:09 +00:00
|
|
|
if ( $total >= $this->min_amount ) {
|
2013-10-15 16:19:30 +00:00
|
|
|
$has_met_min_amount = true;
|
2014-11-20 00:43:09 +00:00
|
|
|
}
|
2012-11-28 19:54:04 +00:00
|
|
|
}
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2012-11-28 19:54:04 +00:00
|
|
|
switch ( $this->requires ) {
|
|
|
|
case 'min_amount' :
|
2014-11-20 00:43:09 +00:00
|
|
|
if ( $has_met_min_amount ) {
|
|
|
|
$is_available = true;
|
|
|
|
}
|
2012-11-28 19:54:04 +00:00
|
|
|
break;
|
|
|
|
case 'coupon' :
|
2014-11-20 00:43:09 +00:00
|
|
|
if ( $has_coupon ) {
|
|
|
|
$is_available = true;
|
|
|
|
}
|
2012-11-28 19:54:04 +00:00
|
|
|
break;
|
|
|
|
case 'both' :
|
2014-11-20 00:43:09 +00:00
|
|
|
if ( $has_met_min_amount && $has_coupon ) {
|
|
|
|
$is_available = true;
|
|
|
|
}
|
2012-11-28 19:54:04 +00:00
|
|
|
break;
|
|
|
|
case 'either' :
|
2014-11-20 00:43:09 +00:00
|
|
|
if ( $has_met_min_amount || $has_coupon ) {
|
|
|
|
$is_available = true;
|
|
|
|
}
|
2012-11-28 19:54:04 +00:00
|
|
|
break;
|
|
|
|
default :
|
2012-05-03 13:00:45 +00:00
|
|
|
$is_available = true;
|
2012-11-28 19:54:04 +00:00
|
|
|
break;
|
2012-05-03 13:00:45 +00:00
|
|
|
}
|
2012-08-14 22:43:48 +00:00
|
|
|
|
2014-05-06 08:34:25 +00:00
|
|
|
return apply_filters( 'woocommerce_shipping_' . $this->id . '_is_available', $is_available, $package );
|
2013-08-12 21:09:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-01-06 19:10:54 +00:00
|
|
|
* Calculate free shipping.
|
|
|
|
*
|
2013-08-12 21:09:04 +00:00
|
|
|
* @return array
|
|
|
|
*/
|
2015-05-15 13:16:44 +00:00
|
|
|
public function calculate_shipping() {
|
2013-08-12 21:09:04 +00:00
|
|
|
$args = array(
|
|
|
|
'id' => $this->id,
|
|
|
|
'label' => $this->title,
|
|
|
|
'cost' => 0,
|
|
|
|
'taxes' => false
|
|
|
|
);
|
|
|
|
$this->add_rate( $args );
|
|
|
|
}
|
2014-09-20 19:44:32 +00:00
|
|
|
}
|