woocommerce_api_edit_order action-hookWC 1.0

Usage

add_action( 'woocommerce_api_edit_order', 'wp_kama_woocommerce_api_edit_order_action', 10, 3 );

/**
 * Function for `woocommerce_api_edit_order` action-hook.
 * 
 * @param  $order_id 
 * @param  $data     
 * @param  $that     
 *
 * @return void
 */
function wp_kama_woocommerce_api_edit_order_action( $order_id, $data, $that ){

	// action...
}
$order_id
-
$data
-
$that
-

Where the hook is called

WC_API_Orders::edit_order()
woocommerce_api_edit_order
woocommerce/includes/legacy/api/v3/class-wc-api-orders.php 665
do_action( 'woocommerce_api_edit_order', $order->get_id(), $data, $this );
woocommerce/includes/legacy/api/v2/class-wc-api-orders.php 628
do_action( 'woocommerce_api_edit_order', $order->get_id(), $data, $this );

Where the hook is used in WooCommerce

Usage not found.