ActionScheduler_HybridStore::unclaim_action()publicWC 1.0

Release claims on an action in the table data store.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

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

Код ActionScheduler_HybridStore::unclaim_action() WC 8.7.0

public function unclaim_action( $action_id ) {
	$this->primary_store->unclaim_action( $action_id );
}