Automattic\WooCommerce\Admin\API

AnalyticsImports::is_scheduled_import_enabledprivateWC 1.0

Check if scheduled import is enabled.

Method of the class: AnalyticsImports{}

No Hooks.

Returns

true|false.

Usage

// private - for code of main (parent) class only
$result = $this->is_scheduled_import_enabled();

AnalyticsImports::is_scheduled_import_enabled() code WC 10.5.0

private function is_scheduled_import_enabled() {
	return 'yes' === get_option( OrdersScheduler::SCHEDULED_IMPORT_OPTION, OrdersScheduler::SCHEDULED_IMPORT_OPTION_DEFAULT_VALUE );
}