woocommerce_payment_methods_list_item
Использование
add_filter( 'woocommerce_payment_methods_list_item', 'wp_kama_woocommerce_payment_methods_list_item_filter', 10, 2 );
/**
* Function for `woocommerce_payment_methods_list_item` filter-hook.
*
* @param $key ]
* @param $payment_token
*
* @return
*/
function wp_kama_woocommerce_payment_methods_list_item_filter( $key ], $payment_token ){
// filter...
return $key ];
}
- $key ]
- -
- $payment_token
- -
Где вызывается хук
woocommerce_payment_methods_list_item
woocommerce/includes/wc-account-functions.php 409
$list[ $type ][ $key ] = apply_filters( 'woocommerce_payment_methods_list_item', $list[ $type ][ $key ], $payment_token );
Где используется хук в WooCommerce
woocommerce/includes/wc-account-functions.php 437
add_filter( 'woocommerce_payment_methods_list_item', 'wc_get_account_saved_payment_methods_list_item_cc', 10, 2 );
woocommerce/includes/wc-account-functions.php 458
add_filter( 'woocommerce_payment_methods_list_item', 'wc_get_account_saved_payment_methods_list_item_echeck', 10, 2 );
woocommerce/src/StoreApi/Utilities/PaymentUtils.php 58
add_filter( 'woocommerce_payment_methods_list_item', [ self::class, 'include_token_id_with_payment_methods' ], 10, 2 );
woocommerce/src/StoreApi/Utilities/PaymentUtils.php 82
remove_filter( 'woocommerce_payment_methods_list_item', [ self::class, 'include_token_id_with_payment_methods' ], 10, 2 );