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/src/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

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

namespace PaymentPlugins\Stripe;

class PluginValidation {

	public static function is_valid( $callback ) {
		try {
			self::assert_php_version();

			$callback();
		} catch ( \Exception $e ) {
			self::add_admin_notice( $e->getMessage() );
		}
	}

	private static function assert_php_version() {
		if ( version_compare( PHP_VERSION, '5.6', '<' ) ) {
			throw new \Exception( sprintf( __( 'Your PHP version is %s but Stripe requires version 5.6+.', 'woo-stripe-payment' ), PHP_VERSION ) );
		}
	}

	private static function add_admin_notice( $msg ) {
		add_action( 'admin_notices', function () use ( $msg ) {
			?>
            <div class="notice notice-error woocommerce-message">
                <h4>
					<?php echo $msg ?>
                </h4>
            </div>
			<?php
		} );
	}

}

Youez - 2016 - github.com/yon3zu
LinuXploit