1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
// Exit if accessed directly
if (!defined('ABSPATH')) {
exit;
}
// Load dependencies
if (!class_exists('RP_WCDPD_Condition_Product_Property')) {
require_once('rp-wcdpd-condition-product-property.class.php');
}
/**
* Condition: Product Property - On Sale
*
* @class RP_WCDPD_Condition_Product_Property_On_Sale
* @package WooCommerce Dynamic Pricing & Discounts
* @author RightPress
*/
if (!class_exists('RP_WCDPD_Condition_Product_Property_On_Sale')) {
class RP_WCDPD_Condition_Product_Property_On_Sale extends RP_WCDPD_Condition_Product_Property
{
protected $key = 'on_sale';
protected $contexts = array('product_pricing_product', 'product_pricing_bogo_product', 'cart_discounts_product', 'checkout_fees_product');
protected $method = 'boolean';
protected $position = 20;
// Singleton instance
protected static $instance = false;
/**
* Singleton control
*/
public static function get_instance()
{
if (!self::$instance) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Constructor class
*
* @access public
* @return void
*/
public function __construct()
{
parent::__construct();
$this->hook();
}
/**
* Get label
*
* @access public
* @return string
*/
public function get_label()
{
return __('Product is on sale', 'rp_wcdpd');
}
/**
* Get value to compare against condition
*
* @access public
* @param array $params
* @return mixed
*/
public function get_value($params)
{
if (!empty($params['item_id']) || !empty($params['child_id'])) {
// Select correct product id
$product_id = !empty($params['child_id']) ? $params['child_id'] : $params['item_id'];
// Attempt to load product
if ($product = wc_get_product($product_id)) {
// Check if product has sale price set
return $product->get_sale_price('edit') !== '';
}
}
return null;
}
}
RP_WCDPD_Condition_Product_Property_On_Sale::get_instance();
}