WP_Background_Process::schedule_cron_healthcheck()publicWC 1.0

Schedule cron healthcheck

Method of the class: WP_Background_Process{}

Hooks from the method

Return

Mixed.

Usage

$WP_Background_Process = new WP_Background_Process();
$WP_Background_Process->schedule_cron_healthcheck( $schedules );
$schedules(mixed) (required)
Schedules.

WP_Background_Process::schedule_cron_healthcheck() code WC 8.6.1

public function schedule_cron_healthcheck( $schedules ) {
	$interval = apply_filters( $this->identifier . '_cron_interval', 5 );

	if ( property_exists( $this, 'cron_interval' ) ) {
		$interval = apply_filters( $this->identifier . '_cron_interval', $this->cron_interval );
	}

	// Adds every 5 minutes to the existing schedules.
	$schedules[ $this->identifier . '_cron_interval' ] = array(
		'interval' => MINUTE_IN_SECONDS * $interval,
		'display'  => sprintf( __( 'Every %d minutes', 'woocommerce' ), $interval ),
	);

	return $schedules;
}