Action_Scheduler\Migration

Scheduler::get_schedule_interval()privateWC 1.0

Get migration batch schedule interval.

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

Хуки из метода

Возвращает

int. Seconds between migration runs.

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

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

Код Scheduler::get_schedule_interval() WC 8.7.0

private function get_schedule_interval() {
	return (int) apply_filters( 'action_scheduler/migration_interval', 0 );
}