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
|
<?php
namespace AutomateWoo\Rules;
defined( 'ABSPATH' ) || exit;
/** * @class Subscription_Meta */ class Subscription_Meta extends Abstract_Meta {
/** @var string */ public $data_item = 'subscription';
/** * Init the rule */ public function init() { $this->title = __( 'Subscription - Custom Field', 'automatewoo' ); }
/** * Validate the rule based on options set by a workflow * * @param \WC_Subscription $subscription * @param string $compare_type * @param array $value_data * * @return bool */ public function validate( $subscription, $compare_type, $value_data ) {
$value_data = $this->prepare_value_data( $value_data );
if ( ! is_array( $value_data ) ) { return false; }
return $this->validate_meta( $subscription->get_meta( $value_data['key'] ), $compare_type, $value_data['value'] ); } }
|