Automattic\WooCommerce\StoreApi\Routes\V1

ProductAttributes::get_route_response()protectedWC 1.0

Get a collection of attributes.

Method of the class: ProductAttributes{}

No Hooks.

Return

\WP_REST_Response.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_route_response( $request );
$request(\WP_REST_Request) (required)
Request object.

ProductAttributes::get_route_response() code WC 8.7.0

protected function get_route_response( \WP_REST_Request $request ) {
	$ids    = wc_get_attribute_taxonomy_ids();
	$return = [];

	foreach ( $ids as $id ) {
		$object   = wc_get_attribute( $id );
		$data     = $this->prepare_item_for_response( $object, $request );
		$return[] = $this->prepare_response_for_collection( $data );
	}

	return rest_ensure_response( $return );
}