PNG %k25u25%fgd5n!
/home/mkuwqnjx/palaknaturals.com/wp-content/plugins/wp-marketing-automations/rules/rules/cf7.php
<?php
if ( bwfan_is_cf7_active() ) {

	class BWFAN_Rule_CF7_Form_Field extends BWFAN_Rule_Base {

		public function __construct() {
			$this->v2 = true;
			parent::__construct( 'cf7_form_field' );
		}

		/** v2 Methods: START */
		public function get_options( $term = '' ) {
			$meta    = $this->event_automation_meta;
			$form_id = isset( $meta['bwfan-cf7_form_submit_form_id'] ) ? $meta['bwfan-cf7_form_submit_form_id'] : 0;
			if ( empty( $form_id ) ) {
				return array();
			}

			/** @var BWFAN_CF7_Form_Submit $ins */
			$ins = BWFAN_CF7_Form_Submit::get_instance();

			return $ins->get_form_fields( $form_id );
		}

		public function get_rule_type() {
			return 'key-value';
		}

		public function is_match_v2( $automation_data, $rule_data ) {
			if ( ! isset( $automation_data['global'] ) || ! is_array( $automation_data['global'] ) ) {
				return $this->return_is_match( false, $rule_data );
			}

			$entry = isset( $automation_data['global']['fields'] ) ? $automation_data['global']['fields'] : [];

			$type        = $rule_data['rule'];
			$data        = $rule_data['data'];
			$key         = isset( $data[0] ) ? $data[0] : '';
			$saved_value = isset( $data[1] ) ? $data[1] : '';
			$value       = isset( $entry[ $key ] ) ? $entry[ $key ] : '';
			$value       = $this->make_value_as_array( $value );

			$value           = array_map( 'strtolower', $value );
			$condition_value = strtolower( trim( $saved_value ) );

			/** checking if condition value contains comma */
			if ( strpos( $condition_value, ',' ) !== false ) {
				$condition_value = explode( ',', $condition_value );
				$condition_value = array_map( 'trim', $condition_value );
			}

			switch ( $type ) {
				case 'is':
					if ( is_array( $condition_value ) && is_array( $value ) ) {
						$result = count( array_intersect( $condition_value, $value ) ) > 0;
					} else {
						$result = in_array( $condition_value, $value );
					}
					break;
				case 'is_not':
					if ( is_array( $condition_value ) && is_array( $value ) ) {
						$result = count( array_intersect( $condition_value, $value ) ) === 0;
					} else {
						$result = ! in_array( $condition_value, $value );
					}
					break;
				case 'contains':
					if ( is_array( $value ) ) {
						$result = ! empty( array_filter( $value, function ( $element ) use ( $condition_value ) {
							return strpos( $element, $condition_value ) !== false;
						} ) );
						break;
					}

					$result = strpos( $value, $condition_value ) !== false;
					break;
				case 'not_contains':
					if ( is_array( $value ) ) {
						$result = ! empty( array_filter( $value, function ( $element ) use ( $condition_value ) {
							return strpos( $element, $condition_value ) === false;
						} ) );
						break;
					}

					$result = strpos( $value, $condition_value ) === false;
					break;
				case 'starts_with':
					$value  = isset( $value[0] ) && ! empty( $value[0] ) ? $value[0] : '';
					$length = strlen( $condition_value );
					$result = substr( $value, 0, $length ) === $condition_value;
					break;
				case 'ends_with':
					$value  = is_array( $value ) ? end( $value ) : $value;
					$length = strlen( $condition_value );
					if ( 0 === $length || ( $length > strlen( $value ) ) ) {
						$result = false;
						break;
					}
					$result = substr( $value, - $length ) === $condition_value;
					break;
				case 'is_blank':
					$result = empty( $value[0] );
					break;
				case 'is_not_blank':
					$result = ! empty( $value[0] );
					break;
				default:
					$result = false;
					break;
			}

			return $this->return_is_match( $result, $rule_data );
		}

		/** v2 Methods: END */

		public function get_possible_rule_operators() {
			$operators = array(
				'is'           => __( 'is', 'wp-marketing-automations' ),
				'is_not'       => __( 'is not', 'wp-marketing-automations' ),
				'contains'     => __( 'contains', 'wp-marketing-automations' ),
				'not_contains' => __( 'does not contain', 'wp-marketing-automations' ),
				'starts_with'  => __( 'starts with', 'wp-marketing-automations' ),
				'ends_with'    => __( 'ends with', 'wp-marketing-automations' ),
			);

			return $operators;
		}

		public function get_condition_input_type() {
			return 'Text';
		}

		public function conditions_view() {
			$values     = $this->get_possible_rule_values();
			$value_args = array(
				'input'       => 'select',
				'name'        => 'bwfan_rule[<%= groupId %>][<%= ruleId %>][condition][key]',
				'choices'     => $values,
				'class'       => 'bwfan_field_one_half bwfan_cf7_form_fields',
				'placeholder' => __( 'Field', 'wp-marketing-automations' ),
			);

			bwfan_Input_Builder::create_input_field( $value_args );

			$condition_input_type = $this->get_condition_input_type();
			$values               = $this->get_possible_rule_values();
			$value_args           = array(
				'input'       => $condition_input_type,
				'name'        => 'bwfan_rule[<%= groupId %>][<%= ruleId %>][condition][value]',
				'choices'     => $values,
				'class'       => 'bwfan_field_one_half',
				'placeholder' => __( 'Value', 'wp-marketing-automations' ),
			);

			bwfan_Input_Builder::create_input_field( $value_args );
		}

		public function is_match( $rule_data ) {
			$entry = BWFAN_Core()->rules->getRulesData( 'fields' );
			$type  = $rule_data['operator'];
			$value = isset( $entry[ $rule_data['condition']['key'] ] ) ? $entry[ $rule_data['condition']['key'] ] : '';

			if ( ! is_array( $value ) ) {
				$value = array( $value );
			}

			$value           = array_map( 'strtolower', $value );
			$condition_value = strtolower( trim( $rule_data['condition']['value'] ) );

			/** checking if condition value contains comma */
			if ( strpos( $condition_value, ',' ) !== false ) {
				$condition_value = explode( ',', $condition_value );
				$condition_value = array_map( 'trim', $condition_value );
			}

			switch ( $type ) {
				case 'is':
					if ( is_array( $condition_value ) && is_array( $value ) ) {
						$result = count( array_intersect( $condition_value, $value ) ) > 0;
					} else {
						$result = in_array( $condition_value, $value );
					}
					break;
				case 'is_not':
					if ( is_array( $condition_value ) && is_array( $value ) ) {
						$result = count( array_intersect( $condition_value, $value ) ) === 0;
					} else {
						$result = ! in_array( $condition_value, $value );
					}
					break;
				case 'contains':
					$value  = isset( $value[0] ) && ! empty( $value[0] ) ? $value[0] : '';
					$result = strpos( $value, $condition_value ) !== false;
					break;
				case 'not_contains':
					$value  = isset( $value[0] ) && ! empty( $value[0] ) ? $value[0] : '';
					$result = strpos( $value, $condition_value ) === false;
					break;
				case 'starts_with':
					$value  = isset( $value[0] ) && ! empty( $value[0] ) ? $value[0] : '';
					$length = strlen( $condition_value );
					$result = substr( $value, 0, $length ) === $condition_value;
					break;
				case 'ends_with':
					$value  = isset( $value[0] ) && ! empty( $value[0] ) ? $value[0] : '';
					$length = strlen( $condition_value );

					if ( 0 === $length ) {
						$result = true;
					} else {
						$result = substr( $value, - $length ) === $condition_value;
					}
					break;
				default:
					$result = false;
					break;
			}

			return $this->return_is_match( $result, $rule_data );
		}

		public function ui_view() {
			?>
            Form Field
            '<%= bwfan_events_js_data["cf7_form_submit"]["selected_form_fields"][condition['key']] %>' <% var ops = JSON.parse('<?php echo wp_json_encode( $this->get_possible_rule_operators() ); ?>'); %>
            <%= ops[operator] %> '<%= condition['value'] %>'
			<?php
		}

	}
}