Automattic\WooCommerce\Admin\RemoteInboxNotifications
RuleProcessorInterface{} WC 1.0
Rule processor interface
Хуков нет.
Возвращает
Null. Ничего.
Использование
$RuleProcessorInterface = new RuleProcessorInterface(); // use class methods
Методы
Код RuleProcessorInterface{} RuleProcessorInterface{} WC 5.0.0
interface RuleProcessorInterface {
/**
* Processes a rule, returning the boolean result of the processing.
*
* @param object $rule The rule to process.
* @param object $stored_state Stored state.
*
* @return bool The result of the processing.
*/
public function process( $rule, $stored_state );
/**
* Validates the rule.
*
* @param object $rule The rule to validate.
*
* @return bool Pass/fail.
*/
public function validate( $rule );
}