woocommerce_api_edit_order_refund action-hook . WC 1.0
Usage
add_action( 'woocommerce_api_edit_order_refund', 'action_function_name_2344', 10, 3 ); function action_function_name_2344( $ID, $order_id, $that ){ // action... }
- $ID
- -
- $order_id
- -
- $that
- -
Where the hook is called
woocommerce_api_edit_order_refund
woocommerce/includes/legacy/api/v2/class-wc-api-orders.php 1705
do_action( 'woocommerce_api_edit_order_refund', $refund->ID, $order_id, $this );
woocommerce/includes/legacy/api/v3/class-wc-api-orders.php 1750
do_action( 'woocommerce_api_edit_order_refund', $refund->ID, $order_id, $this );