Automattic\WooCommerce\Internal\Admin\Settings

SettingsUIRequestContext::has_schema_failedpublicWC 1.0

Whether schema generation failed.

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

Хуков нет.

Возвращает

true|false.

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

$SettingsUIRequestContext = new SettingsUIRequestContext();
$SettingsUIRequestContext->has_schema_failed(): bool;

Код SettingsUIRequestContext::has_schema_failed() WC 10.9.1

public function has_schema_failed(): bool {
	if ( ! $this->schema_resolved ) {
		$this->resolve_schema();
	}

	return $this->schema_failed;
}