first commit

This commit is contained in:
2026-03-05 13:07:40 +01:00
commit 64ba0721ee
25709 changed files with 4691006 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
/**
* The Third Party integration with WooCommerce PayPal Checkout Gateway
* @ref https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
*
* @since 3.0
*/
namespace LiteSpeed\Thirdparty;
defined( 'WPINC' ) || exit;
class Woo_Paypal
{
public static function detect()
{
if ( ! defined( 'WC_GATEWAY_PPEC_VERSION' ) ) return;
do_action( 'litespeed_nonce', '_wc_ppec_update_shipping_costs_nonce private' );
do_action( 'litespeed_nonce', '_wc_ppec_start_checkout_nonce private' );
do_action( 'litespeed_nonce', '_wc_ppec_generate_cart_nonce private' );
}
}