31 lines
544 B
PHP
31 lines
544 B
PHP
<?php
|
|
// phpcs:ignoreFile
|
|
|
|
namespace AutomateWoo\Rules;
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/**
|
|
* @class Customer_City
|
|
*/
|
|
class Customer_City extends Abstract_String {
|
|
|
|
public $data_item = 'customer';
|
|
|
|
|
|
function init() {
|
|
$this->title = __( 'Customer - City', 'automatewoo' );
|
|
}
|
|
|
|
|
|
/**
|
|
* @param $customer \AutomateWoo\Customer
|
|
* @param $compare
|
|
* @param $value
|
|
* @return bool
|
|
*/
|
|
function validate( $customer, $compare, $value ) {
|
|
return $this->validate_string( $this->data_layer()->get_customer_city(), $compare, $value );
|
|
}
|
|
|
|
}
|