Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks

Payments::is_in_progresspublicWC 1.0

Check if the task is in progress.

Метод класса: Payments{}

Хуков нет.

Возвращает

true|false.

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

$Payments = new Payments();
$Payments->is_in_progress();

Код Payments::is_in_progress() WC 10.9.4

public function is_in_progress() {
	// If the task is already complete, it's not in progress.
	if ( $this->is_complete() ) {
		return false;
	}

	return ( $this->has_woopayments_live_account_in_progress() || $this->has_woopayments_test_account() );
}