woocommerce_api_create_order_refund_data filter-hook . WC 1.0
Usage
add_filter( 'woocommerce_api_create_order_refund_data', 'filter_function_name_6263', 10, 3 ); function filter_function_name_6263( $data, $order_id, $that ){ // filter... return $data; }
- $data
- -
- $order_id
- -
- $that
- -
Where the hook is called
woocommerce_api_create_order_refund_data
woocommerce/includes/legacy/api/v2/class-wc-api-orders.php 1595
$data = apply_filters( 'woocommerce_api_create_order_refund_data', $data, $order_id, $this );
woocommerce/includes/legacy/api/v3/class-wc-api-orders.php 1640
$data = apply_filters( 'woocommerce_api_create_order_refund_data', $data, $order_id, $this );