Automattic\WooCommerce\StoreApi\Schemas\V1

ProductSchema::filter_valid_attribute()protectedWC 1.0

Returns true if the given attribute is valid.

Method of the class: ProductSchema{}

No Hooks.

Return

true|false.

Usage

// protected - for code of main (parent) or child class
$result = $this->filter_valid_attribute( $attribute );
$attribute(mixed) (required)
Object or variable to check.

ProductSchema::filter_valid_attribute() code WC 8.7.0

protected function filter_valid_attribute( $attribute ) {
	return is_a( $attribute, '\WC_Product_Attribute' );
}