/var/www/html_uk/wp-content/plugins/automatewoo/includes/Rules/Customer_Meta.php


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
<?php

namespace AutomateWoo\Rules;

use 
AutomateWoo\DataTypes\DataTypes;

defined'ABSPATH' ) || exit;

/**
 * @class Customer_Meta
 */
class Customer_Meta extends Abstract_Meta {

    
/** @var string */
    
public $data_item DataTypes::CUSTOMER;

    
/**
     * Init the rule
     */
    
public function init() {
        
$this->title __'Customer - Custom Field''automatewoo' );
    }


    
/**
     * Validate the rule based on options set by a workflow
     *
     * @param \AutomateWoo\Customer $customer
     * @param string                $compare
     * @param array                 $value_data
     * @return bool
     */
    
public function validate$customer$compare$value_data ) {

        
$value_data $this->prepare_value_data$value_data );

        if ( ! 
is_array$value_data ) ) {
            return 
false;
        }

        return 
$this->validate_meta$customer->get_legacy_meta$value_data['key'] ), $compare$value_data['value'] );
    }
}