webhook_row_actions filter-hookWC 1.0

Usage

add_filter( 'webhook_row_actions', 'wp_kama_webhook_row_actions_filter', 10, 2 );

/**
 * Function for `webhook_row_actions` filter-hook.
 * 
 * @param  $actions 
 * @param  $webhook 
 *
 * @return 
 */
function wp_kama_webhook_row_actions_filter( $actions, $webhook ){

	// filter...
	return $actions;
}
$actions
-
$webhook
-

Where the hook is called

WC_Admin_Webhooks_Table_List::column_title()
webhook_row_actions
woocommerce/includes/admin/class-wc-admin-webhooks-table-list.php 99
$actions     = apply_filters( 'webhook_row_actions', $actions, $webhook );

Where the hook is used in WooCommerce

Usage not found.