ActionScheduler_HybridStore::get_claim_id()publicWC 1.0

Retrieve the claim ID for an action from the table data store.

Method of the class: ActionScheduler_HybridStore{}

No Hooks.

Return

null. Nothing (null).

Usage

$ActionScheduler_HybridStore = new ActionScheduler_HybridStore();
$ActionScheduler_HybridStore->get_claim_id( $action_id );
$action_id(int) (required)
Action ID.

ActionScheduler_HybridStore::get_claim_id() code WC 8.6.1

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