ActionScheduler_ActionFactory::recurring()publicWC 1.0

Create the first instance of an action recurring on a given interval.

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

Хуков нет.

Возвращает

int. The ID of the stored action.

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

$ActionScheduler_ActionFactory = new ActionScheduler_ActionFactory();
$ActionScheduler_ActionFactory->recurring( $hook, $args, $first, $interval, $group );
$hook(строка) (обязательный)
The hook to trigger when this action runs.
$args(массив)
Args to pass when the hook is triggered.
По умолчанию: array()
$first(int)
Unix timestamp for the first run.
По умолчанию: null
$interval(int)
Seconds between runs.
По умолчанию: null
$group(строка)
A group to put the action in.
По умолчанию: ''

Код ActionScheduler_ActionFactory::recurring() WC 8.7.0

public function recurring( $hook, $args = array(), $first = null, $interval = null, $group = '' ) {
	return $this->recurring_unique( $hook, $args, $first, $interval, $group, false );
}