woocommerce_rest_prepare_report_performance_indicators
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_performance_indicators', 'wp_kama_woocommerce_rest_prepare_report_performance_indicators_filter', 10, 3 );
/**
* Function for `woocommerce_rest_prepare_report_performance_indicators` 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_performance_indicators_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
woocommerce/src/Admin/API/Reports/PerformanceIndicators/Controller.php 494
return apply_filters( 'woocommerce_rest_prepare_report_performance_indicators', $response, $stat_data, $request );