woocommerce/includes/shipping/free-shipping/class-wc-shipping-free-ship...

213 lines
5.9 KiB
PHP
Raw Normal View History

2011-08-10 17:11:11 +00:00
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
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
* @version 2.6.0
2014-11-20 00:43:09 +00:00
* @package WooCommerce/Classes/Shipping
* @author WooThemes
2012-08-14 22:43:48 +00:00
*/
class WC_Shipping_Free_Shipping extends WC_Shipping_Method {
2012-08-14 22:43:48 +00:00
/**
* Min amount to be valid.
*
* @var integer
*/
public $min_amount = 0;
2015-02-03 16:03:28 +00:00
/**
* Requires option.
*
* @var string
*/
public $requires = '';
2015-02-03 16:03:28 +00:00
/**
* Constructor.
*
* @param int $instance_id Shipping method instance.
*/
public function __construct( $instance_id = 0 ) {
$this->id = 'free_shipping';
$this->instance_id = absint( $instance_id );
$this->method_title = __( 'Free shipping', 'woocommerce' );
$this->method_description = __( 'Free shipping is a special method which can be triggered with coupons and minimum spends.', 'woocommerce' );
$this->supports = array(
2015-12-14 16:56:39 +00:00
'shipping-zones',
2016-03-24 18:31:39 +00:00
'instance-settings',
'instance-settings-modal',
);
2015-12-14 16:56:39 +00:00
$this->init();
}
/**
* Initialize free shipping.
*/
public function init() {
// Load the settings.
$this->init_form_fields();
$this->init_settings();
// Define user set variables.
$this->title = $this->get_option( 'title' );
$this->min_amount = $this->get_option( 'min_amount', 0 );
$this->requires = $this->get_option( 'requires' );
// Actions.
2015-12-16 13:52:46 +00:00
add_action( 'woocommerce_update_options_shipping_' . $this->id, array( $this, 'process_admin_options' ) );
2015-12-14 16:56:39 +00:00
}
/**
* Init form fields.
*/
public function init_form_fields() {
$this->instance_form_fields = array(
2011-11-28 15:50:19 +00:00
'title' => array(
'title' => __( 'Title', 'woocommerce' ),
'type' => 'text',
'description' => __( 'This controls the title which the user sees during checkout.', 'woocommerce' ),
'default' => $this->method_title,
'desc_tip' => true,
2014-11-20 00:43:09 +00:00
),
2012-11-28 19:54:04 +00:00
'requires' => array(
'title' => __( 'Free shipping requires...', 'woocommerce' ),
'type' => 'select',
'class' => 'wc-enhanced-select',
'default' => '',
'options' => array(
'' => __( 'N/A', 'woocommerce' ),
'coupon' => __( 'A valid free shipping coupon', 'woocommerce' ),
'min_amount' => __( 'A minimum order amount', 'woocommerce' ),
'either' => __( 'A minimum order amount OR a coupon', 'woocommerce' ),
'both' => __( 'A minimum order amount AND a coupon', 'woocommerce' ),
),
2014-11-20 00:43:09 +00:00
),
2012-11-28 19:54:04 +00:00
'min_amount' => array(
'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,
),
2014-11-20 00:43:09 +00:00
);
}
/**
* Get setting form fields for instances of this shipping method within zones.
*
* @return array
*/
public function get_instance_form_fields() {
if ( is_admin() ) {
wc_enqueue_js( "
jQuery( function( $ ) {
function wcFreeShippingShowHideMinAmountField( el ) {
var form = $( el ).closest( 'form' );
var minAmountField = $( '#woocommerce_free_shipping_min_amount', form ).closest( 'tr' );
if ( 'coupon' === $( el ).val() || '' === $( el ).val() ) {
minAmountField.hide();
} else {
minAmountField.show();
}
}
2016-07-19 12:33:56 +00:00
$( document.body ).on( 'change', '#woocommerce_free_shipping_requires', function() {
wcFreeShippingShowHideMinAmountField( this );
});
2016-07-19 12:33:56 +00:00
// Change while load.
$( '#woocommerce_free_shipping_requires' ).change();
$( document.body ).on( 'wc_backbone_modal_loaded', function( evt, target ) {
if ( 'wc-modal-shipping-method-settings' === target ) {
wcFreeShippingShowHideMinAmountField( $( '#wc-backbone-modal-dialog #woocommerce_free_shipping_requires', evt.currentTarget ) );
}
} );
});
" );
}
return parent::get_instance_form_fields();
}
2011-11-28 15:50:19 +00:00
/**
* See if free shipping is available based on the package and cart.
*
* @param array $package Shipping package.
* @return bool
*/
2015-05-15 13:16:44 +00:00
public function is_available( $package ) {
2014-11-20 00:43:09 +00:00
$has_coupon = false;
2012-11-28 19:54:04 +00:00
$has_met_min_amount = false;
2012-11-28 19:54:04 +00:00
if ( in_array( $this->requires, array( 'coupon', 'either', 'both' ) ) ) {
2013-11-25 14:01:32 +00:00
if ( $coupons = WC()->cart->get_coupons() ) {
foreach ( $coupons as $code => $coupon ) {
if ( $coupon->is_valid() && $coupon->get_free_shipping() ) {
2012-11-28 19:54:04 +00:00
$has_coupon = true;
break;
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
if ( in_array( $this->requires, array( 'min_amount', 'either', 'both' ) ) ) {
$total = WC()->cart->get_displayed_subtotal();
2012-08-14 22:43:48 +00:00
if ( 'incl' === WC()->cart->tax_display_cart ) {
2017-08-18 11:51:45 +00:00
$total = round( $total - ( WC()->cart->get_discount_total() + WC()->cart->get_discount_tax() ), wc_get_price_decimals() );
} else {
2017-08-18 11:51:45 +00:00
$total = round( $total - WC()->cart->get_discount_total(), wc_get_price_decimals() );
}
2014-11-20 00:43:09 +00:00
if ( $total >= $this->min_amount ) {
$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' :
$is_available = $has_met_min_amount;
break;
2012-11-28 19:54:04 +00:00
case 'coupon' :
$is_available = $has_coupon;
break;
2012-11-28 19:54:04 +00:00
case 'both' :
$is_available = $has_met_min_amount && $has_coupon;
break;
2012-11-28 19:54:04 +00:00
case 'either' :
$is_available = $has_met_min_amount || $has_coupon;
break;
2012-11-28 19:54:04 +00:00
default :
2012-05-03 13:00:45 +00:00
$is_available = true;
break;
2012-05-03 13:00:45 +00:00
}
2012-08-14 22:43:48 +00:00
return apply_filters( 'woocommerce_shipping_' . $this->id . '_is_available', $is_available, $package, $this );
}
/**
* Called to calculate shipping rates for this method. Rates can be added using the add_rate() method.
*
* @uses WC_Shipping_Method::add_rate()
*
* @param array $package Shipping package.
*/
2015-12-18 17:10:58 +00:00
public function calculate_shipping( $package = array() ) {
$this->add_rate( array(
2016-04-20 14:03:10 +00:00
'label' => $this->title,
'cost' => 0,
2016-04-20 14:03:10 +00:00
'taxes' => false,
'package' => $package,
) );
}
}