Automattic\WooCommerce\Blueprint

StepProcessor{}interfaceWC 1.0

Interface StepProcessor

Хуков нет.

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

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

Методы

  1. public check_step_capabilities( $schema )
  2. public get_step_class()
  3. public process( $schema )

Код StepProcessor{} WC 10.0.2

interface StepProcessor {
	/**
	 * Process the schema.
	 *
	 * @param object $schema The schema to process.
	 *
	 * @return StepProcessorResult
	 */
	public function process( $schema ): StepProcessorResult;

	/**
	 * Get the step class.
	 *
	 * @return string
	 */
	public function get_step_class(): string;
	/**
	 * Check if the current user has the required capabilities for this step.
	 *
	 * @param object $schema The schema to process.
	 *
	 * @return bool True if the user has the required capabilities. False otherwise.
	 */
	public function check_step_capabilities( $schema ): bool;
}