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 .
*
2015-10-28 17:43:31 +00:00
* @ author WooThemes
* @ category Core
* @ package WooCommerce / Functions
* @ version 2.5 . 0
2013-08-09 16:11:15 +00:00
*/
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
/**
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
*
* @ 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
/**
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
*
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-12-01 04:18:58 +00:00
if ( empty ( WC () -> session -> cart ) || ! is_array ( WC () -> session -> cart ) || 0 === sizeof ( WC () -> session -> 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 ();
}
2016-07-11 14:56:35 +00:00
if ( ! empty ( $_REQUEST [ '_wp_http_referer' ] ) ) {
return wp_unslash ( $_REQUEST [ '_wp_http_referer' ] );
} elseif ( ! empty ( $_SERVER [ 'HTTP_REFERER' ] ) ) {
return wp_unslash ( $_SERVER [ 'HTTP_REFERER' ] );
}
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 .
*
* @ access public
2016-01-20 11:32:49 +00:00
* @ param int | array $products
* @ param bool $show_qty Should qty ' s be shown ? Added in 2.6 . 0
2016-08-01 10:41:52 +00:00
* @ param bool $return Return message rather than add it .
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 ) {
$titles [] = ( $qty > 1 ? absint ( $qty ) . ' × ' : '' ) . sprintf ( _x ( '“%s”' , 'Item name in quotes' , 'woocommerce' ), strip_tags ( get_the_title ( $product_id ) ) );
$count += $qty ;
2013-08-09 16:11:15 +00:00
}
2015-04-20 11:29:01 +00:00
$titles = array_filter ( $titles );
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
2015-04-20 11:29:01 +00:00
// Output success messages
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 {
2016-10-12 10:16:30 +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
2016-08-01 10:41:52 +00:00
$message = apply_filters ( 'wc_add_to_cart_message' , $message , $product_id );
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
/**
* 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 ) {
2016-01-20 11:32:49 +00:00
$item_string .= $item ;
2015-04-20 11:05:44 +00:00
2016-09-07 22:32:24 +00:00
if ( sizeof ( $items ) === $key + 2 ) {
2015-04-20 11:05:44 +00:00
$item_string .= ' ' . __ ( 'and' , 'woocommerce' ) . ' ' ;
2016-09-07 22:32:24 +00:00
} elseif ( sizeof ( $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 .
*
* @ 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
2016-08-09 13:15:04 +00:00
if ( $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 ) {
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
/**
2015-11-03 13:31:20 +00:00
* Get the subtotal .
2013-11-25 15:17:18 +00:00
*
* @ access public
* @ return string
*/
function wc_cart_totals_subtotal_html () {
echo WC () -> cart -> get_cart_subtotal ();
}
/**
2015-11-03 13:31:20 +00:00
* Get shipping methods .
2013-11-25 15:17:18 +00:00
*
* @ 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 ] : '' ;
2015-12-16 13:00:16 +00:00
$product_names = array ();
if ( sizeof ( $packages ) > 1 ) {
foreach ( $package [ 'contents' ] as $item_id => $values ) {
WIP - Product CRUD (#12065)
* Created function to get the catalog visibility options
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* Hardcode the get_type per product class
* Initial look through getters and setters and abstract data
* Missing var
* Add related product functions and deprecate those in class.
* No need to exclude ID
* Fixed coding standards and improved the docblocks
* Get cached terms from wc_get_related_terms()
* Fixed wrong variable in wc_get_related_terms
* Use count() instead of sizeof()
* Sanitize ids later
* Remove unneeded comments
* wc_get_product_term_ids instead of related wording and use in other places.
get_the_terms is used here and also handles caching, something
wp_get_post_terms does not.
* Clean up the abstract product class a bit, deprecate two functions we have renamed, make update & create work properly, and add some tests for it.
* Bump template version
* Handle PR feedback: Remove duplicate regular_price update, allow changing of post status for products, remove deprecation for get_title since we might still offer it as a function
* Made abstract function useful
* External Product CRUD
* _virtual meta should be 'no', not taxable, in product unit test helper
* Grouped product class
* Tests
* Move children to meta and update test
* Use get_upsell_ids
* Spacing in query
* Moving and refactoring methods
* Availability html
* Tidy/add todos
* Rename method
* Put back review functions (still todo)
* missing $this
* get_price_including_tax/excluding_tax functions
* wc_get_price_to_display
* Price handling
* [Product CRUD] Variable (#12146)
* [Product CRUD] Variable Products
* Handle PR feedback.
* [Product CRUD] Grouped Handling (#12151)
* Handle grouped product saving
* Update routine
* [Product CRUD] Product crud terms (#12149)
* Category and tag id handling
* Replace template functions
* Remove todo
* Handle default name in save function
* Product crud admin save routine (#12174)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Spacing
* Fix comment
* wc_implode_text_attributes helper function
* [Product CRUD] Product crud admin use getters (#12196)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Move settings into new files
* Refactor panels and use getters
* Use getters for variation panel
* Revert save variation changes for now
* Add todos
* Fix downloads
* REST API CRUD Updates
* Additional API updates/fixes. Added some todos
* Fix final failing tests and implementing setters/getters and attributes functionality.
* Fix comparison for is_on_sale and remove download_type from WC_Product.
* Add a wc_get_products wrapper.
* Remove the download type input from the product data metabox for downloadable products. (#12221)
* [Product CRUD] Variations - setters, getters and admin. (#12228)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* Feedback fixes
* Implement CRUD in the legacy REST API
* Handle PR feedback
* [Product CRUD] Getter setter proxy methods (#12236)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* get_prop implementation in abstract and data classes
* Implement set_prop
* Change handling
* Array key exists
* set_object_read
* Use get_the_terms() instead of wp_get_post_terms()
wp_get_post_terms() is a wrapper around wp_get_object_terms() which does not
use the object cache, and generates a database query every time it is used.
get_the_terms() however can use data from the object cache if present.
* Allow WP_Query to preload post data, and meta in wc_get_products()
Allow WP_Query to bulk query for post data and meta if more than
just IDs are requested from wc_get_products(). Reduces query count
significantly.
* [Product CRUD] Variable, variation, notices, and stock handling (#12277)
* No longer needed
* Remove old todos
* Use getters in admin list
* Related and upsells update for CRUD
* Fix notice in gallery
* Variable fixes and todos
* Context
* Price sync
* Revert variation attributes change
* Return parent data in view context
* Defer term counting
* wc_find_matching_product_variation
* Stock manage tweaks
* Stock fixes
* Correct id
* correct id
* Better sync
* Data logic setter fix
* feedback
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* Hardcode the get_type per product class
* Initial look through getters and setters and abstract data
* Missing var
* Fixed coding standards and improved the docblocks
* Get cached terms from wc_get_related_terms()
* Fixed wrong variable in wc_get_related_terms
* Use count() instead of sizeof()
* Add related product functions and deprecate those in class.
* No need to exclude ID
* Sanitize ids later
* Clean up the abstract product class a bit, deprecate two functions we have renamed, make update & create work properly, and add some tests for it.
* Remove unneeded comments
* wc_get_product_term_ids instead of related wording and use in other places.
get_the_terms is used here and also handles caching, something
wp_get_post_terms does not.
* Handle PR feedback: Remove duplicate regular_price update, allow changing of post status for products, remove deprecation for get_title since we might still offer it as a function
* External Product CRUD
* _virtual meta should be 'no', not taxable, in product unit test helper
* Bump template version
* Made abstract function useful
* Grouped product class
* Tests
* Move children to meta and update test
* Use get_upsell_ids
* Spacing in query
* Moving and refactoring methods
* Availability html
* Tidy/add todos
* Rename method
* Put back review functions (still todo)
* missing $this
* get_price_including_tax/excluding_tax functions
* wc_get_price_to_display
* Price handling
* [Product CRUD] Variable (#12146)
* [Product CRUD] Variable Products
* Handle PR feedback.
* [Product CRUD] Grouped Handling (#12151)
* Handle grouped product saving
* Update routine
* [Product CRUD] Product crud terms (#12149)
* Category and tag id handling
* Replace template functions
* Remove todo
* Handle default name in save function
* Product crud admin save routine (#12174)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Spacing
* Fix comment
* wc_implode_text_attributes helper function
* [Product CRUD] Product crud admin use getters (#12196)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Move settings into new files
* Refactor panels and use getters
* Use getters for variation panel
* Revert save variation changes for now
* Add todos
* Fix downloads
* REST API CRUD Updates
* Additional API updates/fixes. Added some todos
* Fix final failing tests and implementing setters/getters and attributes functionality.
* Fix comparison for is_on_sale and remove download_type from WC_Product.
* Add a wc_get_products wrapper.
* Remove the download type input from the product data metabox for downloadable products. (#12221)
* [Product CRUD] Variations - setters, getters and admin. (#12228)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* Feedback fixes
* Implement CRUD in the legacy REST API
* Handle PR feedback
* [Product CRUD] Getter setter proxy methods (#12236)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* get_prop implementation in abstract and data classes
* Implement set_prop
* Change handling
* Array key exists
* set_object_read
* Use get_the_terms() instead of wp_get_post_terms()
wp_get_post_terms() is a wrapper around wp_get_object_terms() which does not
use the object cache, and generates a database query every time it is used.
get_the_terms() however can use data from the object cache if present.
* [Product CRUD] Variable, variation, notices, and stock handling (#12277)
* No longer needed
* Remove old todos
* Use getters in admin list
* Related and upsells update for CRUD
* Fix notice in gallery
* Variable fixes and todos
* Context
* Price sync
* Revert variation attributes change
* Return parent data in view context
* Defer term counting
* wc_find_matching_product_variation
* Stock manage tweaks
* Stock fixes
* Correct id
* correct id
* Better sync
* Data logic setter fix
* feedback
* Prevent notices
* Handle image_id from parent
* Fix error
* Remove _wc_save_product_price
* Remove todo
* Fixed wrong variation URLs
* Fixed undefined $image_id in WC_Product_Variation::get_image_id()
* Allow wc_rest_prepare_date_response() handle timestamps
* Updated get methods on REST API for variations
* Use variations CRUD to save variations metadata
* [Product CRUD] Abstract todos (#12305)
* Get dimensions and weights, with soft deprecation
* Product attributes
* Ratings
* Fix read method
* Downloads
* Feedback
* Revert "[Product CRUD] Abstract todos (#12305)"
This reverts commit 9a6136fcf88fec16f97457b7c8a4388f7587bfa2.
* Remove deprecated get_variation_id()
* New default attributes method
* [Product CRUD] Product Datastore (#12317)
* Fix up tests in the product/* folder.
* Handle data store updates for grouped, variable, external, simple, and general data store updates for products.
* Variations & variable changes.
* Update -functions.php calls to use data store.
* Add an interface for the public product data store methods.
* Finished product factory tests
* Correctly delete in the api, fix up some comments, and implement an interface for the public variable methods.
* Fix up delete in all versions of the api
* Handle feedback
* Match protected decloration to parent
* Product crud abstract todos (#12316)
* Get dimensions and weights, with soft deprecation
* Product attributes
* Ratings
* Fix read method
* Downloads
* Feedback
* Fix up store
* Fixed method returning in write context
* Fix error in variation admin
* Check for parent value - fixes tax class
* Remove old/complete todos
* Allow set tax class as "parent"
* Removed duplicated sync
* Fixed wrong variation URLs
* Fixed undefined $image_id in WC_Product_Variation::get_image_id()
* Allow wc_rest_prepare_date_response() handle timestamps
* Updated get methods on REST API for variations
* Use variations CRUD to save variations metadata
* Remove deprecated get_variation_id()
* New default attributes method
* Fixed method returning in write context
* Allow set tax class as "parent"
* Removed duplicated sync
* Fixed coding standards
* TODO is not accurate.
* Should pass WC_Product instancies to WC_Comments methods (#12327)
* Use new method in abstract order class to prevent headers sent issue in tests
* Fixed variable description in REST API
* Updated how create initial product variation
* Fixed a few fatal errors and warnings in Products CRUD (#12329)
* Fixed a few fatal errors and warnings in Products CRUD
* Fixed sync functions
* Add variations CRUD to legacy API (#12331)
* Apply crud to variable products in legacy API v1
* New REST API do not need fallback for default attributes
* Apply variations CRUD to legacy API v2
* Legacy v2 - save default attributes
* Variations in legacy API v2 do not have descriptions
* Fixed legacy API v2 variations params
* Applied variations CRUD to legacy API v3
* Sync before save in legacy apis
* Punc
* Removed API todos
* Removed test
* Products endpoint tweaks (#12354)
* Var type already normalized on CRUD
* Let Product CRUD handle with validation, sanitization and conditional checks
* Set downloads using WC_Product_Download
* Stop try catch exceptions more than one time
* Handle WC_Data_Exception in legacy API
* Complete remove products when fails on creating
* On creating I mean!
* Already have a method to complete delete products
* Fixed standards using WP CodeSniffer
* get_the_terms() returns false when empty
* get_manage_stock returns boolean
@claudiosanches
* Merge conflict
* Variations API endpoint fixes
* Product CRUD improvements (#12359)
* args is not used any more - remove todo
* Added test for attributes
* wc_get_price_excluding_tax usage
* parent usage
* Fix rating counts
* Test fixes
* Cleanup after tests
* Make sure status transition code runs even during API calls, not just in admin.
* Default visibility
* Fix attribute setting in API
* Use get name instead of get title
* variation id usage
* Improved cross sell templates
* variation_data
* Grouped product sync
* Notices
* Sync is not needed in API
* Delete
* Rename interfaces
* Update counts in data store
2016-11-16 12:38:24 +00:00
$product_names [] = $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
2015-10-13 21:41:17 +00:00
wc_get_template ( 'cart/cart-shipping.php' , array (
'package' => $package ,
'available_methods' => $package [ 'rates' ],
'show_package_details' => sizeof ( $packages ) > 1 ,
2015-12-16 13:00:16 +00:00
'package_details' => implode ( ', ' , $product_names ),
2016-09-01 20:50:14 +00:00
// @codingStandardsIgnoreStart
2015-12-16 13:00:16 +00:00
'package_name' => apply_filters ( 'woocommerce_shipping_package_name' , sprintf ( _n ( 'Shipping' , 'Shipping %d' , ( $i + 1 ), 'woocommerce' ), ( $i + 1 ) ), $i , $package ),
2016-09-01 20:50:14 +00:00
// @codingStandardsIgnoreEnd
2015-10-13 21:41:17 +00:00
'index' => $i ,
2016-08-27 01:46:45 +00:00
'chosen_method' => $chosen_method ,
2015-10-13 21:41:17 +00:00
) );
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
*
* @ 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
/**
2015-11-03 13:31:20 +00:00
* Get a coupon label .
2014-02-21 15:16:43 +00:00
*
* @ access public
* @ param string $coupon
2016-03-08 13:41:34 +00:00
* @ param bool $echo or return
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
}
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 ) {
echo $label ;
} else {
return $label ;
}
2014-02-21 15:16:43 +00:00
}
2013-11-25 15:17:18 +00:00
/**
2015-11-03 13:31:20 +00:00
* Get a coupon value .
2013-11-25 15:17:18 +00:00
*
* @ 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 );
2015-10-28 17:43:31 +00:00
}
2013-11-25 15:17:18 +00:00
$value = array ();
2016-02-23 16:01:40 +00:00
if ( $amount = WC () -> cart -> get_coupon_discount_amount ( $coupon -> get_code (), WC () -> cart -> display_cart_ex_tax ) ) {
2014-11-25 13:05:03 +00:00
$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
2016-02-25 16:36:39 +00:00
if ( $coupon -> get_free_shipping () ) {
2013-11-25 15:17:18 +00:00
$value [] = __ ( 'Free shipping coupon' , 'woocommerce' );
2015-10-28 17:43:31 +00:00
}
2014-03-18 21:29:15 +00:00
2015-10-28 17:43:31 +00:00
// get rid of empty array elements
$value = array_filter ( $value );
2016-02-23 16:01:40 +00:00
$value = implode ( ', ' , $value ) . ' <a href="' . esc_url ( add_query_arg ( 'remove_coupon' , urlencode ( $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
echo apply_filters ( 'woocommerce_cart_totals_coupon_html' , $value , $coupon );
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
*
* @ 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 ) ) {
2016-01-25 10:06:53 +00:00
$taxable_address = WC () -> customer -> get_taxable_address ();
2016-08-30 16:50:35 +00:00
$estimated_text = WC () -> customer -> is_customer_outside_base () && ! WC () -> customer -> has_calculated_shipping ()
2016-01-25 10:06:53 +00:00
? sprintf ( ' ' . __ ( 'estimated for %s' , 'woocommerce' ), WC () -> countries -> estimated_for_prefix ( $taxable_address [ 0 ] ) . WC () -> countries -> countries [ $taxable_address [ 0 ] ] )
2015-11-16 15:59:44 +00:00
: '' ;
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
echo apply_filters ( 'woocommerce_cart_totals_order_total_html' , $value );
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
*
* @ 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
}
/**
2015-11-03 13:31:20 +00:00
* Get a shipping methods full label including price .
2015-10-01 15:17:45 +00:00
* @ param WC_Shipping_Rate $method
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
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
}
}
}
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
*
* @ param float $value
* @ param int $precision
* @ return float
*/
function wc_cart_round_discount ( $value , $precision ) {
2015-07-21 22:57:52 +00:00
if ( version_compare ( PHP_VERSION , '5.3.0' , '>=' ) ) {
return round ( $value , $precision , WC_DISCOUNT_ROUNDING_MODE );
2015-07-21 22:45:13 +00:00
} else {
return round ( $value , $precision );
}
}
2016-06-29 14:23:39 +00:00
/**
* Gets chosen shipping method IDs from chosen_shipping_methods session , without instance IDs .
* @ 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 ;
}