Lines:
1 to 100 of 107
<?php /** * Cart Functions * * @package EDD * @subpackage Cart * @copyright Copyright (c) 2015, Pippin Williamson * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 1.0 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /* function edd_get_cart_contents() – Get the contents of the cart */ /* function edd_get_cart_content_details() – Retrieve the Cart Content Details */ /* function edd_get_cart_quantity() – Get Cart Quantity */ /* function edd_add_to_cart() – Add To Cart */ /* function edd_remove_from_cart() – Removes a Download from the Cart */ /* function edd_item_in_cart() – Checks to see if an item is already in the cart and returns a boolean */ /* function edd_get_item_position_in_cart() – Get the Item Position in Cart */ /* function edd_item_quantities_enabled() – Check if quantities are enabled */ /* function edd_set_cart_item_quantity() – Set Cart Item Quantity */ /* function edd_get_cart_item_quantity() – Get Cart Item Quantity */ /* function edd_cart_item_price() – Get Cart Item Price */ /* function edd_get_cart_item_price() – Get Cart Item Price */ /* function edd_get_cart_item_final_price() – Get cart item’s final price */ /* function edd_get_cart_item_tax() – Get cart item tax */ /* function edd_get_price_name() – Get Price Name */ /* function edd_get_cart_item_price_id() – Get cart item price id */ /* function edd_get_cart_item_price_name() – Get cart item price name */ /* function edd_get_cart_item_name() – Get cart item title */ /* function edd_cart_subtotal() – Cart Subtotal */ /* function edd_get_cart_subtotal() – Get Cart Subtotal */ /* function edd_get_cart_discountable_subtotal() – Get Cart Discountable Subtotal. */ /* function edd_get_cart_items_subtotal() – Get cart items subtotal */ /* function edd_get_cart_total() – Get Total Cart Amount */ /* function edd_cart_total() – Get Total Cart Amount */ /* function edd_cart_has_fees() – Check if cart has fees applied */ /* function edd_get_cart_fees() – Get Cart Fees */ /* function edd_get_cart_fee_total() – Get Cart Fee Total */ /* function edd_get_cart_fee_tax() – Get cart tax on Fees */ /* function edd_get_purchase_summary() – Get Purchase Summary */ /* function edd_get_cart_tax() – Gets the total tax amount for the cart contents */ /* function edd_get_cart_tax_rate() – Gets the tax rate charged on the cart. */ /* function edd_cart_tax() – Gets the total tax amount for the cart contents in a fully formatted way */ /* function edd_add_collection_to_cart() – Add Collection to Cart */ /* function edd_remove_item_url() – Returns the URL to remove an item from the cart */ /* function edd_remove_cart_fee_url() – Returns the URL to remove an item from the cart */ /* function edd_empty_cart() – Empties the Cart */ /* function edd_set_purchase_session() – Store Purchase Data in Sessions */ /* function edd_get_purchase_session() – Retrieve Purchase Data from Session */ /* function edd_is_cart_saving_disabled() – Checks if cart saving has been disabled */ /* function edd_is_cart_saved() – Checks if a cart has been saved */ /* function edd_save_cart() – Process the Cart Save */ /* function edd_restore_cart() – Process the Cart Restoration */ /* function edd_get_cart_token() – Retrieve a saved cart token. Used in validating saved carts */