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