ActionScheduler_wpPostStore::get_date()publicWC 1.0

Get date for claim id.

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

Хуков нет.

Возвращает

ActionScheduler_DateTime. The date the action is schedule to run, or the date that it ran.

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

$ActionScheduler_wpPostStore = new ActionScheduler_wpPostStore();
$ActionScheduler_wpPostStore->get_date( $action_id );
$action_id(int) (обязательный)
Action ID.

Код ActionScheduler_wpPostStore::get_date() WC 8.7.0

public function get_date( $action_id ) {
	$next = $this->get_date_gmt( $action_id );
	return ActionScheduler_TimezoneHelper::set_local_timezone( $next );
}