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
|
<?php // phpcs:ignoreFile
namespace AutomateWoo\Rules;
use AutomateWoo\DataTypes\DataTypes;
defined( 'ABSPATH' ) || exit;
/** * @class Cart_Items */ class Cart_Items extends Product_Select_Rule_Abstract {
public $data_item = DataTypes::CART;
function init() { $this->title = __( 'Cart - Items', 'automatewoo' ); parent::init(); }
/** * @param \AutomateWoo\Cart $cart * @param $compare * @param $value * @return bool */ function validate( $cart, $compare, $value ) { $product = wc_get_product( absint( $value ) );
if ( ! $product ) { return false; }
$target_product_id = $product->get_id(); $is_variation = $product->is_type( 'variation' );
$includes = false;
foreach ( $cart->get_items() as $item ) { $id = $is_variation ? $item->get_variation_id() : $item->get_product_id(); if ( $id == $target_product_id ) { $includes = true; break; } }
switch ( $compare ) { case 'includes': return $includes; case 'not_includes': return ! $includes; } } }
|