2013-08-09 16:11:15 +00:00
< ? php
/**
* WooCommerce Cart Functions
*
* Functions for cart specific things .
*
* @ author WooThemes
* @ category Core
* @ package WooCommerce / Functions
* @ version 2.1 . 0
*/
2014-09-20 19:06:15 +00:00
if ( ! defined ( 'ABSPATH' ) ) {
exit ; // Exit if accessed directly
}
2013-08-09 16:11:15 +00:00
2013-08-19 17:19:27 +00:00
/**
* Prevent password protected products being added to the cart
*
* @ param bool $passed
* @ param int $product_id
* @ 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
/**
* Clears the cart session when called
*/
2013-11-25 12:23:39 +00:00
function wc_empty_cart () {
2014-05-20 09:01:26 +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-03-06 12:01:58 +00:00
* Load the persistent cart
2013-11-25 12:23:39 +00:00
*
2014-11-20 00:43:09 +00:00
* @ param string $user_login
* @ param WP_User $user
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 ) {
2015-03-06 12:01:58 +00:00
if ( ! $user || ! ( $saved_cart = get_user_meta ( $user -> ID , '_woocommerce_persistent_cart' , true ) ) ) {
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
2015-03-06 12:01:58 +00:00
if ( empty ( WC () -> session -> cart ) || ! is_array ( WC () -> session -> cart ) || sizeof ( WC () -> session -> cart ) === 0 ) {
WC () -> session -> cart = $saved_cart [ 'cart' ];
2014-11-20 00:43:09 +00:00
}
2013-08-09 16:11:15 +00:00
}
/**
* Add to cart messages .
*
* @ access public
2014-02-11 12:49:02 +00:00
* @ param int | array $product_id
2013-08-09 16:11:15 +00:00
*/
2013-11-25 12:23:39 +00:00
function wc_add_to_cart_message ( $product_id ) {
2015-04-20 11:29:01 +00:00
$titles = array ();
2013-08-09 16:11:15 +00:00
if ( is_array ( $product_id ) ) {
foreach ( $product_id as $id ) {
$titles [] = get_the_title ( $id );
}
} else {
2015-04-20 11:29:01 +00:00
$titles [] = get_the_title ( $product_id );
2013-08-09 16:11:15 +00:00
}
2015-04-20 11:29:01 +00:00
$titles = array_filter ( $titles );
$added_text = sprintf ( _n ( '%s has been added to your cart.' , '%s have been added to your cart.' , sizeof ( $titles ), 'woocommerce' ), wc_format_list_of_items ( $titles ) );
2013-08-09 16:11:15 +00:00
2015-04-20 11:29:01 +00:00
// Output success messages
if ( 'yes' === get_option ( 'woocommerce_cart_redirect_after_add' ) ) {
$return_to = apply_filters ( 'woocommerce_continue_shopping_redirect' , wp_get_referer () ? wp_get_referer () : home_url () );
$message = sprintf ( '<a href="%s" class="button wc-forward">%s</a> %s' , $return_to , __ ( 'Continue Shopping' , 'woocommerce' ), $added_text );
} else {
$message = sprintf ( '<a href="%s" class="button wc-forward">%s</a> %s' , wc_get_page_permalink ( 'cart' ), __ ( 'View Cart' , 'woocommerce' ), $added_text );
}
2013-08-09 16:11:15 +00:00
2014-02-06 19:24:34 +00:00
wc_add_notice ( apply_filters ( 'wc_add_to_cart_message' , $message , $product_id ) );
2013-08-09 16:11:15 +00:00
}
2015-03-09 13:12:11 +00:00
/**
* Comma separate a list of item names , and replace final comma with 'and'
* @ param array $items
* @ return string
*/
function wc_format_list_of_items ( $items ) {
2015-04-20 11:05:44 +00:00
$item_string = '' ;
foreach ( $items as $key => $item ) {
2015-07-13 14:03:03 +00:00
$item_string .= sprintf ( _x ( '“%s“' , 'Item name in quotes' , 'woocommerce' ), $item );
2015-04-20 11:05:44 +00:00
if ( $key + 2 === sizeof ( $items ) ) {
$item_string .= ' ' . __ ( 'and' , 'woocommerce' ) . ' ' ;
} elseif ( $key + 1 !== sizeof ( $items ) ) {
$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 .
*
* @ access public
*/
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' ] );
$order_key = isset ( $_GET [ 'key' ] ) ? wc_clean ( $_GET [ 'key' ] ) : '' ;
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
2014-10-14 11:54:23 +00:00
if ( $order -> 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
2014-10-31 12:37:08 +00:00
if ( $order && $order -> id > 0 ) {
2013-08-09 16:11:15 +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
/**
* Get the subtotal
*
* @ access public
* @ return string
*/
function wc_cart_totals_subtotal_html () {
echo WC () -> cart -> get_cart_subtotal ();
}
/**
* Get shipping methods
*
* @ access public
*/
function wc_cart_totals_shipping_html () {
2015-03-10 16:43:02 +00:00
$packages = WC () -> shipping -> get_packages ();
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 ] : '' ;
2013-11-25 15:17:18 +00:00
2015-03-10 16:43:02 +00:00
wc_get_template ( 'cart/cart-shipping.php' , array ( 'package' => $package , 'available_methods' => $package [ 'rates' ], 'show_package_details' => ( sizeof ( $packages ) > 1 ), 'index' => $i , 'chosen_method' => $chosen_method ) );
}
2013-11-25 15:17:18 +00:00
}
2014-03-21 00:54:42 +00:00
/**
* Get taxes total
*
* @ access public
*/
function wc_cart_totals_taxes_total_html () {
echo apply_filters ( 'woocommerce_cart_totals_taxes_total_html' , wc_price ( WC () -> cart -> get_taxes_total () ) );
}
2014-02-21 15:16:43 +00:00
/**
* Get a coupon label
*
* @ access public
* @ param string $coupon
*/
function wc_cart_totals_coupon_label ( $coupon ) {
if ( is_string ( $coupon ) )
$coupon = new WC_Coupon ( $coupon );
echo apply_filters ( 'woocommerce_cart_totals_coupon_label' , esc_html ( __ ( 'Coupon:' , 'woocommerce' ) . ' ' . $coupon -> code ), $coupon );
}
2013-11-25 15:17:18 +00:00
/**
* Get a coupon value
*
* @ access public
2014-02-11 12:49:02 +00:00
* @ param string $coupon
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 );
2014-03-18 21:29:15 +00:00
}
2013-11-25 15:17:18 +00:00
$value = array ();
2014-11-25 13:05:03 +00:00
if ( $amount = WC () -> cart -> get_coupon_discount_amount ( $coupon -> code , WC () -> cart -> display_cart_ex_tax ) ) {
$discount_html = '-' . wc_price ( $amount );
2014-01-14 00:53:16 +00:00
} else {
$discount_html = '' ;
}
$value [] = apply_filters ( 'woocommerce_coupon_discount_amount_html' , $discount_html , $coupon );
2013-11-25 15:17:18 +00:00
2014-03-18 21:29:15 +00:00
if ( $coupon -> enable_free_shipping () ) {
2013-11-25 15:17:18 +00:00
$value [] = __ ( 'Free shipping coupon' , 'woocommerce' );
2014-03-18 21:29:15 +00:00
}
// get rid of empty array elements
$value = array_filter ( $value );
2015-03-02 12:03:31 +00:00
$value = implode ( ', ' , $value ) . ' <a href="' . esc_url ( add_query_arg ( 'remove_coupon' , urlencode ( $coupon -> code ), defined ( 'WOOCOMMERCE_CHECKOUT' ) ? WC () -> cart -> get_checkout_url () : WC () -> cart -> get_cart_url () ) ) . '" class="woocommerce-remove-coupon" data-coupon="' . esc_attr ( $coupon -> code ) . '">' . __ ( '[Remove]' , 'woocommerce' ) . '</a>' ;
2014-01-14 00:53:50 +00:00
echo apply_filters ( 'woocommerce_cart_totals_coupon_html' , $value , $coupon );
2013-11-25 15:17:18 +00:00
}
/**
* Get order total html including inc tax if needed
*
* @ access public
*/
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
// If prices are tax inclusive, show taxes here
2014-11-18 16:45:29 +00:00
if ( wc_tax_enabled () && WC () -> cart -> tax_display_cart == 'incl' ) {
2013-11-25 15:17:18 +00:00
$tax_string_array = array ();
if ( get_option ( 'woocommerce_tax_total_display' ) == 'itemized' ) {
foreach ( WC () -> cart -> get_tax_totals () as $code => $tax )
$tax_string_array [] = sprintf ( '%s %s' , $tax -> formatted_amount , $tax -> label );
} else {
$tax_string_array [] = sprintf ( '%s %s' , wc_price ( WC () -> cart -> get_taxes_total ( true , true ) ), WC () -> countries -> tax_or_vat () );
}
2015-02-24 12:05:32 +00:00
if ( ! empty ( $tax_string_array ) ) {
$value .= '<small class="includes_tax">' . sprintf ( __ ( '(Includes %s)' , 'woocommerce' ), implode ( ', ' , $tax_string_array ) ) . '</small>' ;
}
2013-11-25 15:17:18 +00:00
}
2015-02-24 12:05:32 +00:00
echo apply_filters ( 'woocommerce_cart_totals_order_total_html' , $value );
2013-11-25 15:17:18 +00:00
}
/**
* Get the fee value
*
* @ param object $fee
*/
function wc_cart_totals_fee_html ( $fee ) {
2014-03-12 11:11:22 +00:00
$cart_totals_fee_html = ( 'excl' == WC () -> cart -> tax_display_cart ) ? wc_price ( $fee -> amount ) : wc_price ( $fee -> amount + $fee -> tax );
echo apply_filters ( 'woocommerce_cart_totals_fee_html' , $cart_totals_fee_html , $fee );
2013-11-25 15:17:18 +00:00
}
/**
* Get a shipping methods full label including price
* @ param object $method
* @ return string
*/
function wc_cart_totals_shipping_method_label ( $method ) {
$label = $method -> label ;
if ( $method -> cost > 0 ) {
if ( WC () -> cart -> tax_display_cart == 'excl' ) {
$label .= ': ' . wc_price ( $method -> cost );
if ( $method -> get_shipping_tax () > 0 && WC () -> cart -> prices_include_tax ) {
2015-05-27 15:17:33 +00:00
$label .= ' <small class="tax_label">' . WC () -> countries -> ex_tax_or_vat () . '</small>' ;
2013-11-25 15:17:18 +00:00
}
} else {
$label .= ': ' . wc_price ( $method -> cost + $method -> get_shipping_tax () );
if ( $method -> get_shipping_tax () > 0 && ! WC () -> cart -> 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
}
}
} elseif ( $method -> id !== 'free_shipping' ) {
$label .= ' (' . __ ( 'Free' , 'woocommerce' ) . ')' ;
}
return apply_filters ( 'woocommerce_cart_shipping_method_full_label' , $label , $method );
2014-02-10 12:36:34 +00:00
}