woocommerce_helper_output action-hookWC 1.0

Usage

add_action( 'woocommerce_helper_output', 'wp_kama_woocommerce_helper_output_action' );

/**
 * Function for `woocommerce_helper_output` action-hook.
 * 
 * @return void
 */
function wp_kama_woocommerce_helper_output_action(){

	// action...
}

Where the hook is called

WC_Admin_Addons::output()
woocommerce_helper_output
woocommerce/includes/admin/class-wc-admin-addons.php 1038
do_action( 'woocommerce_helper_output' );

Where the hook is used in WooCommerce

woocommerce/includes/admin/helper/class-wc-helper.php 46
add_action( 'woocommerce_helper_output', array( __CLASS__, 'render_helper_output' ) );