2012-12-31 18:25:09 +00:00
< ? php
2017-05-23 14:40:19 +00:00
if ( ! defined ( 'ABSPATH' ) ) {
exit ;
}
2012-12-31 18:25:09 +00:00
/**
2015-11-03 13:53:50 +00:00
* Cart Shortcode
2012-12-31 18:25:09 +00:00
*
* Used on the cart page , the cart shortcode displays the cart contents and interface for coupon codes and other cart bits and pieces .
*
* @ author WooThemes
* @ category Shortcodes
* @ package WooCommerce / Shortcodes / Cart
2014-09-24 14:26:48 +00:00
* @ version 2.3 . 0
2012-12-31 18:25:09 +00:00
*/
class WC_Shortcode_Cart {
/**
2015-11-03 13:31:20 +00:00
* Calculate shipping for the cart .
2012-12-31 18:25:09 +00:00
*/
2014-09-24 14:26:48 +00:00
public static function calculate_shipping () {
try {
WC () -> shipping -> reset_shipping ();
2017-12-08 14:11:41 +00:00
$country = isset ( $_POST [ 'calc_shipping_country' ] ) ? wc_clean ( wp_unslash ( $_POST [ 'calc_shipping_country' ] ) ) : '' ; // WPCS: input var ok, CSRF ok, sanitization ok.
$state = isset ( $_POST [ 'calc_shipping_state' ] ) ? wc_clean ( wp_unslash ( $_POST [ 'calc_shipping_state' ] ) ) : '' ; // WPCS: input var ok, CSRF ok, sanitization ok.
$postcode = isset ( $_POST [ 'calc_shipping_postcode' ] ) ? wc_clean ( wp_unslash ( $_POST [ 'calc_shipping_postcode' ] ) ) : '' ; // WPCS: input var ok, CSRF ok, sanitization ok.
$city = isset ( $_POST [ 'calc_shipping_city' ] ) ? wc_clean ( wp_unslash ( $_POST [ 'calc_shipping_city' ] ) ) : '' ; // WPCS: input var ok, CSRF ok, sanitization ok.
2014-09-24 14:26:48 +00:00
if ( $postcode && ! WC_Validation :: is_postcode ( $postcode , $country ) ) {
2016-10-11 01:39:13 +00:00
throw new Exception ( __ ( 'Please enter a valid postcode / ZIP.' , 'woocommerce' ) );
2014-09-24 14:26:48 +00:00
} elseif ( $postcode ) {
$postcode = wc_format_postcode ( $postcode , $country );
}
if ( $country ) {
WC () -> customer -> set_location ( $country , $state , $postcode , $city );
WC () -> customer -> set_shipping_location ( $country , $state , $postcode , $city );
} else {
2017-10-13 18:22:09 +00:00
WC () -> customer -> set_billing_address_to_base ();
WC () -> customer -> set_shipping_address_to_base ();
2014-09-24 14:26:48 +00:00
}
2016-03-09 20:49:02 +00:00
WC () -> customer -> set_calculated_shipping ( true );
2016-11-14 18:18:08 +00:00
WC () -> customer -> save ();
2014-09-24 14:26:48 +00:00
wc_add_notice ( __ ( 'Shipping costs updated.' , 'woocommerce' ), 'notice' );
2014-09-20 19:33:32 +00:00
2014-09-24 14:26:48 +00:00
do_action ( 'woocommerce_calculated_shipping' );
} catch ( Exception $e ) {
if ( ! empty ( $e ) ) {
wc_add_notice ( $e -> getMessage (), 'error' );
}
2014-02-24 15:19:12 +00:00
}
2014-09-24 14:26:48 +00:00
}
2012-12-31 18:25:09 +00:00
2014-09-24 14:26:48 +00:00
/**
* Output the cart shortcode .
2017-01-03 18:17:04 +00:00
*
* @ param array $atts
2014-09-24 14:26:48 +00:00
*/
2017-01-03 18:17:04 +00:00
public static function output ( $atts ) {
2017-09-05 19:52:39 +00:00
// Constants.
wc_maybe_define_constant ( 'WOOCOMMERCE_CART' , true );
2012-12-31 18:25:09 +00:00
2017-01-03 18:17:04 +00:00
$atts = shortcode_atts ( array (), $atts , 'woocommerce_cart' );
2012-12-31 18:25:09 +00:00
// Update Shipping
2013-12-31 14:02:50 +00:00
if ( ! empty ( $_POST [ 'calc_shipping' ] ) && wp_verify_nonce ( $_POST [ '_wpnonce' ], 'woocommerce-cart' ) ) {
2014-09-24 14:26:48 +00:00
self :: calculate_shipping ();
2016-06-18 19:16:12 +00:00
// Also calc totals before we check items so subtotals etc are up to date
WC () -> cart -> calculate_totals ();
2012-12-31 18:25:09 +00:00
}
// Check cart items are valid
2014-09-24 14:26:48 +00:00
do_action ( 'woocommerce_check_cart_items' );
2012-12-31 18:25:09 +00:00
// Calc totals
2013-11-25 14:01:32 +00:00
WC () -> cart -> calculate_totals ();
2012-12-31 18:25:09 +00:00
2015-05-14 21:18:53 +00:00
if ( WC () -> cart -> is_empty () ) {
2013-11-25 12:45:04 +00:00
wc_get_template ( 'cart/cart-empty.php' );
2014-09-24 14:26:48 +00:00
} else {
2013-11-25 12:45:04 +00:00
wc_get_template ( 'cart/cart.php' );
2014-09-24 14:26:48 +00:00
}
2012-12-31 18:25:09 +00:00
}
2014-02-16 18:53:55 +00:00
}