ActionScheduler_wpPostStore::get_date()
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() ActionScheduler wpPostStore::get date WC 9.8.1
public function get_date( $action_id ) { $next = $this->get_date_gmt( $action_id ); return ActionScheduler_TimezoneHelper::set_local_timezone( $next ); }