mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
💡 Add and update hook comments
This commit is contained in:
parent
ab2163a45c
commit
dc4b54b9b9
1 changed files with 19 additions and 7 deletions
|
@ -48,6 +48,11 @@ class LocalAlternativePaymentMethodsModule implements ServiceModule, ExtendingMo
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The "woocommerce_payment_gateways" filter is responsible for ADDING
|
||||||
|
* custom payment gateways to WooCommerce. Here, we add all the local
|
||||||
|
* APM gateways to the filtered list, so they become available later on.
|
||||||
|
*/
|
||||||
add_filter(
|
add_filter(
|
||||||
'woocommerce_payment_gateways',
|
'woocommerce_payment_gateways',
|
||||||
/**
|
/**
|
||||||
|
@ -56,12 +61,12 @@ class LocalAlternativePaymentMethodsModule implements ServiceModule, ExtendingMo
|
||||||
* @psalm-suppress MissingClosureParamType
|
* @psalm-suppress MissingClosureParamType
|
||||||
*/
|
*/
|
||||||
function ( $methods ) use ( $c ) {
|
function ( $methods ) use ( $c ) {
|
||||||
$is_connected = $c->get( 'settings.flag.is-connected' );
|
if ( ! is_array( $methods ) ) {
|
||||||
if ( ! $is_connected ) {
|
|
||||||
return $methods;
|
return $methods;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( ! is_array( $methods ) ) {
|
$is_connected = $c->get( 'settings.flag.is-connected' );
|
||||||
|
if ( ! $is_connected ) {
|
||||||
return $methods;
|
return $methods;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,13 +79,14 @@ class LocalAlternativePaymentMethodsModule implements ServiceModule, ExtendingMo
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filters the "available gateways" list by REMOVING gateways that
|
||||||
|
* are not available for the current customer.
|
||||||
|
*/
|
||||||
add_filter(
|
add_filter(
|
||||||
'woocommerce_available_payment_gateways',
|
'woocommerce_available_payment_gateways',
|
||||||
/**
|
/**
|
||||||
* Filters the "available gateways" list by removing gateways that
|
* Param types removed to avoid third-party issues.
|
||||||
* are not available for the current customer.
|
|
||||||
*
|
|
||||||
* This callback only _removes_ items from the payment gateway list.
|
|
||||||
*
|
*
|
||||||
* @psalm-suppress MissingClosureParamType
|
* @psalm-suppress MissingClosureParamType
|
||||||
*/
|
*/
|
||||||
|
@ -108,6 +114,12 @@ class LocalAlternativePaymentMethodsModule implements ServiceModule, ExtendingMo
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adds all local APM gateways in the "payment_method_type" block registry
|
||||||
|
* to make the payment methods available in the Block Checkout.
|
||||||
|
*
|
||||||
|
* @see IntegrationRegistry::initialize
|
||||||
|
*/
|
||||||
add_action(
|
add_action(
|
||||||
'woocommerce_blocks_payment_method_type_registration',
|
'woocommerce_blocks_payment_method_type_registration',
|
||||||
function( PaymentMethodRegistry $payment_method_registry ) use ( $c ): void {
|
function( PaymentMethodRegistry $payment_method_registry ) use ( $c ): void {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue