woocommerce_payment_token_updated action-hookWC 1.0

Usage

add_action( 'woocommerce_payment_token_updated', 'wp_kama_woocommerce_payment_token_updated_action' );

/**
 * Function for `woocommerce_payment_token_updated` action-hook.
 * 
 * @param  $token_id 
 *
 * @return void
 */
function wp_kama_woocommerce_payment_token_updated_action( $token_id ){

	// action...
}
$token_id
-

Where the hook is called

WC_Payment_Token_Data_Store::update()
woocommerce_payment_token_updated
woocommerce/includes/data-stores/class-wc-payment-token-data-store.php 124
do_action( 'woocommerce_payment_token_updated', $token->get_id() );

Where the hook is used in WooCommerce

Usage not found.