mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
Add feature-flag for the working capital.
Is turned off by default
This commit is contained in:
parent
d7a45138ff
commit
05e24ea0a9
1 changed files with 15 additions and 0 deletions
|
@ -966,6 +966,21 @@ class WCGatewayModule implements ServiceModule, ExtendingModule, ExecutableModul
|
|||
add_action(
|
||||
'admin_init',
|
||||
static function () use ( $container ): void {
|
||||
$settings = $container->get( 'wcgateway.settings' );
|
||||
assert( $settings instanceof Settings );
|
||||
|
||||
$is_working_capital_feature_flag_enabled = apply_filters(
|
||||
// phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores -- feature flags use this convention
|
||||
'woocommerce.feature-flags.woocommerce_paypal_payments.working_capital_enabled',
|
||||
getenv( 'PCP_WORKING_CAPITAL_ENABLED' ) === '1'
|
||||
);
|
||||
|
||||
$is_working_capital_eligible = $container->get( 'api.shop.country' ) === 'US' && $settings->has( 'stay_updated' ) && $settings->get( 'stay_updated' );
|
||||
|
||||
if ( ! $is_working_capital_feature_flag_enabled || ! $is_working_capital_eligible ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$logger = $container->get( 'woocommerce.logger.woocommerce' );
|
||||
assert( $logger instanceof LoggerInterface );
|
||||
try {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue