2015-12-18 14:24:34 +00:00
< ? php
2018-03-07 18:29:36 +00:00
/**
* Class WC_Shipping_Legacy_Free_Shipping file .
*
* @ package WooCommerce\Shipping
*/
2015-12-18 14:24:34 +00:00
if ( ! defined ( 'ABSPATH' ) ) {
2018-03-07 18:29:36 +00:00
exit ; // Exit if accessed directly.
2015-12-18 14:24:34 +00:00
}
/**
* Free Shipping Method .
*
2017-07-17 10:10:52 +00:00
* This class is here for backwards compatibility for methods existing before zones existed .
2015-12-18 14:24:34 +00:00
*
* @ deprecated 2.6 . 0
* @ version 2.4 . 0
* @ package WooCommerce / Classes / Shipping
*/
class WC_Shipping_Legacy_Free_Shipping extends WC_Shipping_Method {
2018-03-07 18:29:36 +00:00
/**
* Min amount to be valid .
*
* @ var float
*/
2015-12-18 14:24:34 +00:00
public $min_amount ;
2018-03-07 18:29:36 +00:00
/**
* Requires option .
*
* @ var string
*/
2015-12-18 14:24:34 +00:00
public $requires ;
/**
* Constructor .
*/
public function __construct () {
2018-03-07 18:29:36 +00:00
$this -> id = 'legacy_free_shipping' ;
$this -> method_title = __ ( 'Free shipping (legacy)' , 'woocommerce' );
/* translators: %s: Admin shipping settings URL */
2016-10-24 23:56:38 +00:00
$this -> method_description = '<strong>' . sprintf ( __ ( 'This method is deprecated in 2.6.0 and will be removed in future versions - we recommend disabling it and instead setting up a new rate within your <a href="%s">Shipping zones</a>.' , 'woocommerce' ), admin_url ( 'admin.php?page=wc-settings&tab=shipping' ) ) . '</strong>' ;
2015-12-18 14:24:34 +00:00
$this -> init ();
}
2016-04-28 11:36:49 +00:00
/**
* Process and redirect if disabled .
*/
public function process_admin_options () {
parent :: process_admin_options ();
2016-08-27 03:23:21 +00:00
if ( 'no' === $this -> settings [ 'enabled' ] ) {
2016-04-28 11:36:49 +00:00
wp_redirect ( admin_url ( 'admin.php?page=wc-settings&tab=shipping§ion=options' ) );
exit ;
}
}
2016-08-27 04:01:22 +00:00
2015-12-18 14:24:34 +00:00
/**
* Return the name of the option in the WP DB .
2018-03-07 18:04:56 +00:00
*
2015-12-18 14:24:34 +00:00
* @ since 2.6 . 0
* @ return string
*/
public function get_option_key () {
2018-03-07 18:29:36 +00:00
return $this -> plugin_id . 'free_shipping_settings' ;
2015-12-18 14:24:34 +00:00
}
/**
2018-03-07 18:29:36 +00:00
* Init function .
2015-12-18 14:24:34 +00:00
*/
public function init () {
// Load the settings.
$this -> init_form_fields ();
$this -> init_settings ();
2018-03-07 18:29:36 +00:00
// Define user set variables.
2018-03-07 18:04:56 +00:00
$this -> enabled = $this -> get_option ( 'enabled' );
$this -> title = $this -> get_option ( 'title' );
$this -> min_amount = $this -> get_option ( 'min_amount' , 0 );
2015-12-18 14:24:34 +00:00
$this -> availability = $this -> get_option ( 'availability' );
2018-03-07 18:04:56 +00:00
$this -> countries = $this -> get_option ( 'countries' );
$this -> requires = $this -> get_option ( 'requires' );
2015-12-18 14:24:34 +00:00
2018-03-07 18:29:36 +00:00
// Actions.
2015-12-18 14:24:34 +00:00
add_action ( 'woocommerce_update_options_shipping_' . $this -> id , array ( $this , 'process_admin_options' ) );
}
/**
* Initialise Gateway Settings Form Fields .
*/
public function init_form_fields () {
$this -> form_fields = array (
2018-03-07 18:04:56 +00:00
'enabled' => array (
'title' => __ ( 'Enable/Disable' , 'woocommerce' ),
'type' => 'checkbox' ,
'label' => __ ( 'Once disabled, this legacy method will no longer be available.' , 'woocommerce' ),
'default' => 'no' ,
2015-12-18 14:24:34 +00:00
),
2018-03-07 18:04:56 +00:00
'title' => array (
'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 ,
2015-12-18 14:24:34 +00:00
),
'availability' => array (
2018-03-07 18:04:56 +00:00
'title' => __ ( 'Method availability' , 'woocommerce' ),
'type' => 'select' ,
'default' => 'all' ,
'class' => 'availability wc-enhanced-select' ,
'options' => array (
'all' => __ ( 'All allowed countries' , 'woocommerce' ),
'specific' => __ ( 'Specific Countries' , 'woocommerce' ),
2016-08-27 01:46:45 +00:00
),
2015-12-18 14:24:34 +00:00
),
2018-03-07 18:04:56 +00:00
'countries' => array (
'title' => __ ( 'Specific countries' , 'woocommerce' ),
'type' => 'multiselect' ,
'class' => 'wc-enhanced-select' ,
'css' => 'width: 400px;' ,
'default' => '' ,
'options' => WC () -> countries -> get_shipping_countries (),
2015-12-18 14:24:34 +00:00
'custom_attributes' => array (
2016-08-27 01:46:45 +00:00
'data-placeholder' => __ ( 'Select some countries' , 'woocommerce' ),
),
2015-12-18 14:24:34 +00:00
),
2018-03-07 18:04:56 +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' ),
2016-08-27 01:46:45 +00:00
),
2015-12-18 14:24:34 +00:00
),
2018-03-07 18:04:56 +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 ,
2016-08-27 01:46:45 +00:00
),
2015-12-18 14:24:34 +00:00
);
}
/**
2018-03-07 18:29:36 +00:00
* Check if package is available .
2018-03-07 18:04:56 +00:00
*
2018-03-07 18:29:36 +00:00
* @ param array $package Package information .
2015-12-18 14:24:34 +00:00
* @ return bool
*/
public function is_available ( $package ) {
2018-03-07 18:29:36 +00:00
if ( 'no' === $this -> enabled ) {
2015-12-18 14:24:34 +00:00
return false ;
}
2018-03-07 18:29:36 +00:00
if ( 'specific' === $this -> availability ) {
2015-12-18 14:24:34 +00:00
$ship_to_countries = $this -> countries ;
} else {
$ship_to_countries = array_keys ( WC () -> countries -> get_shipping_countries () );
}
2018-03-07 18:29:36 +00:00
if ( is_array ( $ship_to_countries ) && ! in_array ( $package [ 'destination' ][ 'country' ], $ship_to_countries , true ) ) {
2015-12-18 14:24:34 +00:00
return false ;
}
2018-03-07 18:29:36 +00:00
// Enabled logic.
2015-12-18 14:24:34 +00:00
$is_available = false ;
$has_coupon = false ;
$has_met_min_amount = false ;
2018-03-07 18:29:36 +00:00
if ( in_array ( $this -> requires , array ( 'coupon' , 'either' , 'both' ), true ) ) {
$coupons = WC () -> cart -> get_coupons ();
2015-12-18 14:24:34 +00:00
2018-03-07 18:29:36 +00:00
if ( $coupons ) {
2015-12-18 14:24:34 +00:00
foreach ( $coupons as $code => $coupon ) {
2016-02-25 16:36:39 +00:00
if ( $coupon -> is_valid () && $coupon -> get_free_shipping () ) {
2015-12-18 14:24:34 +00:00
$has_coupon = true ;
}
}
}
}
2018-03-07 18:29:36 +00:00
if ( in_array ( $this -> requires , array ( 'min_amount' , 'either' , 'both' ), true ) ) {
2017-08-21 12:01:20 +00:00
$total = WC () -> cart -> get_displayed_subtotal ();
2017-12-15 13:39:35 +00:00
if ( WC () -> cart -> display_prices_including_tax () ) {
2017-08-21 12:01:20 +00:00
$total = round ( $total - ( WC () -> cart -> get_discount_total () + WC () -> cart -> get_discount_tax () ), wc_get_price_decimals () );
2015-12-18 14:24:34 +00:00
} else {
2017-08-21 12:01:20 +00:00
$total = round ( $total - WC () -> cart -> get_discount_total (), wc_get_price_decimals () );
2015-12-18 14:24:34 +00:00
}
if ( $total >= $this -> min_amount ) {
$has_met_min_amount = true ;
}
}
switch ( $this -> requires ) {
2018-03-07 18:04:56 +00:00
case 'min_amount' :
2015-12-18 14:24:34 +00:00
if ( $has_met_min_amount ) {
$is_available = true ;
}
2018-03-07 18:04:56 +00:00
break ;
case 'coupon' :
2015-12-18 14:24:34 +00:00
if ( $has_coupon ) {
$is_available = true ;
}
2018-03-07 18:04:56 +00:00
break ;
case 'both' :
2015-12-18 14:24:34 +00:00
if ( $has_met_min_amount && $has_coupon ) {
$is_available = true ;
}
2018-03-07 18:04:56 +00:00
break ;
case 'either' :
2015-12-18 14:24:34 +00:00
if ( $has_met_min_amount || $has_coupon ) {
$is_available = true ;
}
2018-03-07 18:04:56 +00:00
break ;
default :
2015-12-18 14:24:34 +00:00
$is_available = true ;
2018-03-07 18:04:56 +00:00
break ;
2015-12-18 14:24:34 +00:00
}
2017-08-11 20:36:18 +00:00
return apply_filters ( 'woocommerce_shipping_' . $this -> id . '_is_available' , $is_available , $package , $this );
2015-12-18 14:24:34 +00:00
}
/**
2018-03-07 18:29:36 +00:00
* Calculate shipping .
*
* @ param array $package Package information .
2015-12-18 14:24:34 +00:00
*/
2015-12-18 17:10:58 +00:00
public function calculate_shipping ( $package = array () ) {
2015-12-18 14:24:34 +00:00
$args = array (
2018-03-07 18:04:56 +00:00
'id' => $this -> id ,
2016-04-20 14:03:10 +00:00
'label' => $this -> title ,
2018-03-07 18:04:56 +00:00
'cost' => 0 ,
2016-04-20 14:03:10 +00:00
'taxes' => false ,
'package' => $package ,
2015-12-18 14:24:34 +00:00
);
$this -> add_rate ( $args );
}
}