Automattic\WooCommerce\Blocks\Domain\Services

DraftOrders::maybe_create_cronjobs()protectedWC 1.0

Maybe create cron events.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->maybe_create_cronjobs();

Код DraftOrders::maybe_create_cronjobs() WC 8.7.0

protected function maybe_create_cronjobs() {
	if ( function_exists( 'as_next_scheduled_action' ) && false === as_next_scheduled_action( 'woocommerce_cleanup_draft_orders' ) ) {
		as_schedule_recurring_action( strtotime( 'midnight tonight' ), DAY_IN_SECONDS, 'woocommerce_cleanup_draft_orders' );
	}
}