ActionScheduler_HybridStore::unclaim_action()publicWC 1.0

Release claims on an action in the table data store.

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

Хуков нет.

Возвращает

null. Ничего.

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

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

Код ActionScheduler_HybridStore::unclaim_action() WC 7.7.2

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