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
|
<?php // phpcs:ignoreFile
namespace AutomateWoo\Rules;
use AutomateWoo\Logic_Helper;
defined( 'ABSPATH' ) || exit;
/** * @class Order_Items */ class Order_Items extends Product_Select_Rule_Abstract {
public $data_item = 'order';
public function init() { parent::init();
$this->title = __( 'Order - Items', 'automatewoo' ); }
/** * @param $order \WC_Order * @param $compare * @param $value * @return bool */ public function validate( $order, $compare, $value ) {
if ( ! $expected_product = wc_get_product( absint( $value ) ) ) { return false; }
$includes = false;
foreach ( $order->get_items() as $item ) { $product = $item->get_product(); $includes = Logic_Helper::match_products( $product, $expected_product );
if ( $includes ) { break; } }
switch ( $compare ) { case 'includes': return $includes; case 'not_includes': return ! $includes; }
} }
|