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