2011-08-10 17:11:11 +00:00
< ? php
2015-11-06 09:22:19 +00:00
if ( ! defined ( 'ABSPATH' ) ) {
exit ; // Exit if accessed directly
}
2011-08-10 17:11:11 +00:00
/**
2015-11-03 13:53:50 +00:00
* WooCommerce coupons
2012-08-14 19:42:38 +00:00
*
2015-11-03 13:31:20 +00:00
* The WooCommerce coupons class gets coupon data from storage and checks coupon validity .
2011-08-10 17:11:11 +00:00
*
2012-01-27 16:38:39 +00:00
* @ class WC_Coupon
2014-11-14 16:07:46 +00:00
* @ version 2.3 . 0
2013-02-20 17:14:46 +00:00
* @ package WooCommerce / Classes
2011-08-10 17:11:11 +00:00
* @ category Class
* @ author WooThemes
2015-02-03 14:20:46 +00:00
*
* @ property string $discount_type
* @ property string $coupon_amount
* @ property string $individual_use
* @ property array $product_ids
* @ property array $exclude_product_ids
* @ property string $usage_limit
* @ property string $usage_limit_per_user
* @ property string $limit_usage_to_x_items
* @ property string $usage_count
* @ property string $expiry_date
* @ property string $free_shipping
* @ property array $product_categories
* @ property array $exclude_product_categories
* @ property string $exclude_sale_items
* @ property string $minimum_amount
* @ property string $maximum_amount
* @ property array $customer_email
2011-08-10 17:11:11 +00:00
*/
2012-01-27 16:38:39 +00:00
class WC_Coupon {
2012-08-14 19:42:38 +00:00
2013-02-18 12:29:10 +00:00
// Coupon message codes
2013-02-18 19:05:23 +00:00
const E_WC_COUPON_INVALID_FILTERED = 100 ;
const E_WC_COUPON_INVALID_REMOVED = 101 ;
const E_WC_COUPON_NOT_YOURS_REMOVED = 102 ;
const E_WC_COUPON_ALREADY_APPLIED = 103 ;
const E_WC_COUPON_ALREADY_APPLIED_INDIV_USE_ONLY = 104 ;
const E_WC_COUPON_NOT_EXIST = 105 ;
const E_WC_COUPON_USAGE_LIMIT_REACHED = 106 ;
const E_WC_COUPON_EXPIRED = 107 ;
const E_WC_COUPON_MIN_SPEND_LIMIT_NOT_MET = 108 ;
const E_WC_COUPON_NOT_APPLICABLE = 109 ;
const E_WC_COUPON_NOT_VALID_SALE_ITEMS = 110 ;
const E_WC_COUPON_PLEASE_ENTER = 111 ;
2014-10-14 14:09:56 +00:00
const E_WC_COUPON_MAX_SPEND_LIMIT_MET = 112 ;
const E_WC_COUPON_EXCLUDED_PRODUCTS = 113 ;
2014-10-14 14:18:31 +00:00
const E_WC_COUPON_EXCLUDED_CATEGORIES = 114 ;
2013-02-18 12:29:10 +00:00
const WC_COUPON_SUCCESS = 200 ;
2013-08-14 20:00:34 +00:00
const WC_COUPON_REMOVED = 201 ;
2013-02-18 12:29:10 +00:00
2012-12-14 21:41:59 +00:00
/** @public string Coupon code. */
2014-11-14 16:07:46 +00:00
public $code = '' ;
2012-08-15 17:08:42 +00:00
2012-12-14 21:41:59 +00:00
/** @public int Coupon ID. */
2014-11-14 16:07:46 +00:00
public $id = 0 ;
2012-08-15 17:08:42 +00:00
2014-11-14 16:07:46 +00:00
/** @public bool Coupon exists */
public $exists = false ;
2012-08-15 17:08:42 +00:00
2014-11-14 16:21:58 +00:00
/**
* Coupon constructor . Loads coupon data .
*
* @ access public
* @ param mixed $code code of the coupon to load
*/
public function __construct ( $code ) {
$this -> exists = $this -> get_coupon ( $code );
}
2014-11-14 16:07:46 +00:00
/**
* __isset function .
*
* @ param mixed $key
* @ return bool
*/
public function __isset ( $key ) {
if ( in_array ( $key , array ( 'coupon_custom_fields' , 'type' , 'amount' ) ) ) {
return true ;
}
return false ;
}
2013-10-01 10:48:27 +00:00
2014-11-14 16:07:46 +00:00
/**
* __get function .
*
* @ param mixed $key
* @ return mixed
*/
public function __get ( $key ) {
// Get values or default if not set
if ( 'coupon_custom_fields' === $key ) {
$value = $this -> id ? get_post_meta ( $this -> id ) : array ();
} elseif ( 'type' === $key ) {
$value = $this -> discount_type ;
} elseif ( 'amount' === $key ) {
$value = $this -> coupon_amount ;
} else {
$value = '' ;
}
return $value ;
}
2013-10-18 17:10:55 +00:00
2014-11-14 16:07:46 +00:00
/**
* Checks the coupon type .
*
* @ param string $type Array or string of types
* @ return bool
*/
public function is_type ( $type ) {
return ( $this -> discount_type == $type || ( is_array ( $type ) && in_array ( $this -> discount_type , $type ) ) ) ? true : false ;
}
2012-08-15 17:08:42 +00:00
2014-11-14 16:07:46 +00:00
/**
* Gets an coupon from the database .
*
* @ param string $code
* @ return bool
*/
2014-11-14 17:18:02 +00:00
private function get_coupon ( $code ) {
2014-11-14 16:07:46 +00:00
$this -> code = apply_filters ( 'woocommerce_coupon_code' , $code );
2012-08-15 17:08:42 +00:00
2014-11-14 16:07:46 +00:00
// Coupon data lets developers create coupons through code
2015-03-27 15:36:53 +00:00
if ( $coupon = apply_filters ( 'woocommerce_get_shop_coupon_data' , false , $this -> code ) ) {
2014-11-14 16:07:46 +00:00
$this -> populate ( $coupon );
return true ;
2015-03-27 15:36:53 +00:00
}
// Otherwise get ID from the code
2016-03-04 15:55:46 +00:00
$this -> id = $this -> get_coupon_id_from_code ( $this -> code );
$coupon_post = get_post ( $this -> id );
2015-03-27 15:36:53 +00:00
2016-03-04 15:55:46 +00:00
if ( $coupon_post && $this -> code === apply_filters ( 'woocommerce_coupon_code' , $coupon_post -> post_title ) ) {
2014-11-14 17:18:02 +00:00
$this -> populate ();
return true ;
2014-11-14 16:07:46 +00:00
}
2012-08-15 17:08:42 +00:00
2014-11-14 16:07:46 +00:00
return false ;
}
2012-08-15 17:08:42 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Get a coupon ID from it ' s code .
2015-11-13 23:09:35 +00:00
* @ since 2.5 . 0 woocommerce_coupon_code_query was removed in favour of woocommerce_get_coupon_id_from_code filter on the return . wp_cache was also implemented .
2014-11-14 17:18:02 +00:00
* @ param string $code
* @ return int
*/
private function get_coupon_id_from_code ( $code ) {
global $wpdb ;
2015-11-13 23:09:35 +00:00
$coupon_id = wp_cache_get ( WC_Cache_Helper :: get_cache_prefix ( 'coupons' ) . 'coupon_id_from_code_' . $code , 'coupons' );
2015-10-09 22:31:52 +00:00
2015-11-13 23:09:35 +00:00
if ( false === $coupon_id ) {
2016-03-07 13:07:59 +00:00
$sql = $wpdb -> prepare ( " SELECT ID FROM $wpdb->posts WHERE post_title = %s AND post_type = 'shop_coupon' AND post_status = 'publish' ORDER BY post_date DESC LIMIT 1; " , $this -> code );
2015-11-13 23:09:35 +00:00
$coupon_id = apply_filters ( 'woocommerce_get_coupon_id_from_code' , $wpdb -> get_var ( $sql ), $this -> code );
wp_cache_set ( WC_Cache_Helper :: get_cache_prefix ( 'coupons' ) . 'coupon_id_from_code_' . $code , $coupon_id , 'coupons' );
2015-10-09 22:31:52 +00:00
}
2015-11-13 23:09:35 +00:00
return absint ( $coupon_id );
2014-11-14 17:18:02 +00:00
}
2014-11-14 16:07:46 +00:00
/**
* Populates an order from the loaded post data .
*/
2014-11-14 17:18:02 +00:00
private function populate ( $data = array () ) {
2014-11-14 16:07:46 +00:00
$defaults = array (
'discount_type' => 'fixed_cart' ,
'coupon_amount' => 0 ,
'individual_use' => 'no' ,
'product_ids' => array (),
'exclude_product_ids' => array (),
'usage_limit' => '' ,
'usage_limit_per_user' => '' ,
'limit_usage_to_x_items' => '' ,
'usage_count' => '' ,
'expiry_date' => '' ,
'free_shipping' => 'no' ,
'product_categories' => array (),
'exclude_product_categories' => array (),
'exclude_sale_items' => 'no' ,
'minimum_amount' => '' ,
'maximum_amount' => '' ,
'customer_email' => array ()
);
2015-08-24 19:06:19 +00:00
if ( ! empty ( $this -> id ) ) {
$postmeta = get_post_meta ( $this -> id );
}
2014-11-14 16:07:46 +00:00
foreach ( $defaults as $key => $value ) {
// Try to load from meta if an ID is present
2015-08-24 19:06:19 +00:00
if ( ! empty ( $this -> id ) ) {
/**
2015-11-03 13:31:20 +00:00
* By not calling `get_post_meta()` individually , we may be breaking compatibility with .
* some plugins that filter on `get_post_metadata` and erroneously override based solely .
2015-08-24 19:06:19 +00:00
* on $meta_key -- but don ' t override when querying for all as $meta_key is empty () .
*/
2015-08-24 20:08:04 +00:00
$this -> $key = isset ( $postmeta [ $key ] ) ? maybe_unserialize ( array_shift ( $postmeta [ $key ] ) ) : '' ;
2014-11-14 16:07:46 +00:00
} else {
$this -> $key = ! empty ( $data [ $key ] ) ? wc_clean ( $data [ $key ] ) : '' ;
2013-01-29 13:17:52 +00:00
2014-11-14 16:07:46 +00:00
// Backwards compat field names @deprecated
if ( 'coupon_amount' === $key ) {
$this -> coupon_amount = ! empty ( $data [ 'amount' ] ) ? wc_clean ( $data [ 'amount' ] ) : $this -> coupon_amount ;
} elseif ( 'discount_type' === $key ) {
$this -> discount_type = ! empty ( $data [ 'type' ] ) ? wc_clean ( $data [ 'type' ] ) : $this -> discount_type ;
}
}
2012-08-15 17:08:42 +00:00
2014-11-14 16:07:46 +00:00
if ( empty ( $this -> $key ) ) {
$this -> $key = $value ;
2014-11-14 16:21:58 +00:00
} elseif ( in_array ( $key , array ( 'product_ids' , 'exclude_product_ids' , 'product_categories' , 'exclude_product_categories' , 'customer_email' ) ) ) {
$this -> $key = $this -> format_array ( $this -> $key );
} elseif ( in_array ( $key , array ( 'usage_limit' , 'usage_limit_per_user' , 'limit_usage_to_x_items' , 'usage_count' ) ) ) {
$this -> $key = absint ( $this -> $key );
} elseif ( 'expiry_date' === $key ) {
$this -> expiry_date = $this -> expiry_date && ! is_numeric ( $this -> expiry_date ) ? strtotime ( $this -> expiry_date ) : $this -> expiry_date ;
2014-11-14 16:07:46 +00:00
}
}
2014-08-08 11:38:58 +00:00
2014-11-14 16:07:46 +00:00
do_action ( 'woocommerce_coupon_loaded' , $this );
}
2012-12-19 14:57:46 +00:00
2012-08-14 19:42:38 +00:00
/**
2015-11-03 13:31:20 +00:00
* Format loaded data as array .
2014-11-14 17:18:02 +00:00
* @ param string | array $array
2014-11-14 16:21:58 +00:00
* @ return array
2012-08-14 19:42:38 +00:00
*/
2014-11-14 17:18:02 +00:00
public function format_array ( $array ) {
if ( ! is_array ( $array ) ) {
if ( is_serialized ( $array ) ) {
2014-11-14 16:21:58 +00:00
$array = maybe_unserialize ( $array );
} else {
$array = explode ( ',' , $array );
}
}
2014-11-14 17:18:02 +00:00
return array_filter ( array_map ( 'trim' , array_map ( 'strtolower' , $array ) ) );
2011-08-10 17:11:11 +00:00
}
2012-08-14 19:42:38 +00:00
/**
* Check if coupon needs applying before tax .
*
* @ return bool
*/
2012-12-14 21:41:59 +00:00
public function apply_before_tax () {
2014-11-24 17:24:25 +00:00
return true ;
2011-11-19 20:59:16 +00:00
}
2012-08-14 19:42:38 +00:00
/**
* Check if a coupon enables free shipping .
*
2013-11-25 15:00:54 +00:00
* @ return bool
2012-08-14 19:42:38 +00:00
*/
2012-12-14 21:41:59 +00:00
public function enable_free_shipping () {
2014-11-14 16:07:46 +00:00
return 'yes' === $this -> free_shipping ;
2011-11-28 16:10:31 +00:00
}
2013-01-29 13:58:57 +00:00
/**
2013-01-29 13:17:52 +00:00
* Check if a coupon excludes sale items .
*
2013-11-25 15:00:54 +00:00
* @ return bool
2013-01-29 13:17:52 +00:00
*/
public function exclude_sale_items () {
2014-11-14 16:07:46 +00:00
return 'yes' === $this -> exclude_sale_items ;
2013-01-29 13:17:52 +00:00
}
2012-08-14 19:42:38 +00:00
/**
2014-11-11 20:52:45 +00:00
* Increase usage count for current coupon .
2012-08-14 19:42:38 +00:00
*
2015-07-16 19:55:48 +00:00
* @ param string $used_by Either user ID or billing email
2012-08-14 19:42:38 +00:00
*/
2013-10-01 10:48:27 +00:00
public function inc_usage_count ( $used_by = '' ) {
2014-11-14 16:07:46 +00:00
if ( $this -> id ) {
2015-01-30 14:14:34 +00:00
$this -> usage_count ++ ;
update_post_meta ( $this -> id , 'usage_count' , $this -> usage_count );
2013-10-01 10:48:27 +00:00
2014-11-14 16:07:46 +00:00
if ( $used_by ) {
add_post_meta ( $this -> id , '_used_by' , strtolower ( $used_by ) );
}
2014-04-24 14:26:34 +00:00
}
2012-07-10 15:52:52 +00:00
}
2012-08-14 19:42:38 +00:00
/**
2014-11-11 20:52:45 +00:00
* Decrease usage count for current coupon .
2012-08-14 19:42:38 +00:00
*
2015-07-16 19:55:48 +00:00
* @ param string $used_by Either user ID or billing email
2012-08-14 19:42:38 +00:00
*/
2013-10-01 10:48:27 +00:00
public function dcr_usage_count ( $used_by = '' ) {
2015-09-09 07:56:32 +00:00
if ( $this -> id && $this -> usage_count > 0 ) {
2014-11-14 16:07:46 +00:00
global $wpdb ;
2015-01-30 14:14:34 +00:00
$this -> usage_count -- ;
update_post_meta ( $this -> id , 'usage_count' , $this -> usage_count );
2013-10-01 10:48:27 +00:00
2015-08-24 18:20:30 +00:00
if ( $used_by ) {
/**
2015-11-03 13:31:20 +00:00
* We ' re doing this the long way because `delete_post_meta( $id, $key, $value )` deletes .
2015-08-24 18:20:30 +00:00
* all instances where the key and value match , and we only want to delete one .
*/
$meta_id = $wpdb -> get_var ( $wpdb -> prepare ( " SELECT meta_id FROM $wpdb->postmeta WHERE meta_key = '_used_by' AND meta_value = %s AND post_id = %d LIMIT 1; " , $used_by , $this -> id ) );
if ( $meta_id ) {
delete_metadata_by_mid ( 'post' , $meta_id );
}
2014-11-14 16:07:46 +00:00
}
2014-04-24 14:26:34 +00:00
}
2011-08-15 16:48:24 +00:00
}
2012-08-14 19:42:38 +00:00
2015-08-24 18:30:13 +00:00
/**
* Get records of all users who have used the current coupon .
*
* @ access public
* @ return array
*/
public function get_used_by () {
$_used_by = ( array ) get_post_meta ( $this -> id , '_used_by' );
// Strip out any null values.
return array_filter ( $_used_by );
}
2012-12-19 14:57:46 +00:00
/**
2015-11-03 13:31:20 +00:00
* Returns the error_message string .
2012-12-19 14:57:46 +00:00
*
* @ access public
* @ return string
*/
public function get_error_message () {
return $this -> error_message ;
}
2012-06-10 18:07:19 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon exists or throw exception .
2016-01-06 14:53:59 +00:00
*
* @ throws Exception
2012-06-10 18:07:19 +00:00
*/
2014-11-14 17:18:02 +00:00
private function validate_exists () {
if ( ! $this -> exists ) {
throw new Exception ( self :: E_WC_COUPON_NOT_EXIST );
}
}
2013-10-01 10:48:27 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon usage limit is valid or throw exception .
2016-01-06 14:53:59 +00:00
*
* @ throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_usage_limit () {
if ( $this -> usage_limit > 0 && $this -> usage_count >= $this -> usage_limit ) {
throw new Exception ( self :: E_WC_COUPON_USAGE_LIMIT_REACHED );
}
}
2013-10-01 10:48:27 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon user usage limit is valid or throw exception .
2014-11-14 17:18:02 +00:00
*
2015-11-03 13:31:20 +00:00
* Per user usage limit - check here if user is logged in ( against user IDs ) .
* Checked again for emails later on in WC_Cart :: check_customer_coupons () .
2015-08-24 17:08:44 +00:00
*
* @ param int $user_id
2015-11-17 12:51:42 +00:00
* @ throws Exception
2014-11-14 17:18:02 +00:00
*/
2015-08-24 17:08:44 +00:00
private function validate_user_usage_limit ( $user_id = null ) {
if ( ! $user_id ) {
$user_id = get_current_user_id ();
}
2014-11-14 17:18:02 +00:00
if ( $this -> usage_limit_per_user > 0 && is_user_logged_in () && $this -> id ) {
2015-08-24 17:08:23 +00:00
global $wpdb ;
2016-01-21 19:06:37 +00:00
$usage_count = $wpdb -> get_var ( $wpdb -> prepare ( " SELECT COUNT( meta_id ) FROM { $wpdb -> postmeta } WHERE post_id = %d AND meta_key = '_used_by' AND meta_value = %d; " , $this -> id , $user_id ) );
2012-08-14 19:42:38 +00:00
2014-11-14 17:18:02 +00:00
if ( $usage_count >= $this -> usage_limit_per_user ) {
throw new Exception ( self :: E_WC_COUPON_USAGE_LIMIT_REACHED );
2012-11-08 16:57:53 +00:00
}
2014-11-14 17:18:02 +00:00
}
}
2012-08-14 19:42:38 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon date is valid or throw exception .
2016-01-06 14:53:59 +00:00
*
* @ throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_expiry_date () {
if ( $this -> expiry_date && current_time ( 'timestamp' ) > $this -> expiry_date ) {
throw new Exception ( $error_code = self :: E_WC_COUPON_EXPIRED );
}
}
2012-08-14 19:42:38 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon amount is valid or throw exception .
2016-01-06 14:53:59 +00:00
*
* @ throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_minimum_amount () {
2016-04-18 10:39:00 +00:00
if ( $this -> minimum_amount > 0 && apply_filters ( 'woocommerce_coupon_validate_minimum_amount' , wc_format_decimal ( $this -> minimum_amount ) > WC () -> cart -> get_displayed_subtotal (), $this ) ) {
2014-11-14 17:18:02 +00:00
throw new Exception ( self :: E_WC_COUPON_MIN_SPEND_LIMIT_NOT_MET );
}
}
2014-08-08 11:38:58 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon amount is valid or throw exception .
2016-01-06 14:53:59 +00:00
*
* @ throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_maximum_amount () {
2016-04-18 10:39:00 +00:00
if ( $this -> maximum_amount > 0 && apply_filters ( 'woocommerce_coupon_validate_maximum_amount' , wc_format_decimal ( $this -> maximum_amount ) <= WC () -> cart -> get_displayed_subtotal (), $this ) ) {
2014-11-14 17:18:02 +00:00
throw new Exception ( self :: E_WC_COUPON_MAX_SPEND_LIMIT_MET );
}
}
2012-11-27 16:22:47 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon is valid for products in the cart is valid or throw exception .
2016-01-06 14:53:59 +00:00
*
* @ throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_product_ids () {
2015-04-14 09:21:52 +00:00
if ( sizeof ( $this -> product_ids ) > 0 ) {
2014-11-14 17:18:02 +00:00
$valid_for_cart = false ;
2015-05-14 21:18:53 +00:00
if ( ! WC () -> cart -> is_empty () ) {
2014-11-14 17:18:02 +00:00
foreach ( WC () -> cart -> get_cart () as $cart_item_key => $cart_item ) {
if ( in_array ( $cart_item [ 'product_id' ], $this -> product_ids ) || in_array ( $cart_item [ 'variation_id' ], $this -> product_ids ) || in_array ( $cart_item [ 'data' ] -> get_parent (), $this -> product_ids ) ) {
$valid_for_cart = true ;
2012-11-08 16:57:53 +00:00
}
}
}
2014-11-14 17:18:02 +00:00
if ( ! $valid_for_cart ) {
throw new Exception ( self :: E_WC_COUPON_NOT_APPLICABLE );
}
}
}
2012-08-14 19:42:38 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon is valid for product categories in the cart is valid or throw exception .
2016-01-06 14:53:59 +00:00
*
* @ throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_product_categories () {
2015-04-14 09:21:52 +00:00
if ( sizeof ( $this -> product_categories ) > 0 ) {
2014-11-14 17:18:02 +00:00
$valid_for_cart = false ;
2015-05-14 21:18:53 +00:00
if ( ! WC () -> cart -> is_empty () ) {
2014-11-14 17:18:02 +00:00
foreach ( WC () -> cart -> get_cart () as $cart_item_key => $cart_item ) {
2015-11-30 12:29:16 +00:00
$product_cats = wc_get_product_cat_ids ( $cart_item [ 'product_id' ] );
2016-01-12 09:49:46 +00:00
// If we find an item with a cat in our allowed cat list, the coupon is valid
2014-11-14 17:18:02 +00:00
if ( sizeof ( array_intersect ( $product_cats , $this -> product_categories ) ) > 0 ) {
$valid_for_cart = true ;
2012-11-08 16:57:53 +00:00
}
}
}
2014-11-14 17:18:02 +00:00
if ( ! $valid_for_cart ) {
throw new Exception ( self :: E_WC_COUPON_NOT_APPLICABLE );
}
}
}
2012-08-14 19:42:38 +00:00
2016-01-12 09:49:46 +00:00
/**
* Ensure coupon is valid for product categories in the cart is valid or throw exception .
*
* @ throws Exception
*/
private function validate_excluded_product_categories () {
if ( sizeof ( $this -> exclude_product_categories ) > 0 ) {
$valid_for_cart = false ;
if ( ! WC () -> cart -> is_empty () ) {
foreach ( WC () -> cart -> get_cart () as $cart_item_key => $cart_item ) {
$product_cats = wc_get_product_cat_ids ( $cart_item [ 'product_id' ] );
// If we find an item with a cat NOT in our disallowed cat list, the coupon is valid
if ( empty ( $product_cats ) || sizeof ( array_diff ( $product_cats , $this -> exclude_product_categories ) ) > 0 ) {
$valid_for_cart = true ;
}
}
}
if ( ! $valid_for_cart ) {
throw new Exception ( self :: E_WC_COUPON_NOT_APPLICABLE );
}
}
}
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon is valid for sale items in the cart is valid or throw exception .
2016-01-06 14:53:59 +00:00
*
* @ throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_sale_items () {
2015-12-16 11:47:56 +00:00
if ( 'yes' === $this -> exclude_sale_items && $this -> is_type ( wc_get_product_coupon_types () ) ) {
2014-11-14 17:18:02 +00:00
$valid_for_cart = false ;
$product_ids_on_sale = wc_get_product_ids_on_sale ();
2015-07-16 16:53:52 +00:00
2015-05-14 21:18:53 +00:00
if ( ! WC () -> cart -> is_empty () ) {
2014-11-14 17:18:02 +00:00
foreach ( WC () -> cart -> get_cart () as $cart_item_key => $cart_item ) {
2015-07-16 16:53:52 +00:00
if ( ! empty ( $cart_item [ 'variation_id' ] ) ) {
if ( ! in_array ( $cart_item [ 'variation_id' ], $product_ids_on_sale , true ) ) {
$valid_for_cart = true ;
}
} elseif ( ! in_array ( $cart_item [ 'product_id' ], $product_ids_on_sale , true ) ) {
2014-11-14 17:18:02 +00:00
$valid_for_cart = true ;
2014-06-25 12:46:47 +00:00
}
}
}
2014-11-14 17:18:02 +00:00
if ( ! $valid_for_cart ) {
throw new Exception ( self :: E_WC_COUPON_NOT_VALID_SALE_ITEMS );
}
}
}
2014-06-25 12:46:47 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Cart discounts cannot be added if non - eligble product is found in cart .
2014-11-14 17:18:02 +00:00
*/
private function validate_cart_excluded_items () {
2015-12-16 11:47:56 +00:00
if ( ! $this -> is_type ( wc_get_product_coupon_types () ) ) {
2014-11-14 17:18:02 +00:00
$this -> validate_cart_excluded_product_ids ();
$this -> validate_cart_excluded_product_categories ();
$this -> validate_cart_excluded_sale_items ();
}
}
2012-08-14 19:42:38 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Exclude products from cart .
2016-01-06 14:53:59 +00:00
*
* @ throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_cart_excluded_product_ids () {
// Exclude Products
if ( sizeof ( $this -> exclude_product_ids ) > 0 ) {
$valid_for_cart = true ;
2015-05-14 21:18:53 +00:00
if ( ! WC () -> cart -> is_empty () ) {
2014-11-14 17:18:02 +00:00
foreach ( WC () -> cart -> get_cart () as $cart_item_key => $cart_item ) {
if ( in_array ( $cart_item [ 'product_id' ], $this -> exclude_product_ids ) || in_array ( $cart_item [ 'variation_id' ], $this -> exclude_product_ids ) || in_array ( $cart_item [ 'data' ] -> get_parent (), $this -> exclude_product_ids ) ) {
$valid_for_cart = false ;
2013-01-29 13:17:52 +00:00
}
}
2014-11-14 17:18:02 +00:00
}
if ( ! $valid_for_cart ) {
throw new Exception ( self :: E_WC_COUPON_EXCLUDED_PRODUCTS );
}
}
}
2013-01-29 13:17:52 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Exclude categories from cart .
2016-01-06 14:53:59 +00:00
*
* @ throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_cart_excluded_product_categories () {
if ( sizeof ( $this -> exclude_product_categories ) > 0 ) {
$valid_for_cart = true ;
2015-05-14 21:18:53 +00:00
if ( ! WC () -> cart -> is_empty () ) {
2014-11-14 17:18:02 +00:00
foreach ( WC () -> cart -> get_cart () as $cart_item_key => $cart_item ) {
2012-11-27 16:22:47 +00:00
2015-11-30 12:29:16 +00:00
$product_cats = wc_get_product_cat_ids ( $cart_item [ 'product_id' ] );
2012-11-27 16:22:47 +00:00
2014-11-14 17:18:02 +00:00
if ( sizeof ( array_intersect ( $product_cats , $this -> exclude_product_categories ) ) > 0 ) {
$valid_for_cart = false ;
2012-08-31 08:45:50 +00:00
}
2012-11-08 16:57:53 +00:00
}
}
2014-11-14 17:18:02 +00:00
if ( ! $valid_for_cart ) {
throw new Exception ( self :: E_WC_COUPON_EXCLUDED_CATEGORIES );
2013-02-18 19:05:23 +00:00
}
2014-11-14 17:18:02 +00:00
}
}
2012-08-14 19:42:38 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Exclude sale items from cart .
2016-01-06 14:53:59 +00:00
*
* @ throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_cart_excluded_sale_items () {
if ( $this -> exclude_sale_items == 'yes' ) {
$valid_for_cart = true ;
$product_ids_on_sale = wc_get_product_ids_on_sale ();
2015-05-14 21:18:53 +00:00
if ( ! WC () -> cart -> is_empty () ) {
2014-11-14 17:18:02 +00:00
foreach ( WC () -> cart -> get_cart () as $cart_item_key => $cart_item ) {
2015-01-13 13:23:06 +00:00
if ( ! empty ( $cart_item [ 'variation_id' ] ) ) {
if ( in_array ( $cart_item [ 'variation_id' ], $product_ids_on_sale , true ) ) {
$valid_for_cart = false ;
}
} elseif ( in_array ( $cart_item [ 'product_id' ], $product_ids_on_sale , true ) ) {
2014-11-14 17:18:02 +00:00
$valid_for_cart = false ;
}
}
}
if ( ! $valid_for_cart ) {
throw new Exception ( self :: E_WC_COUPON_NOT_VALID_SALE_ITEMS );
}
2012-07-31 12:28:03 +00:00
}
2014-11-14 17:18:02 +00:00
}
2012-08-14 19:42:38 +00:00
2014-11-14 17:18:02 +00:00
/**
* Check if a coupon is valid .
*
* @ return boolean validity
2016-01-06 14:53:59 +00:00
* @ throws Exception
2014-11-14 17:18:02 +00:00
*/
public function is_valid () {
try {
$this -> validate_exists ();
$this -> validate_usage_limit ();
$this -> validate_user_usage_limit ();
$this -> validate_expiry_date ();
$this -> validate_minimum_amount ();
$this -> validate_maximum_amount ();
$this -> validate_product_ids ();
$this -> validate_product_categories ();
2016-01-12 09:49:46 +00:00
$this -> validate_excluded_product_categories ();
2014-11-14 17:18:02 +00:00
$this -> validate_sale_items ();
$this -> validate_cart_excluded_items ();
if ( ! apply_filters ( 'woocommerce_coupon_is_valid' , true , $this ) ) {
throw new Exception ( self :: E_WC_COUPON_INVALID_FILTERED );
}
} catch ( Exception $e ) {
$this -> error_message = $this -> get_coupon_error ( $e -> getMessage () );
return false ;
2014-11-14 16:07:46 +00:00
}
2013-02-18 12:29:10 +00:00
2014-11-14 17:18:02 +00:00
return true ;
2011-08-10 17:11:11 +00:00
}
2013-02-15 03:56:35 +00:00
2013-11-25 15:00:54 +00:00
/**
2015-11-03 13:31:20 +00:00
* Check if a coupon is valid .
2013-11-25 15:00:54 +00:00
*
* @ return bool
*/
2013-10-18 17:10:55 +00:00
public function is_valid_for_cart () {
2015-12-16 11:47:56 +00:00
return apply_filters ( 'woocommerce_coupon_is_valid_for_cart' , $this -> is_type ( wc_get_cart_coupon_types () ), $this );
2013-10-18 17:10:55 +00:00
}
/**
2015-11-03 13:31:20 +00:00
* Check if a coupon is valid for a product .
2014-09-20 18:46:22 +00:00
*
2013-10-18 17:10:55 +00:00
* @ param WC_Product $product
* @ return boolean
*/
2014-10-13 08:32:40 +00:00
public function is_valid_for_product ( $product , $values = array () ) {
2015-12-16 11:47:56 +00:00
if ( ! $this -> is_type ( wc_get_product_coupon_types () ) ) {
2014-10-10 14:45:01 +00:00
return apply_filters ( 'woocommerce_coupon_is_valid_for_product' , false , $product , $this , $values );
2014-11-14 16:07:46 +00:00
}
2013-10-18 17:10:55 +00:00
$valid = false ;
2015-11-30 12:29:16 +00:00
$product_cats = wc_get_product_cat_ids ( $product -> id );
2013-10-18 17:10:55 +00:00
// Specific products get the discount
if ( sizeof ( $this -> product_ids ) > 0 ) {
2014-11-14 16:07:46 +00:00
if ( in_array ( $product -> id , $this -> product_ids ) || ( isset ( $product -> variation_id ) && in_array ( $product -> variation_id , $this -> product_ids ) ) || in_array ( $product -> get_parent (), $this -> product_ids ) ) {
2013-10-18 17:10:55 +00:00
$valid = true ;
2014-11-14 16:07:46 +00:00
}
2015-02-12 16:15:28 +00:00
}
2013-10-18 17:10:55 +00:00
// Category discounts
2015-02-12 16:15:28 +00:00
if ( sizeof ( $this -> product_categories ) > 0 ) {
2014-11-14 16:07:46 +00:00
if ( sizeof ( array_intersect ( $product_cats , $this -> product_categories ) ) > 0 ) {
2013-10-18 17:10:55 +00:00
$valid = true ;
2014-11-14 16:07:46 +00:00
}
2015-02-12 16:15:28 +00:00
}
2013-10-18 17:10:55 +00:00
2015-02-12 16:15:28 +00:00
if ( ! sizeof ( $this -> product_ids ) && ! sizeof ( $this -> product_categories ) ) {
2013-10-18 17:10:55 +00:00
// No product ids - all items discounted
$valid = true ;
}
// Specific product ID's excluded from the discount
2014-11-14 16:07:46 +00:00
if ( sizeof ( $this -> exclude_product_ids ) > 0 ) {
if ( in_array ( $product -> id , $this -> exclude_product_ids ) || ( isset ( $product -> variation_id ) && in_array ( $product -> variation_id , $this -> exclude_product_ids ) ) || in_array ( $product -> get_parent (), $this -> exclude_product_ids ) ) {
2013-10-18 17:10:55 +00:00
$valid = false ;
2014-11-14 16:07:46 +00:00
}
}
2013-10-18 17:10:55 +00:00
// Specific categories excluded from the discount
2014-11-14 16:07:46 +00:00
if ( sizeof ( $this -> exclude_product_categories ) > 0 ) {
if ( sizeof ( array_intersect ( $product_cats , $this -> exclude_product_categories ) ) > 0 ) {
2013-10-18 17:10:55 +00:00
$valid = false ;
2014-11-14 16:07:46 +00:00
}
}
2013-10-18 17:10:55 +00:00
// Sale Items excluded from discount
if ( $this -> exclude_sale_items == 'yes' ) {
2013-11-25 13:56:59 +00:00
$product_ids_on_sale = wc_get_product_ids_on_sale ();
2013-10-18 17:10:55 +00:00
2015-06-09 15:10:46 +00:00
if ( isset ( $product -> variation_id ) ) {
if ( in_array ( $product -> variation_id , $product_ids_on_sale , true ) ) {
$valid = false ;
}
} elseif ( in_array ( $product -> id , $product_ids_on_sale , true ) ) {
2013-10-18 17:10:55 +00:00
$valid = false ;
2014-11-14 16:07:46 +00:00
}
2013-10-18 17:10:55 +00:00
}
2014-10-10 14:45:01 +00:00
return apply_filters ( 'woocommerce_coupon_is_valid_for_product' , $valid , $product , $this , $values );
2013-10-18 17:10:55 +00:00
}
/**
2015-11-03 13:31:20 +00:00
* Get discount amount for a cart item .
2014-09-20 18:46:22 +00:00
*
2013-10-18 17:10:55 +00:00
* @ param float $discounting_amount Amount the coupon is being applied to
* @ param array | null $cart_item Cart item being discounted if applicable
* @ param boolean $single True if discounting a single qty item , false if its the line
* @ return float Amount this coupon has discounted
*/
public function get_discount_amount ( $discounting_amount , $cart_item = null , $single = false ) {
2015-04-10 09:28:46 +00:00
$discount = 0 ;
$cart_item_qty = is_null ( $cart_item ) ? 1 : $cart_item [ 'quantity' ];
2013-10-18 17:10:55 +00:00
2015-04-10 09:28:46 +00:00
if ( $this -> is_type ( array ( 'percent_product' , 'percent' ) ) ) {
$discount = $this -> coupon_amount * ( $discounting_amount / 100 );
2013-10-18 17:10:55 +00:00
2015-04-10 09:28:46 +00:00
} elseif ( $this -> is_type ( 'fixed_cart' ) && ! is_null ( $cart_item ) && WC () -> cart -> subtotal_ex_tax ) {
/**
2015-11-03 13:31:20 +00:00
* This is the most complex discount - we need to divide the discount between rows based on their price in .
* proportion to the subtotal . This is so rows with different tax rates get a fair discount , and so rows .
2015-04-10 09:28:46 +00:00
* with no price ( free ) don ' t get discounted .
*
2015-11-03 13:31:20 +00:00
* Get item discount by dividing item cost by subtotal to get a %.
2015-04-10 09:28:46 +00:00
*
2015-11-03 13:31:20 +00:00
* Uses price inc tax if prices include tax to work around https :// github . com / woothemes / woocommerce / issues / 7669 and https :// github . com / woothemes / woocommerce / issues / 8074.
2015-04-10 09:28:46 +00:00
*/
2015-05-05 13:33:35 +00:00
if ( wc_prices_include_tax () ) {
$discount_percent = ( $cart_item [ 'data' ] -> get_price_including_tax () * $cart_item_qty ) / WC () -> cart -> subtotal ;
} else {
$discount_percent = ( $cart_item [ 'data' ] -> get_price_excluding_tax () * $cart_item_qty ) / WC () -> cart -> subtotal_ex_tax ;
}
2015-04-10 09:28:46 +00:00
$discount = ( $this -> coupon_amount * $discount_percent ) / $cart_item_qty ;
2013-10-18 17:10:55 +00:00
2015-04-10 09:28:46 +00:00
} elseif ( $this -> is_type ( 'fixed_product' ) ) {
2015-04-10 09:55:40 +00:00
$discount = min ( $this -> coupon_amount , $discounting_amount );
2015-04-10 09:28:46 +00:00
$discount = $single ? $discount : $discount * $cart_item_qty ;
2013-10-18 17:10:55 +00:00
}
2015-04-10 09:28:46 +00:00
$discount = min ( $discount , $discounting_amount );
2014-03-06 12:29:25 +00:00
// Handle the limit_usage_to_x_items option
2015-04-10 09:28:46 +00:00
if ( $this -> is_type ( array ( 'percent_product' , 'fixed_product' ) ) ) {
2015-08-05 12:45:28 +00:00
if ( $discounting_amount ) {
if ( '' === $this -> limit_usage_to_x_items ) {
$limit_usage_qty = $cart_item_qty ;
} else {
$limit_usage_qty = min ( $this -> limit_usage_to_x_items , $cart_item_qty );
$this -> limit_usage_to_x_items = max ( 0 , $this -> limit_usage_to_x_items - $limit_usage_qty );
}
if ( $single ) {
$discount = ( $discount * $limit_usage_qty ) / $cart_item_qty ;
} else {
$discount = ( $discount / $cart_item_qty ) * $limit_usage_qty ;
}
2013-10-18 17:10:55 +00:00
}
}
2016-03-23 11:27:36 +00:00
$discount = wc_cart_round_discount ( $discount , wc_get_price_decimals () );
2015-04-10 09:28:46 +00:00
2014-04-07 09:26:43 +00:00
return apply_filters ( 'woocommerce_coupon_get_discount_amount' , $discount , $discounting_amount , $cart_item , $single , $this );
2013-10-18 17:10:55 +00:00
}
2013-02-15 00:29:55 +00:00
/**
2015-11-03 13:31:20 +00:00
* Converts one of the WC_Coupon message / error codes to a message string and .
2013-02-15 03:56:35 +00:00
* displays the message / error .
2013-02-15 00:29:55 +00:00
*
2013-02-15 03:56:35 +00:00
* @ param int $msg_code Message / error code .
2013-02-15 00:29:55 +00:00
*/
2013-02-15 03:56:35 +00:00
public function add_coupon_message ( $msg_code ) {
2015-03-06 05:36:01 +00:00
2015-03-06 16:36:34 +00:00
$msg = $msg_code < 200 ? $this -> get_coupon_error ( $msg_code ) : $this -> get_coupon_message ( $msg_code );
2015-03-06 05:36:01 +00:00
if ( ! $msg ) {
return ;
}
2014-11-14 16:07:46 +00:00
if ( $msg_code < 200 ) {
2015-03-06 05:36:01 +00:00
wc_add_notice ( $msg , 'error' );
2014-11-14 16:07:46 +00:00
} else {
2015-03-06 05:36:01 +00:00
wc_add_notice ( $msg );
2014-11-14 16:07:46 +00:00
}
2013-02-15 03:56:35 +00:00
}
2013-02-15 00:29:55 +00:00
2013-02-15 03:56:35 +00:00
/**
2015-11-03 13:31:20 +00:00
* Map one of the WC_Coupon message codes to a message string .
2013-02-15 03:56:35 +00:00
*
2014-09-07 23:37:55 +00:00
* @ param integer $msg_code
2013-02-15 03:56:35 +00:00
* @ return string | Message / error string
*/
2013-02-18 12:29:10 +00:00
public function get_coupon_message ( $msg_code ) {
switch ( $msg_code ) {
2013-08-14 20:00:34 +00:00
case self :: WC_COUPON_SUCCESS :
2013-02-15 03:56:35 +00:00
$msg = __ ( 'Coupon code applied successfully.' , 'woocommerce' );
2013-02-18 12:29:10 +00:00
break ;
2013-08-14 20:00:34 +00:00
case self :: WC_COUPON_REMOVED :
$msg = __ ( 'Coupon code removed successfully.' , 'woocommerce' );
break ;
2013-02-15 03:56:35 +00:00
default :
$msg = '' ;
2013-02-18 12:29:10 +00:00
break ;
2013-02-15 03:56:35 +00:00
}
2013-02-18 12:29:10 +00:00
return apply_filters ( 'woocommerce_coupon_message' , $msg , $msg_code , $this );
2013-02-15 00:29:55 +00:00
}
2013-02-18 12:29:10 +00:00
2013-02-15 03:56:35 +00:00
/**
2015-11-03 13:31:20 +00:00
* Map one of the WC_Coupon error codes to a message string .
2013-02-18 12:29:10 +00:00
*
* @ param int $err_code Message / error code .
* @ return string | Message / error string
*/
public function get_coupon_error ( $err_code ) {
switch ( $err_code ) {
2013-02-18 19:05:23 +00:00
case self :: E_WC_COUPON_INVALID_FILTERED :
$err = __ ( 'Coupon is not valid.' , 'woocommerce' );
break ;
2013-02-18 12:29:10 +00:00
case self :: E_WC_COUPON_NOT_EXIST :
2015-04-01 23:56:10 +00:00
$err = sprintf ( __ ( 'Coupon "%s" does not exist!' , 'woocommerce' ), $this -> code );
2013-02-18 12:29:10 +00:00
break ;
case self :: E_WC_COUPON_INVALID_REMOVED :
$err = sprintf ( __ ( 'Sorry, it seems the coupon "%s" is invalid - it has now been removed from your order.' , 'woocommerce' ), $this -> code );
break ;
case self :: E_WC_COUPON_NOT_YOURS_REMOVED :
$err = sprintf ( __ ( 'Sorry, it seems the coupon "%s" is not yours - it has now been removed from your order.' , 'woocommerce' ), $this -> code );
break ;
case self :: E_WC_COUPON_ALREADY_APPLIED :
$err = __ ( 'Coupon code already applied!' , 'woocommerce' );
break ;
case self :: E_WC_COUPON_ALREADY_APPLIED_INDIV_USE_ONLY :
$err = sprintf ( __ ( 'Sorry, coupon "%s" has already been applied and cannot be used in conjunction with other coupons.' , 'woocommerce' ), $this -> code );
break ;
case self :: E_WC_COUPON_USAGE_LIMIT_REACHED :
$err = __ ( 'Coupon usage limit has been reached.' , 'woocommerce' );
break ;
case self :: E_WC_COUPON_EXPIRED :
$err = __ ( 'This coupon has expired.' , 'woocommerce' );
break ;
case self :: E_WC_COUPON_MIN_SPEND_LIMIT_NOT_MET :
2013-11-25 13:34:21 +00:00
$err = sprintf ( __ ( 'The minimum spend for this coupon is %s.' , 'woocommerce' ), wc_price ( $this -> minimum_amount ) );
2013-02-18 12:29:10 +00:00
break ;
2014-08-08 11:38:58 +00:00
case self :: E_WC_COUPON_MAX_SPEND_LIMIT_MET :
2014-10-21 13:55:43 +00:00
$err = sprintf ( __ ( 'The maximum spend for this coupon is %s.' , 'woocommerce' ), wc_price ( $this -> maximum_amount ) );
2014-08-08 11:38:58 +00:00
break ;
2013-02-18 12:29:10 +00:00
case self :: E_WC_COUPON_NOT_APPLICABLE :
$err = __ ( 'Sorry, this coupon is not applicable to your cart contents.' , 'woocommerce' );
break ;
2014-10-14 14:09:56 +00:00
case self :: E_WC_COUPON_EXCLUDED_PRODUCTS :
// Store excluded products that are in cart in $products
$products = array ();
2015-05-14 21:18:53 +00:00
if ( ! WC () -> cart -> is_empty () ) {
2014-10-14 14:09:56 +00:00
foreach ( WC () -> cart -> get_cart () as $cart_item_key => $cart_item ) {
if ( in_array ( $cart_item [ 'product_id' ], $this -> exclude_product_ids ) || in_array ( $cart_item [ 'variation_id' ], $this -> exclude_product_ids ) || in_array ( $cart_item [ 'data' ] -> get_parent (), $this -> exclude_product_ids ) ) {
$products [] = $cart_item [ 'data' ] -> get_title ();
}
}
}
2014-10-14 14:18:31 +00:00
$err = sprintf ( __ ( 'Sorry, this coupon is not applicable to the products: %s.' , 'woocommerce' ), implode ( ', ' , $products ) );
break ;
case self :: E_WC_COUPON_EXCLUDED_CATEGORIES :
// Store excluded categories that are in cart in $categories
$categories = array ();
2015-05-14 21:18:53 +00:00
if ( ! WC () -> cart -> is_empty () ) {
2014-10-14 14:18:31 +00:00
foreach ( WC () -> cart -> get_cart () as $cart_item_key => $cart_item ) {
2015-11-30 12:29:16 +00:00
$product_cats = wc_get_product_cat_ids ( $cart_item [ 'product_id' ] );
2014-10-14 14:18:31 +00:00
if ( sizeof ( $intersect = array_intersect ( $product_cats , $this -> exclude_product_categories ) ) > 0 ) {
foreach ( $intersect as $cat_id ) {
$cat = get_term ( $cat_id , 'product_cat' );
$categories [] = $cat -> name ;
}
}
}
}
2015-02-18 11:17:56 +00:00
$err = sprintf ( __ ( 'Sorry, this coupon is not applicable to the categories: %s.' , 'woocommerce' ), implode ( ', ' , array_unique ( $categories ) ) );
2014-10-14 14:09:56 +00:00
break ;
2013-02-18 12:29:10 +00:00
case self :: E_WC_COUPON_NOT_VALID_SALE_ITEMS :
$err = __ ( 'Sorry, this coupon is not valid for sale items.' , 'woocommerce' );
break ;
default :
$err = '' ;
break ;
}
return apply_filters ( 'woocommerce_coupon_error' , $err , $err_code , $this );
}
/**
2015-11-03 13:31:20 +00:00
* Map one of the WC_Coupon error codes to an error string .
2013-02-15 03:56:35 +00:00
* No coupon instance will be available where a coupon does not exist ,
* so this static method exists .
*
* @ param int $err_code Error code
* @ return string | Error string
*/
2013-02-18 12:29:10 +00:00
public static function get_generic_coupon_error ( $err_code ) {
switch ( $err_code ) {
case self :: E_WC_COUPON_NOT_EXIST :
$err = __ ( 'Coupon does not exist!' , 'woocommerce' );
break ;
case self :: E_WC_COUPON_PLEASE_ENTER :
$err = __ ( 'Please enter a coupon code.' , 'woocommerce' );
break ;
2013-02-15 03:56:35 +00:00
default :
2013-02-18 12:29:10 +00:00
$err = '' ;
break ;
2013-02-15 03:56:35 +00:00
}
// When using this static method, there is no $this to pass to filter
2013-02-18 12:29:10 +00:00
return apply_filters ( 'woocommerce_coupon_error' , $err , $err_code , null );
2013-02-15 03:56:35 +00:00
}
2013-01-29 13:23:52 +00:00
}