You appear to be a bot. Output may be restricted
Description
Checks if any discounts have been applied to the cart
Usage
$bool = EDD_Cart::has_discounts();
Parameters
Returns
bool
Source
File name: easy-digital-downloads/includes/cart/class-edd-cart.php
Lines:
1 to 16 of 16
public function has_discounts() { if ( null !== $this->has_discounts ) { return $this->has_discounts; } $has_discounts = false; $discounts = $this->get_discounts(); if ( ! empty( $discounts ) ) { $has_discounts = true; } $this->has_discounts = apply_filters( 'edd_cart_has_discounts', $has_discounts ); return $this->has_discounts; }