2013-08-09 16:11:15 +00:00
< ? php
/**
2015-11-03 13:53:50 +00:00
* WooCommerce Cart Functions
2013-08-09 16:11:15 +00:00
*
* Functions for cart specific things .
*
2018-03-07 15:12:27 +00:00
* @ package WooCommerce / Functions
* @ version 2.5 . 0
2013-08-09 16:11:15 +00:00
*/
2018-03-07 15:12:27 +00:00
defined ( 'ABSPATH' ) || exit ;
2013-08-09 16:11:15 +00:00
2013-08-19 17:19:27 +00:00
/**
2015-11-03 13:31:20 +00:00
* Prevent password protected products being added to the cart .
2013-08-19 17:19:27 +00:00
*
2018-03-07 15:12:27 +00:00
* @ param bool $passed Validation .
* @ param int $product_id Product ID .
2013-08-19 17:19:27 +00:00
* @ return bool
*/
2013-11-25 12:23:39 +00:00
function wc_protected_product_add_to_cart ( $passed , $product_id ) {
2013-08-19 17:19:27 +00:00
if ( post_password_required ( $product_id ) ) {
$passed = false ;
2013-11-13 04:29:03 +00:00
wc_add_notice ( __ ( 'This product is protected and cannot be purchased.' , 'woocommerce' ), 'error' );
2013-08-19 17:19:27 +00:00
}
return $passed ;
}
2013-11-25 12:23:39 +00:00
add_filter ( 'woocommerce_add_to_cart_validation' , 'wc_protected_product_add_to_cart' , 10 , 2 );
2013-08-19 17:19:27 +00:00
2013-08-09 16:11:15 +00:00
/**
2015-11-03 13:31:20 +00:00
* Clears the cart session when called .
2013-08-09 16:11:15 +00:00
*/
2013-11-25 12:23:39 +00:00
function wc_empty_cart () {
2015-12-01 04:18:58 +00:00
if ( ! isset ( WC () -> cart ) || '' === WC () -> cart ) {
2013-11-25 14:01:32 +00:00
WC () -> cart = new WC_Cart ();
2014-05-20 09:01:26 +00:00
}
2013-11-25 14:01:32 +00:00
WC () -> cart -> empty_cart ( false );
2013-08-09 16:11:15 +00:00
}
/**
2015-11-03 13:31:20 +00:00
* Load the persistent cart .
2013-11-25 12:23:39 +00:00
*
2018-03-07 15:12:27 +00:00
* @ param string $user_login User login .
* @ param WP_User $user User data .
2015-03-06 12:01:58 +00:00
* @ deprecated 2.3
2013-08-09 16:11:15 +00:00
*/
2014-11-20 00:43:09 +00:00
function wc_load_persistent_cart ( $user_login , $user ) {
2018-02-19 16:36:26 +00:00
if ( ! $user || ! apply_filters ( 'woocommerce_persistent_cart_enabled' , true ) ) {
return ;
}
$saved_cart = get_user_meta ( $user -> ID , '_woocommerce_persistent_cart_' . get_current_blog_id (), true );
if ( ! $saved_cart ) {
2013-08-09 16:11:15 +00:00
return ;
2014-11-20 00:43:09 +00:00
}
2013-08-09 16:11:15 +00:00
2018-03-07 15:12:27 +00:00
$cart = WC () -> session -> cart ;
if ( empty ( $cart ) || ! is_array ( $cart ) || 0 === count ( $cart ) ) {
2015-03-06 12:01:58 +00:00
WC () -> session -> cart = $saved_cart [ 'cart' ];
2014-11-20 00:43:09 +00:00
}
2013-08-09 16:11:15 +00:00
}
2016-06-15 19:34:05 +00:00
/**
* Retrieves unvalidated referer from '_wp_http_referer' or HTTP referer .
*
* Do not use for redirects , use { @ see wp_get_referer ()} instead .
*
* @ since 2.6 . 1
* @ return string | false Referer URL on success , false on failure .
*/
function wc_get_raw_referer () {
if ( function_exists ( 'wp_get_raw_referer' ) ) {
return wp_get_raw_referer ();
}
2018-03-07 15:12:27 +00:00
if ( ! empty ( $_REQUEST [ '_wp_http_referer' ] ) ) { // WPCS: input var ok, CSRF ok.
return wp_unslash ( $_REQUEST [ '_wp_http_referer' ] ); // WPCS: input var ok, CSRF ok, sanitization ok.
} elseif ( ! empty ( $_SERVER [ 'HTTP_REFERER' ] ) ) { // WPCS: input var ok, CSRF ok.
return wp_unslash ( $_SERVER [ 'HTTP_REFERER' ] ); // WPCS: input var ok, CSRF ok, sanitization ok.
2016-07-11 14:56:35 +00:00
}
2016-06-15 19:34:05 +00:00
2016-07-11 14:56:35 +00:00
return false ;
2016-06-15 19:34:05 +00:00
}
2013-08-09 16:11:15 +00:00
/**
* Add to cart messages .
*
2018-03-07 15:12:27 +00:00
* @ param int | array $products Product ID list or single product ID .
* @ param bool $show_qty Should qty ' s be shown ? Added in 2.6 . 0.
* @ param bool $return Return message rather than add it .
2017-05-12 08:48:46 +00:00
*
2018-03-07 15:12:27 +00:00
* @ return mixed
2013-08-09 16:11:15 +00:00
*/
2016-08-01 10:41:52 +00:00
function wc_add_to_cart_message ( $products , $show_qty = false , $return = false ) {
2015-04-20 11:29:01 +00:00
$titles = array ();
2016-01-20 11:32:49 +00:00
$count = 0 ;
2013-08-09 16:11:15 +00:00
2016-01-20 11:32:49 +00:00
if ( ! is_array ( $products ) ) {
2016-08-01 10:41:52 +00:00
$products = array ( $products => 1 );
2016-01-20 11:32:49 +00:00
$show_qty = false ;
}
2016-06-16 21:32:06 +00:00
if ( ! $show_qty ) {
2016-07-18 17:52:26 +00:00
$products = array_fill_keys ( array_keys ( $products ), 1 );
2016-01-20 11:32:49 +00:00
}
foreach ( $products as $product_id => $qty ) {
2018-03-07 15:12:27 +00:00
/* translators: %s: product name */
2016-01-20 11:32:49 +00:00
$titles [] = ( $qty > 1 ? absint ( $qty ) . ' × ' : '' ) . sprintf ( _x ( '“%s”' , 'Item name in quotes' , 'woocommerce' ), strip_tags ( get_the_title ( $product_id ) ) );
2018-03-07 15:12:27 +00:00
$count += $qty ;
2013-08-09 16:11:15 +00:00
}
2018-03-07 15:12:27 +00:00
$titles = array_filter ( $titles );
/* translators: %s: product name */
2016-01-20 11:32:49 +00:00
$added_text = sprintf ( _n ( '%s has been added to your cart.' , '%s have been added to your cart.' , $count , 'woocommerce' ), wc_format_list_of_items ( $titles ) );
2013-08-09 16:11:15 +00:00
2018-03-07 15:12:27 +00:00
// Output success messages.
2015-04-20 11:29:01 +00:00
if ( 'yes' === get_option ( 'woocommerce_cart_redirect_after_add' ) ) {
2016-06-15 19:34:05 +00:00
$return_to = apply_filters ( 'woocommerce_continue_shopping_redirect' , wc_get_raw_referer () ? wp_validate_redirect ( wc_get_raw_referer (), false ) : wc_get_page_permalink ( 'shop' ) );
2016-10-12 10:16:30 +00:00
$message = sprintf ( '<a href="%s" class="button wc-forward">%s</a> %s' , esc_url ( $return_to ), esc_html__ ( 'Continue shopping' , 'woocommerce' ), esc_html ( $added_text ) );
2015-04-20 11:29:01 +00:00
} else {
2018-03-07 15:12:27 +00:00
$message = sprintf ( '<a href="%s" class="button wc-forward">%s</a> %s' , esc_url ( wc_get_page_permalink ( 'cart' ) ), esc_html__ ( 'View cart' , 'woocommerce' ), esc_html ( $added_text ) );
2015-04-20 11:29:01 +00:00
}
2013-08-09 16:11:15 +00:00
2017-02-06 18:11:54 +00:00
if ( has_filter ( 'wc_add_to_cart_message' ) ) {
2017-03-15 16:36:53 +00:00
wc_deprecated_function ( 'The wc_add_to_cart_message filter' , '3.0' , 'wc_add_to_cart_message_html' );
2017-02-06 18:11:54 +00:00
$message = apply_filters ( 'wc_add_to_cart_message' , $message , $product_id );
}
$message = apply_filters ( 'wc_add_to_cart_message_html' , $message , $products );
2016-08-01 10:41:52 +00:00
if ( $return ) {
return $message ;
} else {
wc_add_notice ( $message );
}
2013-08-09 16:11:15 +00:00
}
2015-03-09 13:12:11 +00:00
/**
2018-03-07 15:12:27 +00:00
* Comma separate a list of item names , and replace final comma with 'and' .
*
* @ param array $items Cart items .
2015-03-09 13:12:11 +00:00
* @ return string
*/
function wc_format_list_of_items ( $items ) {
2015-04-20 11:05:44 +00:00
$item_string = '' ;
foreach ( $items as $key => $item ) {
2016-01-20 11:32:49 +00:00
$item_string .= $item ;
2015-04-20 11:05:44 +00:00
2018-03-07 15:12:27 +00:00
if ( count ( $items ) === $key + 2 ) {
2015-04-20 11:05:44 +00:00
$item_string .= ' ' . __ ( 'and' , 'woocommerce' ) . ' ' ;
2018-03-07 15:12:27 +00:00
} elseif ( count ( $items ) !== $key + 1 ) {
2015-04-20 11:05:44 +00:00
$item_string .= ', ' ;
}
}
return $item_string ;
2015-03-09 13:12:11 +00:00
}
2013-08-09 16:11:15 +00:00
/**
* Clear cart after payment .
*/
2013-11-25 12:23:39 +00:00
function wc_clear_cart_after_payment () {
2014-02-11 12:49:02 +00:00
global $wp ;
2013-08-09 16:11:15 +00:00
if ( ! empty ( $wp -> query_vars [ 'order-received' ] ) ) {
2014-10-14 11:54:23 +00:00
$order_id = absint ( $wp -> query_vars [ 'order-received' ] );
2018-03-07 15:12:27 +00:00
$order_key = isset ( $_GET [ 'key' ] ) ? wc_clean ( wp_unslash ( $_GET [ 'key' ] ) ) : '' ; // WPCS: input var ok, CSRF ok.
2013-08-09 16:11:15 +00:00
if ( $order_id > 0 ) {
2014-08-15 12:29:21 +00:00
$order = wc_get_order ( $order_id );
2013-08-09 16:11:15 +00:00
2017-04-11 18:29:20 +00:00
if ( $order && $order -> get_order_key () === $order_key ) {
2013-11-25 14:01:32 +00:00
WC () -> cart -> empty_cart ();
2013-08-09 16:11:15 +00:00
}
}
}
2013-11-25 14:01:32 +00:00
if ( WC () -> session -> order_awaiting_payment > 0 ) {
2014-08-15 12:29:21 +00:00
$order = wc_get_order ( WC () -> session -> order_awaiting_payment );
2013-08-09 16:11:15 +00:00
2016-08-05 14:56:23 +00:00
if ( $order && $order -> get_id () > 0 ) {
2018-03-07 15:12:27 +00:00
// If the order has not failed, or is not pending, the order must have gone through.
2014-10-14 11:54:23 +00:00
if ( ! $order -> has_status ( array ( 'failed' , 'pending' , 'cancelled' ) ) ) {
2013-11-25 14:01:32 +00:00
WC () -> cart -> empty_cart ();
2014-05-30 16:43:21 +00:00
}
2013-08-09 16:11:15 +00:00
}
}
}
2013-11-25 12:23:39 +00:00
add_action ( 'get_header' , 'wc_clear_cart_after_payment' );
2013-08-09 16:11:15 +00:00
2013-11-25 15:17:18 +00:00
/**
2015-11-03 13:31:20 +00:00
* Get the subtotal .
2013-11-25 15:17:18 +00:00
*/
function wc_cart_totals_subtotal_html () {
2018-03-07 15:12:27 +00:00
echo WC () -> cart -> get_cart_subtotal (); // WPCS: XSS ok.
2013-11-25 15:17:18 +00:00
}
/**
2015-11-03 13:31:20 +00:00
* Get shipping methods .
2013-11-25 15:17:18 +00:00
*/
function wc_cart_totals_shipping_html () {
2015-03-10 16:43:02 +00:00
$packages = WC () -> shipping -> get_packages ();
2017-04-17 15:35:33 +00:00
$first = true ;
2013-11-25 15:17:18 +00:00
2015-03-10 16:43:02 +00:00
foreach ( $packages as $i => $package ) {
$chosen_method = isset ( WC () -> session -> chosen_shipping_methods [ $i ] ) ? WC () -> session -> chosen_shipping_methods [ $i ] : '' ;
2015-12-16 13:00:16 +00:00
$product_names = array ();
2018-03-07 15:12:27 +00:00
if ( count ( $packages ) > 1 ) {
2015-12-16 13:00:16 +00:00
foreach ( $package [ 'contents' ] as $item_id => $values ) {
2016-12-19 10:52:02 +00:00
$product_names [ $item_id ] = $values [ 'data' ] -> get_name () . ' ×' . $values [ 'quantity' ];
2015-12-16 13:00:16 +00:00
}
2016-12-17 12:47:43 +00:00
$product_names = apply_filters ( 'woocommerce_shipping_package_details_array' , $product_names , $package );
2015-12-16 13:00:16 +00:00
}
2013-11-25 15:17:18 +00:00
2018-03-07 15:12:27 +00:00
wc_get_template (
'cart/cart-shipping.php' , array (
'package' => $package ,
'available_methods' => $package [ 'rates' ],
'show_package_details' => count ( $packages ) > 1 ,
'show_shipping_calculator' => is_cart () && $first ,
'package_details' => implode ( ', ' , $product_names ),
/* translators: %d: shipping package number */
'package_name' => apply_filters ( 'woocommerce_shipping_package_name' , ( ( $i + 1 ) > 1 ) ? sprintf ( _x ( 'Shipping %d' , 'shipping packages' , 'woocommerce' ), ( $i + 1 ) ) : _x ( 'Shipping' , 'shipping package' , 'woocommerce' ), $i , $package ),
'index' => $i ,
'chosen_method' => $chosen_method ,
)
);
2017-04-27 16:41:25 +00:00
$first = false ;
2015-03-10 16:43:02 +00:00
}
2013-11-25 15:17:18 +00:00
}
2014-03-21 00:54:42 +00:00
/**
2015-11-03 13:31:20 +00:00
* Get taxes total .
2014-03-21 00:54:42 +00:00
*/
function wc_cart_totals_taxes_total_html () {
2018-03-07 15:12:27 +00:00
echo apply_filters ( 'woocommerce_cart_totals_taxes_total_html' , wc_price ( WC () -> cart -> get_taxes_total () ) ); // WPCS: XSS ok.
2014-03-21 00:54:42 +00:00
}
2014-02-21 15:16:43 +00:00
/**
2015-11-03 13:31:20 +00:00
* Get a coupon label .
2014-02-21 15:16:43 +00:00
*
2018-03-07 15:12:27 +00:00
* @ param string | WC_Coupon $coupon Coupon data or code .
* @ param bool $echo Echo or return .
2017-05-12 08:48:46 +00:00
*
* @ return string
2014-02-21 15:16:43 +00:00
*/
2016-03-08 13:41:34 +00:00
function wc_cart_totals_coupon_label ( $coupon , $echo = true ) {
if ( is_string ( $coupon ) ) {
2014-02-21 15:16:43 +00:00
$coupon = new WC_Coupon ( $coupon );
2016-03-08 13:41:34 +00:00
}
2018-03-07 15:12:27 +00:00
/* translators: %s: coupon code */
2016-10-24 07:33:32 +00:00
$label = apply_filters ( 'woocommerce_cart_totals_coupon_label' , sprintf ( esc_html__ ( 'Coupon: %s' , 'woocommerce' ), $coupon -> get_code () ), $coupon );
2014-02-21 15:16:43 +00:00
2016-03-08 13:41:34 +00:00
if ( $echo ) {
2018-03-07 15:12:27 +00:00
echo $label ; // WPCS: XSS ok.
2016-03-08 13:41:34 +00:00
} else {
return $label ;
}
2014-02-21 15:16:43 +00:00
}
2013-11-25 15:17:18 +00:00
/**
2017-03-21 13:04:29 +00:00
* Get coupon display HTML .
2013-11-25 15:17:18 +00:00
*
2018-03-07 15:12:27 +00:00
* @ param string | WC_Coupon $coupon Coupon data or code .
2013-11-25 15:17:18 +00:00
*/
function wc_cart_totals_coupon_html ( $coupon ) {
2014-03-18 21:29:15 +00:00
if ( is_string ( $coupon ) ) {
2013-11-25 15:17:18 +00:00
$coupon = new WC_Coupon ( $coupon );
2015-10-28 17:43:31 +00:00
}
2013-11-25 15:17:18 +00:00
2017-03-28 18:10:05 +00:00
$discount_amount_html = '' ;
2018-03-07 15:12:27 +00:00
$amount = WC () -> cart -> get_coupon_discount_amount ( $coupon -> get_code (), WC () -> cart -> display_cart_ex_tax );
2018-02-28 08:45:09 +00:00
$discount_amount_html = '-' . wc_price ( $amount );
if ( $coupon -> get_free_shipping () ) {
2017-03-21 13:04:29 +00:00
$discount_amount_html = __ ( 'Free shipping coupon' , 'woocommerce' );
2015-10-28 17:43:31 +00:00
}
2014-03-18 21:29:15 +00:00
2017-03-21 13:04:29 +00:00
$discount_amount_html = apply_filters ( 'woocommerce_coupon_discount_amount_html' , $discount_amount_html , $coupon );
2018-03-07 15:12:27 +00:00
$coupon_html = $discount_amount_html . ' <a href="' . esc_url ( add_query_arg ( 'remove_coupon' , rawurlencode ( $coupon -> get_code () ), defined ( 'WOOCOMMERCE_CHECKOUT' ) ? wc_get_checkout_url () : wc_get_cart_url () ) ) . '" class="woocommerce-remove-coupon" data-coupon="' . esc_attr ( $coupon -> get_code () ) . '">' . __ ( '[Remove]' , 'woocommerce' ) . '</a>' ;
2014-01-14 00:53:50 +00:00
2018-03-07 15:12:27 +00:00
echo wp_kses ( apply_filters ( 'woocommerce_cart_totals_coupon_html' , $coupon_html , $coupon , $discount_amount_html ), array_replace_recursive ( wp_kses_allowed_html ( 'post' ), array ( 'a' => array ( 'data-coupon' => true ) ) ) ); // phpcs:ignore PHPCompatibility.PHP.NewFunctions.array_replace_recursiveFound
2013-11-25 15:17:18 +00:00
}
/**
2015-11-03 13:31:20 +00:00
* Get order total html including inc tax if needed .
2013-11-25 15:17:18 +00:00
*/
function wc_cart_totals_order_total_html () {
2015-02-24 12:05:32 +00:00
$value = '<strong>' . WC () -> cart -> get_total () . '</strong> ' ;
2013-11-25 15:17:18 +00:00
2017-10-27 14:21:03 +00:00
// If prices are tax inclusive, show taxes here.
2017-12-15 13:39:35 +00:00
if ( wc_tax_enabled () && WC () -> cart -> display_prices_including_tax () ) {
2013-11-25 15:17:18 +00:00
$tax_string_array = array ();
2017-10-27 18:01:33 +00:00
$cart_tax_totals = WC () -> cart -> get_tax_totals ();
2013-11-25 15:17:18 +00:00
2018-03-07 15:12:27 +00:00
if ( get_option ( 'woocommerce_tax_total_display' ) === 'itemized' ) {
2017-10-27 18:01:33 +00:00
foreach ( $cart_tax_totals as $code => $tax ) {
2013-11-25 15:17:18 +00:00
$tax_string_array [] = sprintf ( '%s %s' , $tax -> formatted_amount , $tax -> label );
2017-03-07 20:24:24 +00:00
}
2017-10-27 18:01:33 +00:00
} elseif ( ! empty ( $cart_tax_totals ) ) {
2017-10-27 14:21:03 +00:00
$tax_string_array [] = sprintf ( '%s %s' , wc_price ( WC () -> cart -> get_taxes_total ( true , true ) ), WC () -> countries -> tax_or_vat () );
2013-11-25 15:17:18 +00:00
}
2015-02-24 12:05:32 +00:00
if ( ! empty ( $tax_string_array ) ) {
2016-01-25 10:06:53 +00:00
$taxable_address = WC () -> customer -> get_taxable_address ();
2018-03-07 15:12:27 +00:00
/* translators: %s: country name */
$estimated_text = WC () -> customer -> is_customer_outside_base () && ! WC () -> customer -> has_calculated_shipping () ? sprintf ( ' ' . __ ( 'estimated for %s' , 'woocommerce' ), WC () -> countries -> estimated_for_prefix ( $taxable_address [ 0 ] ) . WC () -> countries -> countries [ $taxable_address [ 0 ] ] ) : '' ;
/* translators: %s: tax information */
2016-01-28 13:21:03 +00:00
$value .= '<small class="includes_tax">' . sprintf ( __ ( '(includes %s)' , 'woocommerce' ), implode ( ', ' , $tax_string_array ) . $estimated_text ) . '</small>' ;
2015-02-24 12:05:32 +00:00
}
2013-11-25 15:17:18 +00:00
}
2015-02-24 12:05:32 +00:00
2018-03-07 15:12:27 +00:00
echo apply_filters ( 'woocommerce_cart_totals_order_total_html' , $value ); // WPCS: XSS ok.
2013-11-25 15:17:18 +00:00
}
/**
2015-11-03 13:31:20 +00:00
* Get the fee value .
2013-11-25 15:17:18 +00:00
*
2018-03-07 15:12:27 +00:00
* @ param object $fee Fee data .
2013-11-25 15:17:18 +00:00
*/
function wc_cart_totals_fee_html ( $fee ) {
2017-12-15 13:39:35 +00:00
$cart_totals_fee_html = WC () -> cart -> display_prices_including_tax () ? wc_price ( $fee -> total + $fee -> tax ) : wc_price ( $fee -> total );
2014-03-12 11:11:22 +00:00
2018-03-07 15:12:27 +00:00
echo apply_filters ( 'woocommerce_cart_totals_fee_html' , $cart_totals_fee_html , $fee ); // WPCS: XSS ok.
2013-11-25 15:17:18 +00:00
}
/**
2015-11-03 13:31:20 +00:00
* Get a shipping methods full label including price .
2018-03-07 15:12:27 +00:00
*
* @ param WC_Shipping_Rate $method Shipping method rate data .
2013-11-25 15:17:18 +00:00
* @ return string
*/
function wc_cart_totals_shipping_method_label ( $method ) {
2015-10-01 15:17:45 +00:00
$label = $method -> get_label ();
2013-11-25 15:17:18 +00:00
2018-01-31 17:11:21 +00:00
if ( $method -> cost >= 0 && $method -> get_method_id () !== 'free_shipping' ) {
2017-12-15 13:39:35 +00:00
if ( WC () -> cart -> display_prices_including_tax () ) {
2013-11-25 15:17:18 +00:00
$label .= ': ' . wc_price ( $method -> cost + $method -> get_shipping_tax () );
2017-08-18 10:37:22 +00:00
if ( $method -> get_shipping_tax () > 0 && ! wc_prices_include_tax () ) {
2015-05-27 15:17:33 +00:00
$label .= ' <small class="tax_label">' . WC () -> countries -> inc_tax_or_vat () . '</small>' ;
2013-11-25 15:17:18 +00:00
}
2017-12-15 13:39:35 +00:00
} else {
$label .= ': ' . wc_price ( $method -> cost );
if ( $method -> get_shipping_tax () > 0 && wc_prices_include_tax () ) {
$label .= ' <small class="tax_label">' . WC () -> countries -> ex_tax_or_vat () . '</small>' ;
}
2013-11-25 15:17:18 +00:00
}
}
return apply_filters ( 'woocommerce_cart_shipping_method_full_label' , $label , $method );
2014-02-10 12:36:34 +00:00
}
2015-07-21 22:45:13 +00:00
/**
2015-11-03 13:31:20 +00:00
* Round discount .
2015-07-21 22:45:13 +00:00
*
2017-12-05 12:10:23 +00:00
* @ param double $value Amount to round .
* @ param int $precision DP to round .
2015-07-21 22:45:13 +00:00
* @ return float
*/
function wc_cart_round_discount ( $value , $precision ) {
2018-03-07 13:21:23 +00:00
return wc_round_discount ( $value , $precision );
2015-07-21 22:45:13 +00:00
}
2016-06-29 14:23:39 +00:00
/**
* Gets chosen shipping method IDs from chosen_shipping_methods session , without instance IDs .
2017-12-05 12:10:23 +00:00
*
2016-06-29 14:23:39 +00:00
* @ since 2.6 . 2
* @ return string []
*/
function wc_get_chosen_shipping_method_ids () {
$method_ids = array ();
$chosen_methods = WC () -> session -> get ( 'chosen_shipping_methods' , array () );
foreach ( $chosen_methods as $chosen_method ) {
$chosen_method = explode ( ':' , $chosen_method );
$method_ids [] = current ( $chosen_method );
}
return $method_ids ;
}
2017-07-25 14:11:32 +00:00
/**
* Get chosen method for package from session .
*
* @ since 3.2 . 0
2017-09-20 13:03:06 +00:00
* @ param int $key Key of package .
* @ param array $package Package data array .
2017-07-25 14:11:32 +00:00
* @ return string | bool
*/
function wc_get_chosen_shipping_method_for_package ( $key , $package ) {
$chosen_methods = WC () -> session -> get ( 'chosen_shipping_methods' );
$chosen_method = isset ( $chosen_methods [ $key ] ) ? $chosen_methods [ $key ] : false ;
$changed = wc_shipping_methods_have_changed ( $key , $package );
2017-09-20 13:03:06 +00:00
2018-03-07 15:12:27 +00:00
// This is deprecated but here for BW compat. TODO: Remove in 4.0.0.
$method_counts = WC () -> session -> get ( 'shipping_method_counts' );
2017-09-20 13:11:47 +00:00
if ( ! empty ( $method_counts [ $key ] ) ) {
$method_count = absint ( $method_counts [ $key ] );
} else {
$method_count = 0 ;
}
2017-09-20 13:03:06 +00:00
// If not set, not available, or available methods have changed, set to the DEFAULT option.
2018-03-07 15:12:27 +00:00
if ( ! $chosen_method || $changed || ! isset ( $package [ 'rates' ][ $chosen_method ] ) || count ( $package [ 'rates' ] ) !== $method_count ) {
2017-07-25 14:11:32 +00:00
$chosen_method = wc_get_default_shipping_method_for_package ( $key , $package , $chosen_method );
$chosen_methods [ $key ] = $chosen_method ;
2018-03-07 15:12:27 +00:00
$method_counts [ $key ] = count ( $package [ 'rates' ] );
2017-09-20 13:11:47 +00:00
2017-07-25 14:11:32 +00:00
WC () -> session -> set ( 'chosen_shipping_methods' , $chosen_methods );
2017-09-20 13:11:47 +00:00
WC () -> session -> set ( 'shipping_method_counts' , $method_counts );
2017-07-25 14:11:32 +00:00
do_action ( 'woocommerce_shipping_method_chosen' , $chosen_method );
}
return $chosen_method ;
}
2017-09-20 13:03:06 +00:00
2017-07-25 14:11:32 +00:00
/**
* Choose the default method for a package .
*
* @ since 3.2 . 0
2017-09-20 13:03:06 +00:00
* @ param int $key Key of package .
* @ param array $package Package data array .
2017-12-11 06:45:44 +00:00
* @ param string $chosen_method Chosen method id .
2017-07-25 14:11:32 +00:00
* @ return string
*/
function wc_get_default_shipping_method_for_package ( $key , $package , $chosen_method ) {
$rate_keys = array_keys ( $package [ 'rates' ] );
$default = current ( $rate_keys );
$coupons = WC () -> cart -> get_coupons ();
foreach ( $coupons as $coupon ) {
if ( $coupon -> get_free_shipping () ) {
foreach ( $rate_keys as $rate_key ) {
if ( 0 === stripos ( $rate_key , 'free_shipping' ) ) {
$default = $rate_key ;
break ;
}
}
break ;
}
}
return apply_filters ( 'woocommerce_shipping_chosen_method' , $default , $package [ 'rates' ], $chosen_method );
}
2017-09-20 13:03:06 +00:00
2017-07-25 14:11:32 +00:00
/**
* See if the methods have changed since the last request .
*
* @ since 3.2 . 0
2017-09-20 13:03:06 +00:00
* @ param int $key Key of package .
* @ param array $package Package data array .
2017-07-25 14:11:32 +00:00
* @ return bool
*/
function wc_shipping_methods_have_changed ( $key , $package ) {
// Lookup previous methods from session.
$previous_shipping_methods = WC () -> session -> get ( 'previous_shipping_methods' );
// Get new and old rates.
$new_rates = array_keys ( $package [ 'rates' ] );
$prev_rates = isset ( $previous_shipping_methods [ $key ] ) ? $previous_shipping_methods [ $key ] : false ;
// Update session.
$previous_shipping_methods [ $key ] = $new_rates ;
WC () -> session -> set ( 'previous_shipping_methods' , $previous_shipping_methods );
2017-09-20 13:03:06 +00:00
return $new_rates !== $prev_rates ;
2017-07-25 14:11:32 +00:00
}
2018-03-05 19:57:57 +00:00
/**
* Gets a hash of important product data that when changed should cause cart items to be invalidated .
*
* The woocommerce_cart_item_data_to_validate filter can be used to add custom properties .
*
* @ param WC_Product $product Product object .
* @ return string
*/
function wc_get_cart_item_data_hash ( $product ) {
2018-03-07 15:12:27 +00:00
return md5 (
wp_json_encode (
apply_filters (
'woocommerce_cart_item_data_to_validate' , array (
'type' => $product -> get_type (),
'attributes' => 'variation' === $product -> get_type () ? $product -> get_variation_attributes () : '' ,
)
)
)
);
2018-03-05 19:57:57 +00:00
}