ActionScheduler_HybridStore::get_date
Get the schedule date an existing action whether migrated or not.
Метод класса: ActionScheduler_HybridStore{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$ActionScheduler_HybridStore = new ActionScheduler_HybridStore(); $ActionScheduler_HybridStore->get_date( $action_id );
- $action_id(int) (обязательный)
- Action ID.
Код ActionScheduler_HybridStore::get_date() ActionScheduler HybridStore::get date WC 10.9.4
public function get_date( $action_id ) {
$store = $this->get_store_from_action_id( $action_id );
if ( $store ) {
return $store->get_date( $action_id );
} else {
return null;
}
}