wc_reports_tabs
Usage
add_action( 'wc_reports_tabs', 'wp_kama_wc_reports_tabs_action' );
/**
* Function for `wc_reports_tabs` action-hook.
*
* @return void
*/
function wp_kama_wc_reports_tabs_action(){
// action...
}Where the hook is called
wc_reports_tabs
woocommerce/includes/admin/views/html-admin-page-reports.php 34
do_action( 'wc_reports_tabs' );