ActionScheduler_DBStore::get_claim_filter()publicWC 1.0

Get the claim filter value.

Method of the class: ActionScheduler_DBStore{}

No Hooks.

Return

Mixed.

Usage

$ActionScheduler_DBStore = new ActionScheduler_DBStore();
$ActionScheduler_DBStore->get_claim_filter( $filter_name );
$filter_name(string) (required)
Claim filter name.

ActionScheduler_DBStore::get_claim_filter() code WC 9.3.3

public function get_claim_filter( $filter_name ) {
	if ( isset( $this->claim_filters[ $filter_name ] ) ) {
		return $this->claim_filters[ $filter_name ];
	}

	return '';
}