ActionScheduler_HybridStore::get_claim_idpublicWC 1.0

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

Method of the class: ActionScheduler_HybridStore{}

No Hooks.

Returns

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 10.3.6

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