403Webshell
Server IP : 162.0.217.223  /  Your IP : 216.73.216.150
Web Server : LiteSpeed
System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : mypckeys ( 1539)
PHP Version : 8.1.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/mypckeys/public_html/wp-content/plugins/woo-stripe-payment/packages/cartflows/src/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/mypckeys/public_html/wp-content/plugins/woo-stripe-payment/packages/cartflows/src//Main.php
<?php


namespace PaymentPlugins\CartFlows\Stripe;


class Main {

	public static function init() {
		if ( self::cartflows_enabled() ) {
			new PaymentsApi();
			new RoutesApi();
			add_action( 'wc_stripe_after_get_checkout_fields', function () {
				try {
					// @3.3.27 - Added to ensure Cartflows doesn't duplicate the billing email field. The
					// checkout fields need to be reset to ensure the woocommerce_checkout_fields filter runs
					$reflection_class = new \ReflectionClass( '\WC_Checkout' );
					$prop             = $reflection_class->getProperty( 'fields' );
					$prop->setAccessible( true );
					$prop->setValue( WC()->checkout(), null );
				} catch ( \ReflectionException $e ) {
				}
			} );
		}
	}

	public static function cartflows_enabled() {
		return defined( 'CARTFLOWS_FILE' );
	}

	public static function cartflows_pro_enabled() {
		return defined( 'CARTFLOWS_PRO_FILE' );
	}

}

Youez - 2016 - github.com/yon3zu
LinuXploit