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
<?php
// Exit if accessed directly
if (!defined('ABSPATH')) {
exit;
}
// Load dependencies
if (!class_exists('RP_WCDPD_Condition')) {
require_once('rp-wcdpd-condition.class.php');
}
/**
* Condition Group: Purchase History
*
* @class RP_WCDPD_Condition_Purchase_History
* @package WooCommerce Dynamic Pricing & Discounts
* @author RightPress
*/
if (!class_exists('RP_WCDPD_Condition_Purchase_History')) {
abstract class RP_WCDPD_Condition_Purchase_History extends RP_WCDPD_Condition
{
protected $group_key = 'purchase_history';
protected $group_position = 170;
protected $is_customer = true;
/**
* Constructor class
*
* @access public
* @return void
*/
public function __construct()
{
parent::__construct();
$this->hook_group();
}
/**
* Get group label
*
* @access public
* @return string
*/
public function get_group_label()
{
return __('Purchase History', 'rp_wcdpd');
}
/**
* Get value to compare against condition
*
* @access public
* @param array $params
* @return mixed
*/
public function get_value($params)
{
$value = array();
// Get order ids
if ($order_ids = $this->get_order_ids_by_timeframe($params['condition']['timeframe_span'])) {
// Iterate over matching order ids
foreach ($order_ids as $order_id) {
// Get ids for current order
$current = $this->get_purchase_history_value_by_order($order_id);
// Add to array
$value = array_merge($value, $current);
}
}
return array_unique($value);
}
}
}