2011-08-09 15:16:18 +00:00
< ? php
/**
* Checkout
2012-08-10 11:15:32 +00:00
*
2011-08-10 17:11:11 +00:00
* The WooCommerce checkout class handles the checkout process , collecting user data and processing the payment .
2011-08-09 15:16:18 +00:00
*
2012-08-14 19:42:38 +00:00
* @ class WC_Cart
2013-09-12 13:41:02 +00:00
* @ version 2.1 . 0
2012-08-14 22:43:48 +00:00
* @ package WooCommerce / Classes
2013-02-20 17:14:46 +00:00
* @ category Class
2012-08-14 19:42:38 +00:00
* @ author WooThemes
2011-08-09 15:16:18 +00:00
*/
2012-01-27 16:38:39 +00:00
class WC_Checkout {
2012-08-10 11:15:32 +00:00
2012-08-15 17:08:42 +00:00
/** @var array Array of posted form data. */
2012-12-14 21:27:29 +00:00
public $posted ;
2012-08-14 19:42:38 +00:00
2012-08-15 17:08:42 +00:00
/** @var array Array of fields to display on the checkout. */
2012-12-14 21:27:29 +00:00
public $checkout_fields ;
2012-08-14 19:42:38 +00:00
2012-08-15 17:08:42 +00:00
/** @var bool Whether or not the user must create an account to checkout. */
2012-12-14 21:27:29 +00:00
public $must_create_account ;
2012-08-14 19:42:38 +00:00
2012-12-10 12:34:55 +00:00
/** @var bool Whether or not signups are allowed. */
2012-12-14 21:27:29 +00:00
public $enable_signup ;
2012-12-10 12:34:55 +00:00
2012-12-27 19:24:33 +00:00
/** @var object The shipping method being used. */
private $shipping_method ;
2013-10-06 04:44:04 +00:00
/** @var WC_Payment_Gateway The payment gateway being used. */
2012-12-27 19:24:33 +00:00
private $payment_method ;
2013-02-15 21:18:46 +00:00
/** @var int ID of customer. */
private $customer_id ;
2013-09-12 13:41:02 +00:00
/**
2014-06-19 19:43:05 +00:00
* @ var WC_Checkout The single instance of the class
2013-09-12 13:41:02 +00:00
* @ since 2.1
*/
protected static $_instance = null ;
/**
2014-06-19 19:43:05 +00:00
* Main WC_Checkout Instance
2013-09-12 13:41:02 +00:00
*
2014-06-19 19:43:05 +00:00
* Ensures only one instance of WC_Checkout is loaded or can be loaded .
2013-09-12 13:41:02 +00:00
*
* @ since 2.1
* @ static
2014-06-19 19:43:05 +00:00
* @ return WC_Checkout Main instance
2013-09-12 13:41:02 +00:00
*/
public static function instance () {
if ( is_null ( self :: $_instance ) )
self :: $_instance = new self ();
return self :: $_instance ;
}
/**
* Cloning is forbidden .
*
* @ since 2.1
*/
public function __clone () {
2014-02-17 13:14:41 +00:00
_doing_it_wrong ( __FUNCTION__ , __ ( 'Cheatin’ huh?' , 'woocommerce' ), '2.1' );
2013-09-12 13:41:02 +00:00
}
/**
* Unserializing instances of this class is forbidden .
*
* @ since 2.1
*/
public function __wakeup () {
2014-02-17 13:14:41 +00:00
_doing_it_wrong ( __FUNCTION__ , __ ( 'Cheatin’ huh?' , 'woocommerce' ), '2.1' );
2013-09-12 13:41:02 +00:00
}
2012-08-14 19:42:38 +00:00
/**
2013-03-03 17:07:31 +00:00
* Constructor for the checkout class . Hooks in methods and defines checkout fields .
2012-08-14 19:42:38 +00:00
*
* @ access public
* @ return void
*/
2012-12-14 21:27:29 +00:00
public function __construct () {
2012-12-15 11:53:32 +00:00
add_action ( 'woocommerce_checkout_billing' , array ( $this , 'checkout_form_billing' ) );
add_action ( 'woocommerce_checkout_shipping' , array ( $this , 'checkout_form_shipping' ) );
2012-08-10 11:15:32 +00:00
2012-12-10 12:34:55 +00:00
$this -> enable_signup = get_option ( 'woocommerce_enable_signup_and_login_from_checkout' ) == 'yes' ? true : false ;
$this -> enable_guest_checkout = get_option ( 'woocommerce_enable_guest_checkout' ) == 'yes' ? true : false ;
$this -> must_create_account = $this -> enable_guest_checkout || is_user_logged_in () ? false : true ;
2011-12-21 16:03:45 +00:00
// Define all Checkout fields
2013-10-24 12:15:42 +00:00
$this -> checkout_fields [ 'billing' ] = WC () -> countries -> get_address_fields ( $this -> get_value ( 'billing_country' ), 'billing_' );
$this -> checkout_fields [ 'shipping' ] = WC () -> countries -> get_address_fields ( $this -> get_value ( 'shipping_country' ), 'shipping_' );
2012-08-10 11:15:32 +00:00
2013-06-03 15:09:04 +00:00
if ( get_option ( 'woocommerce_registration_generate_username' ) == 'no' ) {
2012-08-10 11:15:32 +00:00
$this -> checkout_fields [ 'account' ][ 'account_username' ] = array (
'type' => 'text' ,
'label' => __ ( 'Account username' , 'woocommerce' ),
2013-07-19 05:58:45 +00:00
'required' => true ,
2012-08-10 11:15:32 +00:00
'placeholder' => _x ( 'Username' , 'placeholder' , 'woocommerce' )
2011-12-21 16:03:45 +00:00
);
2012-08-10 11:15:32 +00:00
}
2013-06-03 15:09:04 +00:00
if ( get_option ( 'woocommerce_registration_generate_password' ) == 'no' ) {
$this -> checkout_fields [ 'account' ][ 'account_password' ] = array (
'type' => 'password' ,
'label' => __ ( 'Account password' , 'woocommerce' ),
2013-07-19 05:58:45 +00:00
'required' => true ,
2013-06-03 15:09:04 +00:00
'placeholder' => _x ( 'Password' , 'placeholder' , 'woocommerce' )
);
}
2012-08-10 11:15:32 +00:00
2011-12-21 16:03:45 +00:00
$this -> checkout_fields [ 'order' ] = array (
2012-08-10 11:15:32 +00:00
'order_comments' => array (
'type' => 'textarea' ,
'class' => array ( 'notes' ),
2012-10-16 09:45:33 +00:00
'label' => __ ( 'Order Notes' , 'woocommerce' ),
2012-08-10 11:15:32 +00:00
'placeholder' => _x ( 'Notes about your order, e.g. special notes for delivery.' , 'placeholder' , 'woocommerce' )
2011-12-21 16:03:45 +00:00
)
);
2012-12-10 12:34:55 +00:00
$this -> checkout_fields = apply_filters ( 'woocommerce_checkout_fields' , $this -> checkout_fields );
do_action ( 'woocommerce_checkout_init' , $this );
2011-08-09 15:16:18 +00:00
}
2012-08-10 11:15:32 +00:00
2012-08-14 19:42:38 +00:00
/**
* Checkout process
*/
2013-09-04 10:26:19 +00:00
public function check_cart_items () {
2012-02-12 11:36:33 +00:00
// When we process the checkout, lets ensure cart items are rechecked to prevent checkout
do_action ( 'woocommerce_check_cart_items' );
}
2012-08-10 11:15:32 +00:00
2012-08-14 19:42:38 +00:00
/**
* Output the billing information form
*
* @ access public
* @ return void
*/
2012-12-14 21:27:29 +00:00
public function checkout_form_billing () {
2013-11-25 12:45:04 +00:00
wc_get_template ( 'checkout/form-billing.php' , array ( 'checkout' => $this ) );
2011-08-09 15:16:18 +00:00
}
2012-08-10 11:15:32 +00:00
2012-08-14 19:42:38 +00:00
/**
* Output the shipping information form
*
* @ access public
* @ return void
*/
2012-12-14 21:27:29 +00:00
public function checkout_form_shipping () {
2013-11-25 12:45:04 +00:00
wc_get_template ( 'checkout/form-shipping.php' , array ( 'checkout' => $this ) );
2011-08-09 15:16:18 +00:00
}
2012-12-12 21:14:19 +00:00
/**
* create_order function .
* @ access public
2013-10-06 04:44:04 +00:00
* @ throws Exception
2014-06-18 15:03:46 +00:00
* @ return int | WP_ERROR
2012-12-12 21:14:19 +00:00
*/
2012-12-14 21:27:29 +00:00
public function create_order () {
2013-10-24 12:15:42 +00:00
global $wpdb ;
2012-12-12 21:14:19 +00:00
2013-02-13 09:38:54 +00:00
// Give plugins the opportunity to create an order themselves
2014-06-11 14:10:03 +00:00
if ( $order_id = apply_filters ( 'woocommerce_create_order' , null , $this ) ) {
2013-02-13 09:38:54 +00:00
return $order_id ;
2014-06-11 14:10:03 +00:00
}
2013-02-13 09:38:54 +00:00
2014-06-18 15:03:46 +00:00
try {
// Start transaction if available
$wpdb -> query ( 'START TRANSACTION' );
2012-12-12 21:14:19 +00:00
2014-06-18 15:03:46 +00:00
$order_data = array (
'status' => apply_filters ( 'woocommerce_default_order_status' , 'pending' ),
'customer_id' => $this -> customer_id ,
'customer_note' => isset ( $this -> posted [ 'order_comments' ] ) ? $this -> posted [ 'order_comments' ] : ''
);
2012-12-12 21:14:19 +00:00
2014-06-18 15:03:46 +00:00
// Insert or update the post data
2013-10-24 12:15:42 +00:00
$order_id = absint ( WC () -> session -> order_awaiting_payment );
2012-12-12 21:14:19 +00:00
// Resume the unpaid order if its pending
2014-08-15 12:29:21 +00:00
if ( $order_id > 0 && ( $order = wc_get_order ( $order_id ) ) && $order -> has_status ( array ( 'pending' , 'failed' ) ) ) {
2012-12-12 21:14:19 +00:00
2014-06-18 15:03:46 +00:00
$order_data [ 'order_id' ] = $order_id ;
$order = wc_update_order ( $order_data );
2012-12-12 21:14:19 +00:00
2014-06-18 15:03:46 +00:00
if ( is_wp_error ( $order ) ) {
throw new Exception ( __ ( 'Error: Unable to create order. Please try again.' , 'woocommerce' ) );
} else {
$order -> remove_order_items ();
do_action ( 'woocommerce_resume_order' , $order_id );
}
2012-12-12 21:14:19 +00:00
2014-06-11 14:10:03 +00:00
} else {
2012-12-12 21:14:19 +00:00
2014-06-18 15:03:46 +00:00
$order = wc_create_order ( $order_data );
2012-12-12 21:14:19 +00:00
2014-06-18 15:03:46 +00:00
if ( is_wp_error ( $order ) ) {
throw new Exception ( __ ( 'Error: Unable to create order. Please try again.' , 'woocommerce' ) );
} else {
$order_id = $order -> id ;
do_action ( 'woocommerce_new_order' , $order_id );
}
2012-12-12 21:14:19 +00:00
}
2014-06-18 15:03:46 +00:00
// Store the line items to the new/resumed order
foreach ( WC () -> cart -> get_cart () as $cart_item_key => $values ) {
2014-07-19 04:08:02 +00:00
$item_id = $order -> add_product (
$values [ 'data' ],
$values [ 'quantity' ],
2014-06-18 15:03:46 +00:00
array (
'variation' => $values [ 'variation' ],
'totals' => array (
'subtotal' => $values [ 'line_subtotal' ],
'subtotal_tax' => $values [ 'line_subtotal_tax' ],
'total' => $values [ 'line_total' ],
2014-07-19 04:08:02 +00:00
'tax' => $values [ 'line_tax' ],
'tax_data' => $values [ 'line_tax_data' ] // Since 2.2
2014-06-18 15:03:46 +00:00
)
2014-06-11 14:10:03 +00:00
)
2014-06-18 15:03:46 +00:00
);
2012-12-12 21:14:19 +00:00
2014-06-18 15:03:46 +00:00
if ( ! $item_id ) {
throw new Exception ( __ ( 'Error: Unable to create order. Please try again.' , 'woocommerce' ) );
}
2012-12-12 21:14:19 +00:00
2014-06-18 15:03:46 +00:00
// Allow plugins to add order item meta
do_action ( 'woocommerce_add_order_item_meta' , $item_id , $values , $cart_item_key );
}
2012-12-12 21:14:19 +00:00
2014-06-18 15:03:46 +00:00
// Store fees
foreach ( WC () -> cart -> get_fees () as $fee_key => $fee ) {
$item_id = $order -> add_fee ( $fee );
2012-12-12 21:14:19 +00:00
2014-06-18 15:03:46 +00:00
if ( ! $item_id ) {
throw new Exception ( __ ( 'Error: Unable to create order. Please try again.' , 'woocommerce' ) );
}
2014-07-19 04:08:02 +00:00
2014-06-18 15:03:46 +00:00
// Allow plugins to add order item meta to fees
do_action ( 'woocommerce_add_order_fee_meta' , $order_id , $item_id , $fee , $fee_key );
2013-08-08 11:37:42 +00:00
}
2014-06-18 15:03:46 +00:00
// Store shipping for all packages
foreach ( WC () -> shipping -> get_packages () as $package_key => $package ) {
if ( isset ( $package [ 'rates' ][ $this -> shipping_methods [ $package_key ] ] ) ) {
$item_id = $order -> add_shipping ( $package [ 'rates' ][ $this -> shipping_methods [ $package_key ] ] );
2012-12-12 21:14:19 +00:00
2014-06-18 15:03:46 +00:00
if ( ! $item_id ) {
throw new Exception ( __ ( 'Error: Unable to create order. Please try again.' , 'woocommerce' ) );
2013-03-04 11:17:48 +00:00
}
2014-07-19 04:08:02 +00:00
2014-06-18 15:03:46 +00:00
// Allows plugins to add order item meta to shipping
do_action ( 'woocommerce_add_shipping_order_item' , $order_id , $item_id , $package_key );
2012-12-12 21:14:19 +00:00
}
}
2014-06-18 15:03:46 +00:00
// Store tax rows
foreach ( array_keys ( WC () -> cart -> taxes + WC () -> cart -> shipping_taxes ) as $tax_rate_id ) {
if ( ! $order -> add_tax ( $tax_rate_id , WC () -> cart -> get_tax_amount ( $tax_rate_id ), WC () -> cart -> get_shipping_tax_amount ( $tax_rate_id ) ) ) {
throw new Exception ( __ ( 'Error: Unable to create order. Please try again.' , 'woocommerce' ) );
2014-03-19 12:58:35 +00:00
}
2013-08-16 15:43:26 +00:00
}
2014-06-18 15:03:46 +00:00
// Store coupons
foreach ( WC () -> cart -> get_coupons () as $code => $coupon ) {
if ( ! $order -> add_coupon ( $code , WC () -> cart -> get_coupon_discount_amount ( $code ) ) ) {
throw new Exception ( __ ( 'Error: Unable to create order. Please try again.' , 'woocommerce' ) );
2014-02-17 15:11:50 +00:00
}
2012-12-12 21:14:19 +00:00
}
2014-06-18 15:03:46 +00:00
// Billing address
2014-09-11 20:12:17 +00:00
$billing_address = array ();
if ( $this -> checkout_fields [ 'billing' ] ) {
foreach ( array_keys ( $this -> checkout_fields [ 'billing' ] ) as $field ) {
$field_name = str_replace ( 'billing_' , '' , $field );
$billing_address [ $field_name ] = $this -> get_posted_address_data ( $field_name );
}
}
2012-12-12 21:14:19 +00:00
2014-09-11 20:12:17 +00:00
// Shipping address.
$shipping_address = array ();
if ( $this -> checkout_fields [ 'shipping' ] ) {
foreach ( array_keys ( $this -> checkout_fields [ 'shipping' ] ) as $field ) {
$field_name = str_replace ( 'shipping_' , '' , $field );
2014-09-11 20:31:57 +00:00
$shipping_address [ $field_name ] = $this -> get_posted_address_data ( $field_name , 'shipping' );
2014-09-11 20:12:17 +00:00
}
}
2012-12-12 21:14:19 +00:00
2014-06-18 15:03:46 +00:00
$order -> set_address ( $billing_address , 'billing' );
$order -> set_address ( $shipping_address , 'shipping' );
$order -> set_payment_method ( $this -> payment_method );
$order -> set_total ( WC () -> cart -> shipping_total , 'shipping' );
$order -> set_total ( WC () -> cart -> get_order_discount_total (), 'order_discount' );
$order -> set_total ( WC () -> cart -> get_cart_discount_total (), 'cart_discount' );
$order -> set_total ( WC () -> cart -> tax_total , 'tax' );
$order -> set_total ( WC () -> cart -> shipping_tax_total , 'shipping_tax' );
$order -> set_total ( WC () -> cart -> total );
// Update user meta
if ( $this -> customer_id ) {
if ( apply_filters ( 'woocommerce_checkout_update_customer_data' , true , $this ) ) {
2014-09-11 20:12:17 +00:00
foreach ( $billing_address as $key => $value ) {
2014-06-18 15:03:46 +00:00
update_user_meta ( $this -> customer_id , 'billing_' . $key , $value );
}
2014-09-11 20:12:17 +00:00
foreach ( $shipping_address as $key => $value ) {
2014-06-18 15:03:46 +00:00
update_user_meta ( $this -> customer_id , 'shipping_' . $key , $value );
}
2012-12-12 21:14:19 +00:00
}
2014-06-18 15:03:46 +00:00
do_action ( 'woocommerce_checkout_update_user_meta' , $this -> customer_id , $this -> posted );
2012-12-12 21:14:19 +00:00
}
2014-06-18 15:03:46 +00:00
// Let plugins add meta
do_action ( 'woocommerce_checkout_update_order_meta' , $order_id , $this -> posted );
// If we got here, the order was created without problems!
$wpdb -> query ( 'COMMIT' );
} catch ( Exception $e ) {
// There was an error adding order data!
$wpdb -> query ( 'ROLLBACK' );
return new WP_Error ( 'checkout-error' , $e -> getMessage () );
2014-02-13 15:51:16 +00:00
}
2012-12-12 21:14:19 +00:00
return $order_id ;
}
2011-09-12 15:34:29 +00:00
/**
* Process the checkout after the confirm order button is pressed
2012-08-14 19:42:38 +00:00
*
* @ access public
* @ return void
2011-09-12 15:34:29 +00:00
*/
2012-12-14 21:27:29 +00:00
public function process_checkout () {
2013-06-11 16:55:55 +00:00
wp_verify_nonce ( $_POST [ '_wpnonce' ], 'woocommerce-process_checkout' );
2012-12-12 21:14:19 +00:00
2012-11-27 16:22:47 +00:00
if ( ! defined ( 'WOOCOMMERCE_CHECKOUT' ) )
2012-09-07 17:26:13 +00:00
define ( 'WOOCOMMERCE_CHECKOUT' , true );
2012-08-10 11:15:32 +00:00
2012-12-12 21:14:19 +00:00
// Prevent timeout
@ set_time_limit ( 0 );
2012-08-10 11:15:32 +00:00
2012-09-07 17:26:13 +00:00
do_action ( 'woocommerce_before_checkout_process' );
2012-01-12 00:43:30 +00:00
2013-10-24 12:15:42 +00:00
if ( sizeof ( WC () -> cart -> get_cart () ) == 0 )
2013-11-13 04:29:03 +00:00
wc_add_notice ( sprintf ( __ ( 'Sorry, your session has expired. <a href="%s" class="wc-backward">Return to homepage</a>' , 'woocommerce' ), home_url () ), 'error' );
2012-08-10 11:15:32 +00:00
2012-09-07 17:26:13 +00:00
do_action ( 'woocommerce_checkout_process' );
2012-01-12 00:43:30 +00:00
2012-01-12 00:54:45 +00:00
// Checkout fields (not defined in checkout_fields)
2013-05-28 13:19:08 +00:00
$this -> posted [ 'terms' ] = isset ( $_POST [ 'terms' ] ) ? 1 : 0 ;
$this -> posted [ 'createaccount' ] = isset ( $_POST [ 'createaccount' ] ) ? 1 : 0 ;
2013-05-31 12:05:11 +00:00
$this -> posted [ 'payment_method' ] = isset ( $_POST [ 'payment_method' ] ) ? stripslashes ( $_POST [ 'payment_method' ] ) : '' ;
2013-09-04 10:26:19 +00:00
$this -> posted [ 'shipping_method' ] = isset ( $_POST [ 'shipping_method' ] ) ? $_POST [ 'shipping_method' ] : '' ;
2013-05-28 13:19:08 +00:00
$this -> posted [ 'ship_to_different_address' ] = isset ( $_POST [ 'ship_to_different_address' ] ) ? true : false ;
if ( isset ( $_POST [ 'shiptobilling' ] ) ) {
_deprecated_argument ( 'WC_Checkout::process_checkout()' , '2.1' , 'The "shiptobilling" field is deprecated. THe template files are out of date' );
$this -> posted [ 'ship_to_different_address' ] = $_POST [ 'shiptobilling' ] ? false : true ;
}
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// Ship to billing only option
2013-10-24 12:15:42 +00:00
if ( WC () -> cart -> ship_to_billing_address_only () )
2013-05-28 13:19:08 +00:00
$this -> posted [ 'ship_to_different_address' ] = false ;
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// Update customer shipping and payment method to posted method
2013-08-14 20:00:34 +00:00
$chosen_shipping_methods = WC () -> session -> get ( 'chosen_shipping_methods' );
2014-05-01 13:40:00 +00:00
if ( isset ( $this -> posted [ 'shipping_method' ] ) && is_array ( $this -> posted [ 'shipping_method' ] ) ) {
foreach ( $this -> posted [ 'shipping_method' ] as $i => $value ) {
2013-11-25 13:34:21 +00:00
$chosen_shipping_methods [ $i ] = wc_clean ( $value );
2014-05-01 13:40:00 +00:00
}
}
2013-08-14 20:00:34 +00:00
WC () -> session -> set ( 'chosen_shipping_methods' , $chosen_shipping_methods );
WC () -> session -> set ( 'chosen_payment_method' , $this -> posted [ 'payment_method' ] );
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// Note if we skip shipping
$skipped_shipping = false ;
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// Get posted checkout_fields and do validation
2012-08-10 11:15:32 +00:00
foreach ( $this -> checkout_fields as $fieldset_key => $fieldset ) {
2013-05-28 13:19:08 +00:00
// Skip shipping if not needed
2013-10-24 12:15:42 +00:00
if ( $fieldset_key == 'shipping' && ( $this -> posted [ 'ship_to_different_address' ] == false || ! WC () -> cart -> needs_shipping () ) ) {
2012-01-12 00:54:45 +00:00
$skipped_shipping = true ;
continue ;
2012-04-21 18:30:37 +00:00
}
2012-08-10 11:15:32 +00:00
2013-07-19 05:58:45 +00:00
// Ship account if not needed
if ( $fieldset_key == 'account' && ( is_user_logged_in () || ( $this -> must_create_account == false && empty ( $this -> posted [ 'createaccount' ] ) ) ) ) {
continue ;
}
2012-07-16 19:21:44 +00:00
foreach ( $fieldset as $key => $field ) {
2012-08-10 11:15:32 +00:00
2013-05-23 08:40:55 +00:00
if ( ! isset ( $field [ 'type' ] ) )
$field [ 'type' ] = 'text' ;
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// Get Value
2012-07-16 19:21:44 +00:00
switch ( $field [ 'type' ] ) {
2012-01-12 00:54:45 +00:00
case " checkbox " :
2013-05-23 08:40:55 +00:00
$this -> posted [ $key ] = isset ( $_POST [ $key ] ) ? 1 : 0 ;
break ;
case " multiselect " :
2013-11-25 13:34:21 +00:00
$this -> posted [ $key ] = isset ( $_POST [ $key ] ) ? implode ( ', ' , array_map ( 'wc_clean' , $_POST [ $key ] ) ) : '' ;
2012-01-12 00:54:45 +00:00
break ;
2013-10-04 12:31:43 +00:00
case " textarea " :
$this -> posted [ $key ] = isset ( $_POST [ $key ] ) ? wp_strip_all_tags ( wp_check_invalid_utf8 ( stripslashes ( $_POST [ $key ] ) ) ) : '' ;
break ;
2012-01-12 00:54:45 +00:00
default :
2014-06-03 11:16:19 +00:00
$this -> posted [ $key ] = isset ( $_POST [ $key ] ) ? ( is_array ( $_POST [ $key ] ) ? array_map ( 'wc_clean' , $_POST [ $key ] ) : wc_clean ( $_POST [ $key ] ) ) : '' ;
2012-01-12 00:54:45 +00:00
break ;
2012-07-16 19:21:44 +00:00
}
2012-08-10 11:15:32 +00:00
2013-05-23 08:40:55 +00:00
// Hooks to allow modification of value
$this -> posted [ $key ] = apply_filters ( 'woocommerce_process_checkout_' . sanitize_title ( $field [ 'type' ] ) . '_field' , $this -> posted [ $key ] );
$this -> posted [ $key ] = apply_filters ( 'woocommerce_process_checkout_field_' . $key , $this -> posted [ $key ] );
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// Validation: Required fields
2013-06-11 14:59:54 +00:00
if ( isset ( $field [ 'required' ] ) && $field [ 'required' ] && empty ( $this -> posted [ $key ] ) )
2013-11-13 04:29:03 +00:00
wc_add_notice ( '<strong>' . $field [ 'label' ] . '</strong> ' . __ ( 'is a required field.' , 'woocommerce' ), 'error' );
2012-08-10 11:15:32 +00:00
2012-07-16 19:21:44 +00:00
if ( ! empty ( $this -> posted [ $key ] ) ) {
2012-08-10 11:15:32 +00:00
2013-09-19 13:39:49 +00:00
// Validation rules
if ( ! empty ( $field [ 'validate' ] ) && is_array ( $field [ 'validate' ] ) ) {
foreach ( $field [ 'validate' ] as $rule ) {
switch ( $rule ) {
case 'postcode' :
$this -> posted [ $key ] = strtoupper ( str_replace ( ' ' , '' , $this -> posted [ $key ] ) );
if ( ! WC_Validation :: is_postcode ( $this -> posted [ $key ], $_POST [ $fieldset_key . '_country' ] ) ) :
2013-11-13 04:29:03 +00:00
wc_add_notice ( __ ( 'Please enter a valid postcode/ZIP.' , 'woocommerce' ), 'error' );
2013-09-19 13:39:49 +00:00
else :
$this -> posted [ $key ] = wc_format_postcode ( $this -> posted [ $key ], $_POST [ $fieldset_key . '_country' ] );
endif ;
break ;
case 'phone' :
$this -> posted [ $key ] = wc_format_phone_number ( $this -> posted [ $key ] );
if ( ! WC_Validation :: is_phone ( $this -> posted [ $key ] ) )
2013-11-13 04:29:03 +00:00
wc_add_notice ( '<strong>' . $field [ 'label' ] . '</strong> ' . __ ( 'is not a valid phone number.' , 'woocommerce' ), 'error' );
2013-09-19 13:39:49 +00:00
break ;
case 'email' :
$this -> posted [ $key ] = strtolower ( $this -> posted [ $key ] );
if ( ! is_email ( $this -> posted [ $key ] ) )
2013-11-13 04:29:03 +00:00
wc_add_notice ( '<strong>' . $field [ 'label' ] . '</strong> ' . __ ( 'is not a valid email address.' , 'woocommerce' ), 'error' );
2013-09-19 13:39:49 +00:00
break ;
case 'state' :
// Get valid states
2013-10-24 12:15:42 +00:00
$valid_states = WC () -> countries -> get_states ( $_POST [ $fieldset_key . '_country' ] );
2013-09-19 13:39:49 +00:00
if ( $valid_states )
$valid_state_values = array_flip ( array_map ( 'strtolower' , $valid_states ) );
// Convert value to key if set
if ( isset ( $valid_state_values [ strtolower ( $this -> posted [ $key ] ) ] ) )
$this -> posted [ $key ] = $valid_state_values [ strtolower ( $this -> posted [ $key ] ) ];
// Only validate if the country has specific state options
if ( $valid_states && sizeof ( $valid_states ) > 0 )
if ( ! in_array ( $this -> posted [ $key ], array_keys ( $valid_states ) ) )
2013-11-13 04:29:03 +00:00
wc_add_notice ( '<strong>' . $field [ 'label' ] . '</strong> ' . __ ( 'is not valid. Please enter one of the following:' , 'woocommerce' ) . ' ' . implode ( ', ' , $valid_states ), 'error' );
2013-09-19 13:39:49 +00:00
break ;
}
}
2012-07-16 19:21:44 +00:00
}
}
}
}
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// Update customer location to posted location so we can correctly check available shipping methods
2012-08-10 11:15:32 +00:00
if ( isset ( $this -> posted [ 'billing_country' ] ) )
2013-10-24 12:15:42 +00:00
WC () -> customer -> set_country ( $this -> posted [ 'billing_country' ] );
2012-08-10 11:15:32 +00:00
if ( isset ( $this -> posted [ 'billing_state' ] ) )
2013-10-24 12:15:42 +00:00
WC () -> customer -> set_state ( $this -> posted [ 'billing_state' ] );
2012-08-10 11:15:32 +00:00
if ( isset ( $this -> posted [ 'billing_postcode' ] ) )
2013-10-24 12:15:42 +00:00
WC () -> customer -> set_postcode ( $this -> posted [ 'billing_postcode' ] );
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// Shipping Information
2012-03-26 19:28:19 +00:00
if ( ! $skipped_shipping ) {
2012-08-10 11:15:32 +00:00
2011-12-21 16:03:45 +00:00
// Update customer location to posted location so we can correctly check available shipping methods
2012-08-10 11:15:32 +00:00
if ( isset ( $this -> posted [ 'shipping_country' ] ) )
2013-10-24 12:15:42 +00:00
WC () -> customer -> set_shipping_country ( $this -> posted [ 'shipping_country' ] );
2012-08-10 11:15:32 +00:00
if ( isset ( $this -> posted [ 'shipping_state' ] ) )
2013-10-24 12:15:42 +00:00
WC () -> customer -> set_shipping_state ( $this -> posted [ 'shipping_state' ] );
2012-08-10 11:15:32 +00:00
if ( isset ( $this -> posted [ 'shipping_postcode' ] ) )
2013-10-24 12:15:42 +00:00
WC () -> customer -> set_shipping_postcode ( $this -> posted [ 'shipping_postcode' ] );
2012-08-10 11:15:32 +00:00
2012-03-26 19:28:19 +00:00
} else {
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// Update customer location to posted location so we can correctly check available shipping methods
2012-08-10 11:15:32 +00:00
if ( isset ( $this -> posted [ 'billing_country' ] ) )
2013-10-24 12:15:42 +00:00
WC () -> customer -> set_shipping_country ( $this -> posted [ 'billing_country' ] );
2012-08-10 11:15:32 +00:00
if ( isset ( $this -> posted [ 'billing_state' ] ) )
2013-10-24 12:15:42 +00:00
WC () -> customer -> set_shipping_state ( $this -> posted [ 'billing_state' ] );
2012-08-10 11:15:32 +00:00
if ( isset ( $this -> posted [ 'billing_postcode' ] ) )
2013-10-24 12:15:42 +00:00
WC () -> customer -> set_shipping_postcode ( $this -> posted [ 'billing_postcode' ] );
2012-08-10 11:15:32 +00:00
2012-03-26 19:28:19 +00:00
}
2012-08-10 11:15:32 +00:00
2012-07-16 19:21:44 +00:00
// Update cart totals now we have customer address
2013-10-24 12:15:42 +00:00
WC () -> cart -> calculate_totals ();
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// Terms
2013-11-25 14:07:22 +00:00
if ( ! isset ( $_POST [ 'woocommerce_checkout_update_totals' ] ) && empty ( $this -> posted [ 'terms' ] ) && wc_get_page_id ( 'terms' ) > 0 )
2013-11-13 04:29:03 +00:00
wc_add_notice ( __ ( 'You must accept our Terms & Conditions.' , 'woocommerce' ), 'error' );
2012-08-10 11:15:32 +00:00
2013-10-24 12:15:42 +00:00
if ( WC () -> cart -> needs_shipping () ) {
2012-08-10 11:15:32 +00:00
2014-07-19 04:08:02 +00:00
if ( ! in_array ( WC () -> customer -> get_shipping_country (), array_keys ( WC () -> countries -> get_shipping_countries () ) ) )
2014-06-03 19:45:22 +00:00
wc_add_notice ( sprintf ( __ ( 'Unfortunately <strong>we do not ship %s</strong>. Please enter an alternative shipping address.' , 'woocommerce' ), WC () -> countries -> shipping_to_prefix () . ' ' . WC () -> customer -> get_shipping_country () ), 'error' );
2013-08-02 15:54:28 +00:00
2013-08-14 20:00:34 +00:00
// Validate Shipping Methods
$packages = WC () -> shipping -> get_packages ();
$this -> shipping_methods = WC () -> session -> get ( 'chosen_shipping_methods' );
2012-08-10 11:15:32 +00:00
2013-08-14 20:00:34 +00:00
foreach ( $packages as $i => $package ) {
if ( ! isset ( $package [ 'rates' ][ $this -> shipping_methods [ $i ] ] ) ) {
2013-11-13 04:29:03 +00:00
wc_add_notice ( __ ( 'Invalid shipping method.' , 'woocommerce' ), 'error' );
2013-08-14 20:00:34 +00:00
$this -> shipping_methods [ $i ] = '' ;
}
2012-12-12 21:14:19 +00:00
}
2012-08-10 11:15:32 +00:00
}
2013-10-24 12:15:42 +00:00
if ( WC () -> cart -> needs_payment () ) {
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// Payment Method
2013-10-24 12:15:42 +00:00
$available_gateways = WC () -> payment_gateways -> get_available_payment_gateways ();
2012-08-10 11:15:32 +00:00
2012-12-12 21:14:19 +00:00
if ( ! isset ( $available_gateways [ $this -> posted [ 'payment_method' ] ] ) ) {
2012-12-27 19:24:33 +00:00
$this -> payment_method = '' ;
2013-11-13 04:29:03 +00:00
wc_add_notice ( __ ( 'Invalid payment method.' , 'woocommerce' ), 'error' );
2012-12-12 21:14:19 +00:00
} else {
2012-12-27 19:24:33 +00:00
$this -> payment_method = $available_gateways [ $this -> posted [ 'payment_method' ] ];
$this -> payment_method -> validate_fields ();
2012-12-12 21:14:19 +00:00
}
2012-07-16 19:21:44 +00:00
}
2012-08-10 11:15:32 +00:00
2012-07-16 19:21:44 +00:00
// Action after validation
2012-01-12 00:54:45 +00:00
do_action ( 'woocommerce_after_checkout_validation' , $this -> posted );
2012-08-10 11:15:32 +00:00
2013-11-27 16:15:53 +00:00
if ( ! isset ( $_POST [ 'woocommerce_checkout_update_totals' ] ) && wc_notice_count ( 'error' ) == 0 ) {
2012-08-10 11:15:32 +00:00
2012-09-07 17:26:13 +00:00
try {
2012-08-10 11:15:32 +00:00
2013-06-04 15:33:05 +00:00
// Customer accounts
2013-07-30 13:50:53 +00:00
$this -> customer_id = apply_filters ( 'woocommerce_checkout_customer_id' , get_current_user_id () );
2012-08-10 11:15:32 +00:00
2013-06-04 15:33:05 +00:00
if ( ! is_user_logged_in () && ( $this -> must_create_account || ! empty ( $this -> posted [ 'createaccount' ] ) ) ) {
2012-08-10 11:15:32 +00:00
2013-06-04 15:33:05 +00:00
$username = ! empty ( $this -> posted [ 'account_username' ] ) ? $this -> posted [ 'account_username' ] : '' ;
$password = ! empty ( $this -> posted [ 'account_password' ] ) ? $this -> posted [ 'account_password' ] : '' ;
2013-11-25 12:52:53 +00:00
$new_customer = wc_create_new_customer ( $this -> posted [ 'billing_email' ], $username , $password );
2012-08-10 11:15:32 +00:00
2013-06-04 15:33:05 +00:00
if ( is_wp_error ( $new_customer ) )
throw new Exception ( $new_customer -> get_error_message () );
2012-12-28 18:45:06 +00:00
2013-06-04 15:33:05 +00:00
$this -> customer_id = $new_customer ;
2012-08-10 11:15:32 +00:00
2013-11-25 12:52:53 +00:00
wc_set_customer_auth_cookie ( $this -> customer_id );
2013-06-05 11:07:23 +00:00
2013-09-04 10:26:19 +00:00
// As we are now logged in, checkout will need to refresh to show logged in data
WC () -> session -> set ( 'reload_checkout' , true );
2014-07-19 04:08:02 +00:00
2014-04-28 18:20:45 +00:00
// Also, recalculate cart totals to reveal any role-based discounts that were unavailable before registering
2014-05-20 10:08:09 +00:00
WC () -> cart -> calculate_totals ();
2013-09-02 16:43:53 +00:00
2013-06-05 11:07:23 +00:00
// Add customer info from other billing fields
2013-12-03 12:27:53 +00:00
if ( $this -> posted [ 'billing_first_name' ] && apply_filters ( 'woocommerce_checkout_update_customer_data' , true , $this ) ) {
2014-07-19 04:08:02 +00:00
$userdata = array (
'ID' => $this -> customer_id ,
'first_name' => $this -> posted [ 'billing_first_name' ] ? $this -> posted [ 'billing_first_name' ] : '' ,
2013-12-03 12:27:53 +00:00
'last_name' => $this -> posted [ 'billing_last_name' ] ? $this -> posted [ 'billing_last_name' ] : '' ,
'display_name' => $this -> posted [ 'billing_first_name' ] ? $this -> posted [ 'billing_first_name' ] : ''
);
wp_update_user ( apply_filters ( 'woocommerce_checkout_customer_userdata' , $userdata , $this ) );
}
2012-09-07 17:26:13 +00:00
}
2012-08-10 11:15:32 +00:00
2013-09-04 10:26:19 +00:00
// Do a final stock check at this point
$this -> check_cart_items ();
2012-12-12 21:14:19 +00:00
// Abort if errors are present
2013-11-27 16:15:53 +00:00
if ( wc_notice_count ( 'error' ) > 0 )
2013-05-09 12:39:41 +00:00
throw new Exception ();
2012-08-10 11:15:32 +00:00
2012-12-12 21:14:19 +00:00
$order_id = $this -> create_order ();
2012-08-10 11:15:32 +00:00
2014-06-18 15:03:46 +00:00
if ( is_wp_error ( $order_id ) ) {
throw new Exception ( $order_id -> get_error_message () );
}
2012-09-07 17:26:13 +00:00
do_action ( 'woocommerce_checkout_order_processed' , $order_id , $this -> posted );
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// Process payment
2013-10-24 12:15:42 +00:00
if ( WC () -> cart -> needs_payment () ) {
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// Store Order ID in session so it can be re-used after payment failure
2013-10-24 12:15:42 +00:00
WC () -> session -> order_awaiting_payment = $order_id ;
2012-01-10 16:43:06 +00:00
2012-01-12 00:54:45 +00:00
// Process Payment
2012-09-07 17:26:13 +00:00
$result = $available_gateways [ $this -> posted [ 'payment_method' ] ] -> process_payment ( $order_id );
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// Redirect to success/confirmation/payment page
2012-09-07 17:26:13 +00:00
if ( $result [ 'result' ] == 'success' ) {
2012-08-10 11:15:32 +00:00
2013-12-23 15:47:56 +00:00
$result = apply_filters ( 'woocommerce_payment_successful_result' , $result , $order_id );
2012-08-10 11:15:32 +00:00
2012-09-07 17:26:13 +00:00
if ( is_ajax () ) {
2013-03-08 12:24:22 +00:00
echo '<!--WC_START-->' . json_encode ( $result ) . '<!--WC_END-->' ;
2011-08-09 15:16:18 +00:00
exit ;
2012-09-07 17:26:13 +00:00
} else {
2012-02-24 20:44:58 +00:00
wp_redirect ( $result [ 'redirect' ] );
2011-08-09 15:16:18 +00:00
exit ;
2012-09-07 17:26:13 +00:00
}
2012-08-10 11:15:32 +00:00
2012-09-07 17:26:13 +00:00
}
2012-08-10 11:15:32 +00:00
2012-09-07 17:26:13 +00:00
} else {
2012-08-10 11:15:32 +00:00
2012-08-12 14:12:52 +00:00
if ( empty ( $order ) )
2014-08-15 12:29:21 +00:00
$order = wc_get_order ( $order_id );
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// No payment was required for order
$order -> payment_complete ();
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// Empty the Cart
2013-10-24 12:15:42 +00:00
WC () -> cart -> empty_cart ();
2012-08-10 11:15:32 +00:00
2012-03-05 13:25:02 +00:00
// Get redirect
2013-05-31 15:13:14 +00:00
$return_url = $order -> get_checkout_order_received_url ();
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// Redirect to success/confirmation/payment page
2012-09-07 17:26:13 +00:00
if ( is_ajax () ) {
2013-03-08 12:24:22 +00:00
echo '<!--WC_START-->' . json_encode (
2012-01-18 12:32:39 +00:00
array (
2012-03-16 15:09:12 +00:00
'result' => 'success' ,
2013-09-02 16:43:53 +00:00
'redirect' => apply_filters ( 'woocommerce_checkout_no_payment_needed_redirect' , $return_url , $order )
2012-08-10 11:15:32 +00:00
)
2012-12-13 14:57:31 +00:00
) . '<!--WC_END-->' ;
2012-01-12 00:54:45 +00:00
exit ;
2012-09-07 17:26:13 +00:00
} else {
2012-08-10 11:15:32 +00:00
wp_safe_redirect (
2013-05-31 15:13:14 +00:00
apply_filters ( 'woocommerce_checkout_no_payment_needed_redirect' , $return_url , $order )
2012-01-18 12:32:39 +00:00
);
2012-01-12 00:54:45 +00:00
exit ;
2012-09-07 17:26:13 +00:00
}
2012-08-10 11:15:32 +00:00
2012-09-07 17:26:13 +00:00
}
2012-08-10 11:15:32 +00:00
2012-09-07 17:26:13 +00:00
} catch ( Exception $e ) {
2014-06-18 15:03:46 +00:00
if ( ! empty ( $e ) ) {
2013-11-13 04:29:03 +00:00
wc_add_notice ( $e -> getMessage (), 'error' );
2014-06-18 15:03:46 +00:00
}
2012-09-07 17:26:13 +00:00
}
2012-01-12 00:54:45 +00:00
2012-09-07 17:26:13 +00:00
} // endif
2012-08-10 11:15:32 +00:00
2012-01-12 00:54:45 +00:00
// If we reached this point then there were errors
2012-09-07 17:26:13 +00:00
if ( is_ajax () ) {
2012-08-10 11:15:32 +00:00
2014-07-04 21:22:58 +00:00
// only print notices if not reloading the checkout, otherwise they're lost in the page reload
if ( ! isset ( WC () -> session -> reload_checkout ) ) {
ob_start ();
wc_print_notices ();
$messages = ob_get_clean ();
}
2012-08-10 11:15:32 +00:00
2013-03-08 12:24:22 +00:00
echo '<!--WC_START-->' . json_encode (
2012-03-14 11:16:26 +00:00
array (
'result' => 'failure' ,
2014-07-04 21:22:58 +00:00
'messages' => isset ( $messages ) ? $messages : '' ,
2013-10-24 12:15:42 +00:00
'refresh' => isset ( WC () -> session -> refresh_totals ) ? 'true' : 'false' ,
'reload' => isset ( WC () -> session -> reload_checkout ) ? 'true' : 'false'
2012-08-10 11:15:32 +00:00
)
2012-12-13 14:57:31 +00:00
) . '<!--WC_END-->' ;
2012-08-10 11:15:32 +00:00
2013-10-24 12:15:42 +00:00
unset ( WC () -> session -> refresh_totals , WC () -> session -> reload_checkout );
2012-01-12 00:54:45 +00:00
exit ;
2012-09-07 17:26:13 +00:00
}
2011-08-09 15:16:18 +00:00
}
2012-08-10 11:15:32 +00:00
2014-06-11 14:10:03 +00:00
/**
* Get a posted address field after sanitization and validation .
* @ param string $key
* @ param string $type billing for shipping
* @ return string
*/
public function get_posted_address_data ( $key , $type = 'billing' ) {
if ( 'billing' === $type || false === $this -> posted [ 'ship_to_different_address' ] ) {
$return = isset ( $this -> posted [ 'billing_' . $key ] ) ? $this -> posted [ 'billing_' . $key ] : '' ;
} else {
$return = isset ( $this -> posted [ 'shipping_' . $key ] ) ? $this -> posted [ 'shipping_' . $key ] : '' ;
}
// Use logged in user's billing email if neccessary
if ( 'email' === $key && empty ( $return ) && is_user_logged_in () ) {
$current_user = wp_get_current_user ();
$return = $current_user -> user_email ;
}
return $return ;
}
2012-08-14 19:42:38 +00:00
/**
* Gets the value either from the posted data , or from the users meta data
*
* @ access public
* @ param string $input
2014-02-13 09:52:43 +00:00
* @ return string | null
2012-08-14 19:42:38 +00:00
*/
2012-12-14 21:27:29 +00:00
public function get_value ( $input ) {
2012-10-19 17:59:17 +00:00
if ( ! empty ( $_POST [ $input ] ) ) {
2012-08-10 11:15:32 +00:00
2013-11-25 13:34:21 +00:00
return wc_clean ( $_POST [ $input ] );
2012-08-10 11:15:32 +00:00
2013-01-07 15:58:19 +00:00
} else {
2012-08-10 11:15:32 +00:00
2013-09-10 14:23:26 +00:00
$value = apply_filters ( 'woocommerce_checkout_get_value' , null , $input );
2013-12-27 13:39:21 +00:00
if ( $value !== null )
2013-09-19 14:02:14 +00:00
return $value ;
2013-09-10 14:23:26 +00:00
2013-01-07 15:58:19 +00:00
if ( is_user_logged_in () ) {
2012-08-10 11:15:32 +00:00
2013-01-07 15:58:19 +00:00
$current_user = wp_get_current_user ();
2012-08-10 11:15:32 +00:00
2013-01-07 17:26:02 +00:00
if ( $meta = get_user_meta ( $current_user -> ID , $input , true ) )
2013-01-07 15:58:19 +00:00
return $meta ;
2012-08-10 11:15:32 +00:00
2013-01-07 15:58:19 +00:00
if ( $input == " billing_email " )
return $current_user -> user_email ;
}
2012-08-10 11:15:32 +00:00
2013-09-19 14:02:14 +00:00
switch ( $input ) {
case " billing_country " :
2013-10-24 12:15:42 +00:00
return apply_filters ( 'default_checkout_country' , WC () -> customer -> get_country () ? WC () -> customer -> get_country () : WC () -> countries -> get_base_country (), 'billing' );
2013-09-19 14:02:14 +00:00
case " billing_state " :
2013-10-24 12:15:42 +00:00
return apply_filters ( 'default_checkout_state' , WC () -> customer -> has_calculated_shipping () ? WC () -> customer -> get_state () : '' , 'billing' );
2013-09-19 14:02:14 +00:00
case " billing_postcode " :
2013-10-24 12:15:42 +00:00
return apply_filters ( 'default_checkout_postcode' , WC () -> customer -> get_postcode () ? WC () -> customer -> get_postcode () : '' , 'billing' );
2013-09-19 14:02:14 +00:00
case " shipping_country " :
2013-10-24 12:15:42 +00:00
return apply_filters ( 'default_checkout_country' , WC () -> customer -> get_shipping_country () ? WC () -> customer -> get_shipping_country () : WC () -> countries -> get_base_country (), 'shipping' );
2013-09-19 14:02:14 +00:00
case " shipping_state " :
2013-10-24 12:15:42 +00:00
return apply_filters ( 'default_checkout_state' , WC () -> customer -> has_calculated_shipping () ? WC () -> customer -> get_shipping_state () : '' , 'shipping' );
2013-09-19 14:02:14 +00:00
case " shipping_postcode " :
2013-10-24 12:15:42 +00:00
return apply_filters ( 'default_checkout_postcode' , WC () -> customer -> get_shipping_postcode () ? WC () -> customer -> get_shipping_postcode () : '' , 'shipping' );
2013-09-19 14:02:14 +00:00
default :
2014-02-13 09:52:43 +00:00
return apply_filters ( 'default_checkout_' . $input , null , $input );
2012-04-19 11:09:52 +00:00
}
2012-10-19 17:59:17 +00:00
}
2011-08-09 15:16:18 +00:00
}
2013-01-22 21:30:14 +00:00
}