Automattic\WooCommerce\Admin\RemoteInboxNotifications

RuleProcessorInterface{}WC 1.0

Rule processor interface

Хуков нет.

Использование

$RuleProcessorInterface = new RuleProcessorInterface();
// use class methods

Методы

  1. public process( $rule, $stored_state )
  2. public validate( $rule )

Код RuleProcessorInterface{} WC 8.7.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 );
}