woocommerce_rest_prepare_report_variations filter-hookWC 1.0

Filter a report returned from the API.

Allows modification of the report data right before it is returned.

Usage

add_filter( 'woocommerce_rest_prepare_report_variations', 'wp_kama_woocommerce_rest_prepare_report_variations_filter', 10, 3 );

/**
 * Function for `woocommerce_rest_prepare_report_variations` filter-hook.
 * 
 * @param WP_REST_Response $response The response object.
 * @param object           $report   The original report object.
 * @param WP_REST_Request  $request  Request used to generate the response.
 *
 * @return WP_REST_Response
 */
function wp_kama_woocommerce_rest_prepare_report_variations_filter( $response, $report, $request ){

	// filter...
	return $response;
}
$response(WP_REST_Response)
The response object.
$report(object)
The original report object.
$request(WP_REST_Request)
Request used to generate the response.

Where the hook is called

Controller::prepare_item_for_response()
woocommerce/src/Admin/API/Reports/Variations/Controller.php 121
return apply_filters( 'woocommerce_rest_prepare_report_variations', $response, $report, $request );

Where the hook is used in WooCommerce

Usage not found.