File: //proc/self/cwd/wp-content/plugins/automatewoo/includes/Rules/Customer_Account_Created_Date.php
<?php
namespace AutomateWoo\Rules;
use AutomateWoo\DataTypes\DataTypes;
defined( 'ABSPATH' ) || exit;
/**
* Customer account created date rule.
*
* @Class Customer_Account_Created_Date
*/
class Customer_Account_Created_Date extends Abstract_Date {
/**
* What data we're using to validate.
*
* @var string
*/
public $data_item = DataTypes::CUSTOMER;
/**
* Customer_Account_Created_Date constructor.
*/
public function __construct() {
$this->has_is_past_comparision = true;
parent::__construct();
}
/**
* Init.
*/
public function init() {
$this->title = __( 'Customer - Account Created Date', 'automatewoo' );
}
/**
* Validates rule.
*
* @param \AutomateWoo\Customer $customer The customer.
* @param string $compare What variables we're using to compare.
* @param array|null $value The values we have to compare. Null is only allowed when $compare is is_not_set.
*
* @return bool
*/
public function validate( $customer, $compare, $value = null ) {
return $this->validate_date( $compare, $value, $customer->get_date_registered() );
}
}