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

248 lines
6.6 KiB
PHP
Raw Normal View History

2011-08-10 17:11:11 +00:00
<?php
2013-02-20 17:14:46 +00:00
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2011-08-10 17:11:11 +00:00
/**
* Free Shipping Method
2012-08-14 22:43:48 +00:00
*
2011-08-10 17:11:11 +00:00
* A simple shipping method for free shipping
*
* @class WC_Shipping_Free_Shipping
* @version 2.0.0
2012-08-14 22:43:48 +00:00
* @package WooCommerce/Classes/Shipping
* @author WooThemes
*/
class WC_Shipping_Free_Shipping extends WC_Shipping_Method {
2012-08-14 22:43:48 +00:00
/**
* __construct function.
*
* @access public
* @return void
*/
function __construct() {
2011-08-10 17:11:11 +00:00
$this->id = 'free_shipping';
2012-10-16 09:45:33 +00:00
$this->method_title = __( 'Free Shipping', 'woocommerce' );
$this->init();
2012-08-14 22:43:48 +00:00
}
/**
* init function.
*
* @access public
* @return void
*/
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
$this->enabled = $this->get_option( 'enabled' );
$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
add_action( 'woocommerce_update_options_shipping_' . $this->id, array( $this, 'process_admin_options' ) );
}
2011-11-28 15:50:19 +00:00
2012-08-14 22:43:48 +00:00
/**
2011-11-28 15:50:19 +00:00
* Initialise Gateway Settings Form Fields
2012-08-14 22:43:48 +00:00
*
* @access public
* @return void
2011-11-28 15:50:19 +00:00
*/
function init_form_fields() {
global $woocommerce;
2012-08-14 22:43:48 +00:00
// Backwards compat
if ( $this->get_option( 'requires_coupon' ) && $this->min_amount )
$default_requires = 'either';
elseif ( $this->get_option( 'requires_coupon' ) )
$default_requires = 'coupon';
elseif ( $this->min_amount )
$default_requires = 'min_amount';
else
$default_requires = '';
2011-11-28 15:50:19 +00:00
$this->form_fields = array(
'enabled' => array(
2012-08-14 22:43:48 +00:00
'title' => __( 'Enable/Disable', 'woocommerce' ),
'type' => 'checkbox',
'label' => __( 'Enable Free Shipping', 'woocommerce' ),
2011-11-28 15:50:19 +00:00
'default' => 'yes'
2012-08-14 22:43:48 +00:00
),
2011-11-28 15:50:19 +00:00
'title' => array(
2012-08-14 22:43:48 +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(
2012-08-14 22:43:48 +00:00
'title' => __( 'Method availability', 'woocommerce' ),
'type' => 'select',
2011-11-28 15:50:19 +00:00
'default' => 'all',
'class' => 'availability',
'options' => array(
2012-10-16 09:45:33 +00:00
'all' => __( 'All allowed countries', 'woocommerce' ),
'specific' => __( 'Specific Countries', 'woocommerce' )
2011-11-28 15:50:19 +00:00
)
),
'countries' => array(
2012-08-14 22:43:48 +00:00
'title' => __( 'Specific Countries', 'woocommerce' ),
'type' => 'multiselect',
2011-11-28 15:50:19 +00:00
'class' => 'chosen_select',
2011-12-07 19:45:29 +00:00
'css' => 'width: 450px;',
2011-11-28 15:50:19 +00:00
'default' => '',
'options' => $woocommerce->countries->get_shipping_countries()
2012-11-28 19:54:04 +00:00
),
'requires' => array(
'title' => __( 'Free Shipping Requires...', 'woocommerce' ),
'type' => 'select',
'default' => $default_requires,
2012-11-28 19:54:04 +00:00
'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' ),
)
),
'min_amount' => array(
'title' => __( 'Minimum Order Amount', 'woocommerce' ),
'type' => 'number',
'custom_attributes' => array(
'step' => 'any',
'min' => '0'
),
'description' => __( 'Users will need to spend this amount to get free shipping (if enabled above).', 'woocommerce' ),
'default' => '0',
'desc_tip' => true,
'placeholder' => '0.00'
2012-08-14 22:43:48 +00:00
)
2011-11-28 15:50:19 +00:00
);
2012-08-14 22:43:48 +00:00
}
2011-11-28 15:50:19 +00:00
/**
2012-08-14 22:43:48 +00:00
* Admin Panel Options
2011-11-28 15:50:19 +00:00
* - Options for bits like 'title' and availability on a country-by-country basis
*
* @since 1.0.0
2012-08-14 22:43:48 +00:00
* @access public
* @return void
2011-11-28 15:50:19 +00:00
*/
public function admin_options() {
2011-08-10 17:11:11 +00:00
?>
2012-10-16 09:45:33 +00:00
<h3><?php _e( 'Free Shipping', 'woocommerce' ); ?></h3>
2011-08-13 13:57:48 +00:00
<table class="form-table">
2011-08-10 17:11:11 +00:00
<?php
2011-11-28 15:50:19 +00:00
// Generate the HTML For the settings form.
$this->generate_settings_html();
?>
</table><!--/.form-table-->
<?php
2012-08-14 22:43:48 +00:00
}
2011-11-28 16:10:31 +00:00
2012-08-14 22:43:48 +00:00
/**
* is_available function.
*
* @access public
* @param mixed $package
* @return bool
*/
2012-04-13 11:35:14 +00:00
function is_available( $package ) {
2011-11-28 16:10:31 +00:00
global $woocommerce;
2012-08-14 22:43:48 +00:00
2012-05-03 13:00:45 +00:00
if ( $this->enabled == "no" ) return false;
2012-08-14 22:43:48 +00:00
2011-11-28 16:10:31 +00:00
$ship_to_countries = '';
2012-08-14 22:43:48 +00:00
if ( $this->availability == 'specific' )
2011-11-28 16:10:31 +00:00
$ship_to_countries = $this->countries;
else
$ship_to_countries = array_keys( $woocommerce->countries->get_shipping_countries() );
2012-08-14 22:43:48 +00:00
if ( is_array( $ship_to_countries ) )
if ( ! in_array( $package['destination']['country'], $ship_to_countries ) )
2012-05-03 13:00:45 +00:00
return false;
2012-08-14 22:43:48 +00:00
2012-05-03 13:00:45 +00:00
// Enabled logic
2012-11-28 19:54:04 +00:00
$is_available = false;
$has_coupon = false;
$has_met_min_amount = false;
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
2012-05-03 13:00:45 +00:00
if ( $woocommerce->cart->applied_coupons ) {
foreach ($woocommerce->cart->applied_coupons as $code) {
$coupon = new WC_Coupon( $code );
2012-08-14 22:43:48 +00:00
if ( $coupon->is_valid() && $coupon->enable_free_shipping() )
2012-11-28 19:54:04 +00:00
$has_coupon = true;
2012-05-03 13:00:45 +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
if ( in_array( $this->requires, array( 'min_amount', 'either', 'both' ) ) ) {
2012-08-14 22:43:48 +00:00
2012-11-28 19:54:04 +00:00
if ( isset( $woocommerce->cart->cart_contents_total ) ) {
2012-11-28 19:54:04 +00:00
if ( $woocommerce->cart->prices_include_tax )
$total = $woocommerce->cart->tax_total + $woocommerce->cart->cart_contents_total;
else
$total = $woocommerce->cart->cart_contents_total;
2012-08-14 22:43:48 +00:00
2012-11-28 19:54:04 +00:00
if ( $total >= $this->min_amount )
$has_met_min_amount = true;
}
}
2012-08-14 22:43:48 +00:00
2012-11-28 19:54:04 +00:00
switch ( $this->requires ) {
case 'min_amount' :
if ( $has_met_min_amount ) $is_available = true;
break;
case 'coupon' :
if ( $has_coupon ) $is_available = true;
break;
case 'both' :
if ( $has_met_min_amount && $has_coupon ) $is_available = true;
break;
case 'either' :
if ( $has_met_min_amount || $has_coupon ) $is_available = true;
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
2012-05-03 13:00:45 +00:00
return apply_filters( 'woocommerce_shipping_' . $this->id . '_is_available', $is_available );
2012-08-14 22:43:48 +00:00
}
/**
* calculate_shipping function.
*
* @access public
* @return array
*/
2011-11-28 15:50:19 +00:00
function calculate_shipping() {
$args = array(
'id' => $this->id,
'label' => $this->title,
'cost' => 0,
'taxes' => false
);
2012-08-14 22:43:48 +00:00
$this->add_rate( $args );
2011-08-10 17:11:11 +00:00
}
2012-08-14 22:43:48 +00:00
}